WSUS - Pending Updates query with Title on Windows
hello experts,
have wrote powershell script list out pending update counts on remote system.
https://prashant1987.wordpress.com/2012/11/21/powershell-script-to-query-wsus-for-downloadedfalied-patches-on-list-of-servers/
, wondering possible title of update pending on remote system using powershell?
if yes please let me know , have query.
thanks,
-prashant girennavar.
have wrote powershell script list out pending update counts on remote system.
https://prashant1987.wordp
, wondering possible title of update pending on remote system using powershell?
if yes please let me know , have query.
thanks,
-prashant girennavar.
mcsa|mcitp sa|microsoft exchange 2003 blog - http://prashant1987.wordpress.com disclaimer: posting provided as-is no warranties/guarantees , confers no rights.
$updatesession = new-object -comobject microsoft.update.session $updatesearcher = $updatesession.createupdatesearcher() $updates = @($updatesearcher.search("ishidden=0 , isinstalled=0").updates) $updates | select-object title hi,
this work local system , the microsoft update servers, should work remote systems invoke-command, not yet tested a wsus system.
best regards
brima
Windows Server > Windows PowerShell
Comments
Post a Comment