[SOLVED] Inno Setup Uninstaller
Published: August 30, 2018 - 4:52 PM
Good morning,
I've noticed that the automatic uninstallation of installers created with Inno Setup isn't silent (the uninstallation doesn't require user interaction, but the user sees the window). I need to create a custom `uninstall()` function to make the uninstallation silent
I don't have to do that with other uninstallers. Am I doing something wrong?
I'm on version 1.3.13, haven't had time to migrate to 1.5 yet.
THANKS!
I've noticed that the automatic uninstallation of installers created with Inno Setup isn't silent (the uninstallation doesn't require user interaction, but the user sees the window). I need to create a custom `uninstall()` function to make the uninstallation silent
Code: Select all
def uninstall():
uninstall = installed_softwares(uninstallkey='pgAdmin 4v3_is1')
if uninstall != []:
# Force la désinstallation en mode silencieux.
cmd_uninstall = uninstall[0]['uninstall_string'] + ' /SILENT /VERYSILENT'
run(cmd_uninstall)I'm on version 1.3.13, haven't had time to migrate to 1.5 yet.
THANKS!