Get-OSDUpdate
Get-OSDUpdate returns a list of Microsoft Windows and Office Updates
Get-OSDUpdate
Since Get-OSDUpdate returns an array of hundreds of WSUS Updates, don't ever run this by itself in PowerShell. You are just going to get a seeming endless list of Updates
Get-OSDUpdate -GridView
Using GridView works as well. The selection is used with PassThru, so you can select one or more updates
And return all the properties of the selected updates
Scripting
But you probably want to script things out
Last updated