Search code examples
command-lineperforceinstallshield

How to find options available when installing an application using Installshield


I am trying to install Perforce Helix using Chef. Install file is an .exe file with 4 options available to install. I want to install 3 of them excluding one. Is there a way to identify which option to provide to it from command line. Currently I am able to install package in silent mode and with default settings using

installer_type :custom
  options %W[
    /s 
    /v/qn
  ].join(' ')

Any help is appreciated.


Solution

  • Thanks guys, I got the solution. I first installed the application and then removed P4ADMIN from it:

    `installer_type :custom 
    options %W[
        /s 
        /v"ADDLOCAL=ALL REMOVE=P4ADMIN /qn" 
    ].join(' ')`