Page 1 of 1

[SOLVED] Modifying the uninstallation key of a WAPT package

Published: July 5, 2023 - 5:12 PM
by erems
Hello,

I'm using the package creation wizard to create a package from an MSI file, but the detected uninstallation key is incorrect.

The field is grayed out. How can I change the key?

Thank you for your help.
Regards.

Re: Changing the uninstallation key for a WAPT package

Published: July 7, 2023 - 7:49 AM
by htouvet
Good morning,
Click on "Edit manually" then in the generated Python code, in the line install_msi_id_needed(....)
Add a "key" parameter with the correct key

Code: Select all

def install():
    # Declaring local variables

    # Installing the software
    print("Installing: ZimbraConnectorOLK_9.0.0.1930_x64.msi")
    install_msi_if_needed('ZimbraConnectorOLK_9.0.0.1930_x64.msi', key='xwxwxwxcwxcwxcxwc')

[SOLVED] Modifying the uninstallation key of a WAPT package

Published: July 10, 2023 - 10:31
by erems
Hello,
it works.
Thank you.