PowerShell 技能连载 - 查找 MSI 产品代码(第 2 部分)

在 Windows 10 及以上版本,查找 MSI 软件包及其产品代码不再需要 WMI 查询。相反,您可以使用 Get-Package 来替代:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Get-Package |
Select-Object -Property Name, @{
Name='ProductCode'
Expression={
$code = $_.Metadata["ProductCode"]
if ([string]::IsNullOrWhiteSpace($code) -eq $false)
{
$code
}
else
{
'N/A'
}
}
} |
Format-List

PowerShell 技能连载 - 查找 MSI 产品代码(第 2 部分)

http://blog.vichamp.com/2022/10/19/finding-msi-product-codes-part-2/

作者

吴波

发布于

2022-10-19

更新于

2024-03-29

许可协议

评论