PSWindowsUpdate
PSWindowsUpdate copied to clipboard
Can I, for example, download optional updates of drivers found in my system in such a way that the system will never install and update them automatically? Or hide it so it doesn't show me any more available optional driver updates?
@mgajda83
Can I, for example, download optional updates of drivers found in my system in such a way that the system will never install and update them automatically?
Or hide it so it doesn't show me any more available optional driver updates?
I also would like to know how I can install all microsoft updates, except for drivers?
Get-WindowsUpdate -MicrosoftUpdate
Install-WindowsUpdate -MicrosoftUpdate -AcceptAll -AutoReboot -Verbose
Get-WindowsUpdate -MicrosoftUpdate -NotCategory "Drivers"
Install-WindowsUpdate -MicrosoftUpdate -NotCategory "Drivers" -AcceptAll -AutoReboot -Verbose