1.如果是InstallScript MSI Project
To create an installation shortcut via the IDE:
Go to the Shortcuts view.
Create a shortcut with the following properties to launch IDriver.exe:
Shortcut Property Value
Arguments /M{Product Code}
Advertised No
Target [CommonFilesFolder]InstallShield/Driver/7/Intel 32/IDriver.exe
新建一个快捷方式,指向[CommonFilesFolder]InstallShield/Driver/7/Intel 32/IDriver.exe ,这里如果你是用8.0,就把7改成8,再加个/M + 你的Product Code就是卸载程序了
In the above example, {Product Code} would be replaced with your product code. It might look similar to the following: Arguments: /M{7C071035-F334-11D5-818A-00C04F288311}
To find the Product Code for a particular project, follow the steps below:
Open project in InstallShield Developer.
Click General Information in the View List.
Select Product Properties.
Note the value of the Product Code field.
2.如果你是Basic MSI Project
To create an uninstallation shortcut:
Go to the Shortcuts view.
Right-click on Program Files folder and select New Shortcut.
Type a name for the shortcut. You can rename the shortcut by selecting it, pressing F2, and typing a new name.
In the Arguments field, type /x [ProductCode]. Separate the two arguments with a space.
Msiexec.exe is the command-line engine for the Windows Installer service. The /x argument instructs the Windows Installer service to uninstall the product referenced by the product code.
Select No from the Advertised drop-down menu.
In the Target field, select [SystemFolder] from the list. Append msiexec.exe to this location.
In the Component property, select the component with which you want this shortcut associated. To ensure that the shortcut is always installed, associate it with the component containing your application's main executable
这些在帮助里都有,不清楚的话再仔细看看吧