Guidance on enabling Extended Security Updates (ESU) for Windows 10 using Intune, especially for systems that cannot be upgraded to Windows 11
Updated Jul 09, 2025
Version 4.0Another solution for the PowerShell execution policy setting if your environment prefers to have scripts blocked or set to something other than bypass or remote signed is to set your install command for the Win32 app like this:
powershell.exe -ExecutionPolicy Bypass -File .\ScriptName.ps1
That'll change the execution policy for just that PowerShell instance and save having to adjust configuration profiles.
Excellent point. I have updated the post for this.