Shorcut to list pending updates in Microsoft Windows

9,560

Give this Powershell script a try:

$update = new-object -com Microsoft.update.Session
$searcher = $update.CreateUpdateSearcher()
$pending = $searcher.Search("IsInstalled=0")
foreach($entry in $pending.Updates)
{
    Write-host "Title: " $entry.Title
    Write-host "Downloaded? " $entry.IsDownloaded
    Write-host "Description: " $entry.Description
    foreach($category in $entry.Categories)
    {
        Write-host "Category: " $category.Name
    }
    Write-host " "
}

Other object members you might be interested in can be view using:

$pending.Updates | member | more
Share:
9,560

Related videos on Youtube

TN.
Author by

TN.

Updated on September 17, 2022

Comments

  • TN.
    TN. almost 2 years

    Is it possible to create a shortcut to "View update history"?

    Or, do you have a script (powershell, vbs, cmd, ...) to list pending updates?

  • MacMartin
    MacMartin over 6 years
    as of yet (2018) this is working nicely in Window10. It's better then the GUI Update Tool (shows more Information). There is also a script in the MS gallery gallery.technet.microsoft.com/scriptcenter/… but I do not see, where it is better then this example here