PSWindowsUpdate icon indicating copy to clipboard operation
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?

Open RemixPL1994 opened this issue 1 year ago • 2 comments

@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?

350720076-19edd8a0-e337-4ab7-94e3-aa71e0087dd6

Or hide it so it doesn't show me any more available optional driver updates?

RemixPL1994 avatar Sep 08 '24 09:09 RemixPL1994

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

Jarrod-RDS avatar Jun 18 '25 23:06 Jarrod-RDS

Get-WindowsUpdate -MicrosoftUpdate -NotCategory "Drivers"
Install-WindowsUpdate -MicrosoftUpdate -NotCategory "Drivers" -AcceptAll -AutoReboot -Verbose

Jarrod-RDS avatar Jun 19 '25 19:06 Jarrod-RDS