Setting a profile picture on a guest account in an Entra ID tenant is not possible on the My account page due to restricted access to the directory as guest, there is however a way using PowerShell: requirements: How to get The Id’s Open up https://myaccount.microsoft.com to acces you profile page, top right click on …
Tag: PowerShell
May 05
Keeping your Sysinternals Tools up 2 date
Sysinternals Tools are the must have toolset for any IT-Pro keeping them up2date got a lot easier on Windows 10 and 11 since they were added to the Windows Store: https://www.microsoft.com/store/productId/9P7KNL5RWT25 The entire suite always up to date & at your fingertips: Great for local use, if you want to take the files to another …
Jun 24
Windows Terminal (Preview)
It’s now available in the Store for you to download & test, grab your copy here: https://www.microsoft.com/store/productId/9N0DX20HK701 The new Terminal bring Tabs, multiple terminals in the same window It’s in preview, safe to test as it installs without replacing your current setup so give it & try đ Windows Terminal is open source & available …
May 14
Blocking the Store App on Windows 10 Pro
As blocking access to the store app isn’t available through GPO in 10 Pro, This is an option to keep your users from installing store apps. There’s a firewall rule allowing outbound access for the store app, this PowerShell command will switch it to block the app Get-NetFirewallRule -DisplayGroup ‘Store’ | Set-NetFirewallRule -Action Block The app will …