Cegone
Cegone

Reputation: 489

Need Uninstall command for MSI Package in bundle bootstrapper

I have chain package and install commands in bundle bootstrapper, this bundle bootstrapper has .net sqlserver, and custom software (msi package) also. The install process called from install button click (windows application), The install process is working fine, and i need to write the uninstall command for the custom software (msi package) in bundle bootstrapper. please help, thank you.

Upvotes: 0

Views: 1753

Answers (2)

Tom Blodget
Tom Blodget

Reputation: 20812

To uninstall a bundle, find the bootstrapper's entry under "Programs and Features" (ARP) and uninstall it from there. (If you want to know the command, search for the displayed text in the registry and look at the associated UninstallString value).

Uninstalling the bundle will uninstall the non-permanent packages that aren't still used by other bundles.


MsiPackages don't have install or uninstall command attributes because the bootstrapper engine ("burn") knows how to invoke Windows Installer with appropriate arguments.

Upvotes: 1

Stein Åsmul
Stein Åsmul

Reputation: 42236

Please see similar questions answered in older threads:

These are direct links to specific answers in the threads, please read the whole thread for each one - just so I don't lead you in the wrong direction.

My recommendation: get hold of the Wise Command Line builder tool described in the second thread to get the command line easily generated.

Upvotes: 0

Related Questions