MSI_SearchForPackageInfoByName
Description
Returns an array of dictionaries that contain information about installed msi packages that match the search filter
Â
Syntax
MSI_SearchForPackageInfoByName(sSearchFor) As Boolean
Â
Parameters
sSearchFor (String)
Text that will be searched for. If part of sSearchFor is found then information for that package is collected
Â
Return value
Result will be stored in gaValue. Each item in the array will be of type Dictonary. Property collected is used as the name of the key.
Collected properties are: ProductCode, ProductName, InstallLocation and VersionString
Â
Example
VBScript
If bStatus Then bStatus = MSI_SearchForPackageInfoByName("CapaInstaller") If bStatus Then For Each dProduct In gaValue For Each sKey in dProduct.Keys bStatus = Job_WriteLog("Custom", "Key: '" & sKey & "' value: '" & dProduct.Item(sKey) & "'", bStatus, True) Next Next End If
Â
Related functions
Â