$cs.MSI_GetPropertiesFromMSI
Syntax
$cs.MSI_GetPropertiesFromMSI(string msifile, Array property)
Â
Parameters
msifile
MSI file to get properties from
property
Array of properties to retrieve
Â
Example
$MsiProperties=$cs.MSI_GetPropertiesFromMSI('c:\windows\temp\pdfsam.msi',@("ProductVersion","UpgradeCode","ProductCode","ProductName","Manufacturer"))
if ($MsiProperties)
{
[string]$global:Msiproductversion = $MsiProperties["ProductVersion"]
[string]$global:Msiupgradecode = $MsiProperties["UpgradeCode"]
[string]$global:Msiproductcode = $MsiProperties["ProductCode"]
[string]$global:MsiProductName = $MsiProperties["ProductName"]
[string]$global:MsiManufacturer = $MsiProperties["Manufacturer"]
}
returns Hashtable containing properties
Â