MSI_GetGuidsByProductName
Description
Gets all package guids that match product name
Â
Syntax
MSI_GetGuidsByProductName(sProductName) As Boolean
Â
Parameters
sProductName (String)
Product name
Â
Return value
Result will be stored in gaValue
Â
Example
VBScript
If bStatus Then bStatus = MSI_GetGuidsByProductName("CapaInstaller") If bStatus And IsArray(gaValue) Then For index = LBound(gaValue) To UBound(gaValue) bStatus = Job_WriteLog("Custom", "Index #" & index & ": " & gaValue(index), bStatus, False) Next End If
Â
Related functions
Â