Pages

Friday, January 24, 2025

Useful options for triggering intune sync

 

$Shell = New-Object -ComObject Shell.Application
$Shell.open("intunemanagementextension://syncapp")

also 

Issue a restart for the Microsoft Intune Management Extension windows service.

 https://oliverkieselbach.com/2020/11/03/triggering-intune-management-extension-ime-sync/

Windows OS system update removal

 

use this command to locate the suspect package name

DISM /online /Get-Packages 

identify the target package from the listed output then use this command to remove it

DISM /online /Remove-Package /PackageName:<PackageName(Identity)>