top of page


(183) Microsoft Intune - Deploying Winget UWP Apps
I have this customer where strangly enough Company Portal and Notepad fail to install properly on their Windows 11 devices, even from the logs I was seeing these: [Win32App][WinGetApp][WinGetAppDetectionExecutor] Starting detection of app with id: 0a74d8d1-42e1-414a-ade0-5cfec8545c94 and context: SystemContext. [Win32App][WinGetApp][WinGetOperation] Starting Detection for app with id: 0a74d8d1-42e1-414a-ade0-5cfec8545c94 and package id: 9WZDNCRFJ3PZ. [Win32App][ReportingManag
1 day ago3 min read
Â


(182) Microsoft Intune - Set Hostname to periodically go up to a new number
As I prepping this yesterday for a customer, which does work https://soeintunedevice.wixsite.com/home/post/181-microsoft-intune-prompt-for-hostname-change if you want to have a read. Install.ps 1 is as follows, to explain what it does is the "Prefix" is generally what you see in Since there is no way to do this via Intune, the only way would be via PowerShell. It will start off with applying WIN11-3D-001 as the hostname $Prefix = 'WIN11-3D-' $regPath = "HKLM:\SOFTWARE\MrBSOE
Oct 242 min read
Â


(181) Microsoft Intune - Prompt for Hostname Change
A customer who wanted a way for end users to get prompted to change hostname for their devices, and I remember I did something like this a few years ago (simple but easy to do). You need to prep for the following: RenameComputer.ps 1 Install.ps 1 Detect.ps 1 ServiceUI.exe (which you can grab easily from any MDT installer) RenameComputer.ps 1 - is a form that will appear to prompt the end user to change their hostname. Add-Type -AssemblyName System.Windows.Forms # Create the
Oct 242 min read
Â


(180) Microsoft Intune - Company Portal Shortcut
A few months ago before I went on annual leave, a customer wanted to deploy Company Portal as a shortctut on the desktop for end users. The easiest way I could figure out looks like this: Install.ps 1 will do the following: [CmdletBinding()] Param ( [Parameter(Mandatory=$false)] [String]$ShortcutTargetPath, [Parameter(Mandatory=$false)] [String]$ShortcutDisplayName, [Parameter(Mandatory=$false)] [Switch]$PinToStart=$false, [Parameter(Mandatory=$false)] [String]$IconFile=$n
Oct 161 min read
Â


(179) Microsoft Intune - Fingerprint recognition - Windows Hello for Business
A customer only wanted to setup 'Fingerprint recongition' to be applied to their HP devices only, just required prerequisites must be...
Sep 51 min read
Â


(178) Microsoft Intune - User Profile Backup & Restore and Windows Easy Transfer
From 3 years ago, I did a blog around https://soeintunedevice.wixsite.com/home/post/34-backup-restore-win32-app using batch files from a...
Sep 33 min read
Â


(177) Microsoft Intune - Remove previous versions ASP.NetCore
Had this issue with a customer who reported having issues with ASP.Net Core 8.0.11 showing up in Tenable, where the current installed is...
Aug 291 min read
Â


(176) Microsoft Intune - Set Start Menu to not startup on logon
I have this customer who I have been helping over a period of time with setting up their 'Shared PCs' with some customisations, one of...
Aug 272 min read
Â


(175) Microsoft Intune - Windows Autopilot "You're about to be signed out"
We recently onboarded this customer, which currently are on a pilot phase. I discovered this prompt message just after kicking off the...
Aug 141 min read
Â


(174) Microsoft Intune - Setting up Security Settings in Microsoft Edge
Have a customer who is on track with Essential 8 ML1, they are wanting to secure the following settings to prevent their end users from...
Aug 121 min read
Â


(173) Microsoft Intune - Turning off "Allow the computer to turn off this device to save power" against your USBs
Had a customer who difficult getting these ports to never sleep, originally I used this policy which worked for applications but not for...
Jul 31 min read
Â


(172) Microsoft Intune - Set Default Language to en-AU during Autopilot
This issue has been daunting on for quite some time now, I was thinking this post I mentioned would work: https://soeintunedevice.wixsite...
Jul 33 min read
Â


(171) Microsoft Intune - Using AppLocker to Block Roblox from running
A customer reached out to us about a few weeks ago, as their students had alternative ways to run Roblox on the shared devices and were...
Jul 11 min read
Â


(170) Microsoft Intune - Remediation Task to set task bar to the left
Late early last year in 2024 I posted about setting the task bar to the left using a PowerShell script wrapped around with a win32 app:...
Jul 11 min read
Â


(169) Microsoft 365 Apps Prompting to Sign In (AAD Broker Plugin Issue)
It all started last week late Tuesday afternoon for me, first thing I noticed was that my 'Windows' key wasn't working, then eventually...
Jun 302 min read
Â


(168) Microsoft Intune - How to deploy Microsoft 365 Copilot on Windows devices?
Overview Microsoft released Microsoft 365 Copilot in replacement of Copilot that came with Windows 11 which has been announced The...
Jun 172 min read
Â


(167) Microsoft Intune - Shared PC - Enable Switch User
As part of a recent customer's request that I have been working for Shared PCs, customer was wanting to enable "Switch User" to be made...
Jun 111 min read
Â


(166) Microsoft Intune - Enable "Browse as Guest" on Edge
Had a customer who wanted to enable "Guest Mode" in Edge within their environment, thinking it was straight forward I created a policy...
Jun 71 min read
Â


(165) Microsoft Intune - Allowing AuthSchemes and SSL Warnings for Edge and Google Chrome
Had a recent customer that I have been helping during our onboarding stage, there have specific local domain sites that are hosted which...
May 172 min read
Â


(164) Microsoft Intune - Update with enabling RDP with Remediation Scripts or PowerShell
As mentioned in my previous post: https://soeintunedevice.wixsite.com/home/post/162-microsoft-intune-enabling-rdp-for-entra-joined-device...
May 172 min read
Â


(163) Microsoft Intune - Whitelisting allowed Extensions on Google Chrome and Microsoft Edge
Recently one of my customers wanted to whitelist only allowed extensions, while all other extensions not whitelisted will get blocked by...
May 32 min read
Â


(162) Microsoft Intune - Enabling RDP for Entra Joined Devices
Recently one of my customers wanted to enable RDP on Entra Joined devices, by default nothing is set. This is the whole process with...
Apr 262 min read
Â


(161) Microsoft Intune - Uninstall Pesky Applications
Recently I have this customer who has numerous versions of Adobe Acrobat Reader, so I have been using this "FastReferencePackage" script...
Apr 81 min read
Â


(160) Microsoft Intune - Windows Update Restart Notification
Since Windows 11 22H2, 23H2 and 24H2, I have noticed this setting has dropped the ball. After further investigation, I noticed that...
Mar 282 min read
Â
bottom of page