I'm new to WAPT packages and I'm already facing a problem:
I want to create a package for an MSI using the install_msi_if_needed function
But the uninstallkey isn't the right one...
Code: Select all
print (get_msi_properties(bin_name)["ProductCode"])But in the registry, the key in uninstall is: {2B27213F-E49A-4442-B469-8D03ADF57F25}
As seen on the forum, I'm trying to 'force' the key:
Code: Select all
install_msi_if_needed(
bin_name,
timeout=900,
uninstallkeylist= ["{2B27213F-E49A-4442-B469-8D03ADF57F25}",]
)
Code: Select all
Waiting for key: {8FF61D0C-7B9E-46F1-A2F2-14B2A65ACFB1} to appear in Windows registry
