web-dev-qa-db-ja.com

MicrosoftWindowsで保留中の更新を一覧表示するショートカット

「更新履歴の表示」へのショートカットを作成することはできますか?

または、保留中の更新を一覧表示するスクリプト(powershell、vbs、cmdなど)がありますか?

5
TN.

このPowershellスクリプトを試してみてください。

$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 " "
}

興味があるかもしれない他のオブジェクトメンバーは、以下を使用して表示できます。

$pending.Updates | member | more