Windowsがカウントを返すのと同じ方法で利用可能なWindowsUpdateのカウントを返すPowershellスクリプトを書くのに疲れています。私が抱えている問題は、ウィンドウの更新が返すカウントと一致するカウントを取得できないことです。
たとえば、私のスクリプトは次のように返すことがあります:
クリティカルカウント:0
重要カウント:1
オプションカウント:30
しかし、Windows Updateは次のように表示します:
クリティカルカウント:1
重要カウント:1
オプションカウント:
29Windowsが表示に使用する基準を知っている人はいますかWindows Updateのカウント?
これが私のコードのサンプルです:
# ----- Get All Assigned updates --------
$UpdateSession = New-Object -ComObject "Microsoft.Update.Session"
$UpdateSearcher = $UpdateSession.CreateUpdateSearcher()
$SearchResult = $UpdateSearcher.Search('IsInstalled=0')
# ----- Matrix Results for type of updates that are needed --------
$critical = $SearchResult.updates | where { $_.MsrcSeverity -eq "Critical" }
$important = $SearchResult.updates | where { $_.MsrcSeverity -eq "Important" }
$optional = $SearchResult.updates | where { ($_.MsrcSeverity -ne "Critical") -and ($_.MsrcSeverity -ne "Important") }