Blog – Page 2 of 3 – Engineerer
490
blog,paged,wp-custom-logo,paged-2,bridge-core-3.1.2,qode-page-transition-enabled,ajax_fade,page_not_loaded,,footer_responsive_adv,hide_top_bar_on_mobile_header,qode-content-sidebar-responsive,qode-theme-ver-30.1,qode-theme-bridge,qode_header_in_grid,elementor-default,elementor-kit-641

Blog

This guy from Bern, Switzerland wanted to copy an itsy-tiny large file (2GB) to an Azure VM. RDP Connected - copy/paste - go. Nope. It should work, but it didn't for me. Even with RDP drive redirection (configurable in the RDP file), this dude couldn't...

Azure Storage Solutions can manifest themselves as File Shares, Blob Containers, Queues, or more sophisticated solutions like Azure Data Lake Storage. Let's dive into it....

In the flat I live in is a DigitalStrom Server installed. This thing lets us control light and blinds in lazy mode. Next to the door is a tablet mounted to the wall that shows additional info like current power usage, temperature, etc. An old...

To get all possible enum values you can follow this blog post from PowerShellMagazine.To make things even easier, you can call GetEnumValues() directly on the returned object from GetType().Get Enum Values in Action ...

Connect-PnPOnline -Url https://[tenant]-admin.sharepoint.com# get the hub site id $hubSite = Get-PnPTenantSite "https://[tenant].sharepoint.com/sites/intranet" $hubSiteId = $hubSite.HubSiteId# get all sites associated to the hub $sites = Get-PnPTenantSite -Detailed $sites | select url | % { $s = Get-PnPTenantSite $_.url if($s.hubsiteid -eq $hubSiteId){ write-host $s.url ...

I was debugging happely a SPFx solution with Visual Studio Code, when suddenly a wild "I don't want to hit breakpoints anymore" appeared. I was hitting breakpoints before, but not anymore. What happend?Setting up Debugging in Visual Studio CodeI followed this guide to configure Visual...