PowerShell:从MSI文件中获取MSI产品代码而不安装?

时间:2015-08-10 12:04:13

标签: powershell windows-installer

是否可以从MSI文件中检索MSI产品代码而无需使用PowerShell进行安装?我想将MSI文件的产品代码与安装在机器上的MSI代码进行比较,以确定文件是否已安装过去。

2 个答案:

答案 0 :(得分:4)

这是一个基于this article读取产品代码的脚本:

$path = "pathto.msi"

$comObjWI = New-Object -ComObject WindowsInstaller.Installer
$MSIDatabase = $comObjWI .GetType().InvokeMember("OpenDatabase","InvokeMethod",$Null,$comObjWI,@($Path,0))
$Query = "SELECT Value FROM Property WHERE Property = 'ProductCode'"
$View = $MSIDatabase.GetType().InvokeMember("OpenView","InvokeMethod",$null,$MSIDatabase,($Query))
$View.GetType().InvokeMember("Execute", "InvokeMethod", $null, $View, $null)
$Record = $View.GetType().InvokeMember("Fetch","InvokeMethod",$null,$View,$null)
$Value = $Record.GetType().InvokeMember("StringData","GetProperty",$null,$Record,1)

$Value现在包含产品代码。

答案 1 :(得分:2)

从 MSI 包中获取 ProductCode 的一种更短的方法:

Get-AppLockerFileInformation -Path "C:\PathTo\my.msi" | select -ExpandProperty Publisher | Select BinaryName