PowerShell 技能连载 - 查找已安装和缺失的更新(第二部分)

当 PowerShell 通过 Microsoft.Update.Session 对象向 Windows 请求更新时,一些信息似乎无法读取。以下代码获取已安装的更新信息。而 KBArticleIDs 只是显示为 ComObject

1
2
3
4
5
6
7
8
9
#requires -Version 2.0

$Session = New-Object -ComObject Microsoft.Update.Session
$Searcher = $Session.CreateUpdateSearcher()
$updates = $Searcher.Search("IsInstalled=1").Updates

$updates |
Select-Object -Property Title, LastDeploy*, Desc*, MaxDownload*, KBArticleIDs |
Out-GridView

要解决这个问题,请使用计算属性。它能将无法读取的 COM 对象通过管道传给 Out-String 命令。通过这种方法,PowerShell 内部的内部逻辑使用它的魔力来解析 COM 对象内容:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#requires -Version 2.0

$Session = New-Object -ComObject Microsoft.Update.Session
$Searcher = $Session.CreateUpdateSearcher()
$updates = $Searcher.Search("IsInstalled=1").Updates

$KBArticleIDs = @{
Name = 'KBArticleIDs'
Expression = { ($_.KBArticleIDs | Out-String).Trim() }
}

$updates |
Select-Object -Property Title, LastDeploy*, Desc*, MaxDownload*, $KBArticleIDs |
Out-GridView

PowerShell 技能连载 - 查找已安装和缺失的更新(第二部分)

http://blog.vichamp.com/2017/08/03/finding-installed-updates-and-searching-for-missing-part-2/

作者

吴波

发布于

2017-08-03

更新于

2022-07-06

许可协议

评论