Check What Patch Updates are NOT Installed with PowerShell

preview_player
Показать описание
With this handy PowerShell one liner we can what Windows Updates have NOT been installed. This is very useful during pentests as it will be undetected by AV and help with further exploitation.

Code:
(New-Object -c Microsoft.Update.Session).CreateUpdateSearcher().Search("IsInstalled=0").Updates|Select Title
Рекомендации по теме