Forum Discussion
Jakesnyder245
Jun 19, 2021Copper Contributor
remotely trigger a windows update scan
Is there a way to remotely trigger a windows update for business scan using PowerShell on machines that haven’t had users logon to them in awhile? We’ve recently switched to Intune WUfB and the big...
ychakarov
Jun 21, 2021Brass Contributor
Helle Jakesnyder245,
You can reach your goal only with these three commands:
Install-Module PSWindowsUpdate -Force
Get-WindowsUpdate
Install-WindowsUpdate -NotCategory "Drivers" -AcceptAll -IgnoreReboot
You can even be more granular.
Check this article: http://woshub.com/pswindowsupdate-module/#h2_4