Changes

Jump to: navigation, search

InstallShield

1,784 bytes added, 09:37, 24 October 2012
moved non-MSI installer instructions from discussion to page
In many instances, InstallShield packaged programs are distributed as self-extracting zip files. These can be pre-extracted using any unzip program to provide access to the standard InstallShield setup.exe. The silent install method(s) available for InstallShield packaged software depend on the version and type of installer the software authors decided to create. See the [[#Links|Links]] section for more details.
 
== Non-MSI wrapped InstallShield installers ==
 
'''For Non-MSI wrapped installshield installers you must create INSTALL and UNINSTALL response files'''
 
These are the steps for successful installation and unintallation:
# Use Uniextract to extract the Disk1 folder containing the installshield setup.exe with assocaited cab files.
# Record the setup.iss file using setup.exe -r NOTE this file is created in C:\Windows so move it from their to your install source folder.
# Make two copies e.g. setup32.ini and setup64.ini for XP/Win764. Edit each setup??.iss to change the value of szDir=
# Record another setup.iss this time for uninstallation. This is done by finding the UID folder usually located in <pre>C:\Program Files (x86)\InstallShield Installation Information</pre> and running <pre>setup.exe -r</pre> (again). The new setup.iss file is again located in c:\windows
# Edit the setup.ini and add switches to the value <pre>cmdline=/s /v/qn</pre>
# Now reference the following for sequencing your app installation:
* installation:
** For XP or Win7 32bit <pre>%SOFTWARE%\MYAPP\setup.exe /s /f1%SOFTWARE%\MYAPP\setup32.iss /f2c:\netinst\MYAPP.log</pre>
** For Windows 7 64bit <pre>%SOFTWARE%\MYAPP\setup.exe /s /f1%SOFTWARE%\MYAPP\setup64.iss /f2c:\netinst\MYAPP.log</pre>
* uninstallation:
** For XP or Win7 32bit <pre>RunDll32 C:\PROGRA~1\COMMON~1\INSTAL~1\PROFES~1\RunTime\11\00\Intel32\Ctor.dll,LaunchSetup "C:\Program Files\InstallShield Installation Information\{MYAPPUID}\setup.exe" /s /f1c:\localfolder\uninst.iss</pre>
** For Windows 7 64bit <pre>RunDll32 C:\PROGRA~2\COMMON~1\INSTAL~1\PROFES~1\RunTime\11\00\Intel32\Ctor.dll,LaunchSetup "C:\Program Files (x86)\InstallShield Installation Information\{MYAPPUID}\setup.exe" /s /f1c:\localfolder\uninst.iss</pre>
 
== Links ==
11
edits

Navigation menu