PowerShell: Find if computer is waiting for reboot after Windows update


When you roll out updates to multiple computers, how do you find out ‘how many computers aren’t rebooted yet after the updates”. Well, here is one way with PowerShell.

(New-Object
-ComObject Microsoft.Update.SystemInfo).RebootRequired

This is returns TRUE or FALSE.

Did this help you?

Leave a comment