andyeaust
Posts: 20
Joined: Mon Mar 05, 2018 10:14 am

Multiple Instance - Uninstall Instance

Hello,
we installing our Product with Multiple Instances silent with the Parameters "Setup.exe /exenoui /newinst #1 /instname FEPA-INT /i // MSIPARAMETERS /qn
This is working.

How we can remove an instance silent.
We test "Setup.exe /exenoui /selinst #1 /x /qn" but this not uninstalling the instance. We can't find the right uninstallparameter for Special instances.

Pleas help us.
Catalin
Posts: 6592
Joined: Wed Jun 13, 2018 7:49 am

Re: Multiple Instance - Uninstall Instance

Hello Andreas,

In order to uninstall an instance from control panel, you will need to know the instance ProductCode property. This can be done by opening your project (.aip) and going to "Multiple Instances" page.

Now, in order to uninstall your instance, you can use the following command line:

Code: Select all

setup.exe /selinst {ProductCode} /x //
You do not need to attach the /qn and the /exenoui to the above command, because the uninstall process will by default happen with basic UI.

Hope this helps.

Kind regards,
Catalin
Catalin Gheorghe - Advanced Installer Team
Follow us: Twitter - Facebook - YouTube

Return to “Building Installers”