MSI_IsPackageInstalledByGuid
Description
Test if specified package has been installed based on product code
Syntax
MSI_IsPackageInstalled(sProductCode, bMustExist) As Boolean
Parameters
sProductCode (String)
ProductCode of the MSI-package
bMustBeInstalled (Boolean)
Function will return false if bMustBeInstalled is true and package is not installed
Return value
Result will be stored in gbValue
Example
VBScript
If bStatus Then bStatus = MSI_IsPackageInstalledByGuid("{38c5a3b5-8501-4d2e-8713-fc4116f5f519}", False) If bStatus Then bStatus = Job_WriteLog("Custom", "gbValue: " & gbValue, bStatus, True)