Hello Im somewhat new to Automox,
ive been tasksed with creating a policy to remove Microsoft KB5009543 security update and Microsoft KB5008876 - Windows update. these are causing major issues at my organization breaking our VPN.
i found this script, but not sure on how to create the worklet ( ive never done this before)
Get-WindowsPackage -Online | ?{$_.ReleaseType -like "*Update*"} | `
ForEach-Object {Get-WindowsPackage -Online -PackageName $_.PackageName} | `
Where-Object {$_.Description -like "*KB5009543*"} | Remove-WindowsPackage -Online -NoRestart
the tickets keep rolling in for remote employees!
please help!