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

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

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

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
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.