Jump to content

Silent Install Script for InstallShield 3


Aavoxx
 Share

Recommended Posts

I have an installer packaged with InstallShield 3 that has custom dialog boxes that I've been able to overcome with the answer file. I can write an AutoIt script to send the necessary keyboard commands to make this work, including entering the serial number, but this is designed for SCCM deployment, and I really would like this to be silent to the user. Searches of the Googles have come up empty.

Does anyone have any suggestions? 

Link to comment
Share on other sites

command line switches?

 

If only. InstallShield 3 does a terrible job with custom dialog boxes. If I don't believe the AutoIt generated executable will support silent command line switches due to the nature of the script. 

Link to comment
Share on other sites

  • Moderators

It isn't InstallShield's fault if the repackager chose not to include command line switches. What is the product? Without seeing the install it is difficult to say what can or cannot be done.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

It isn't InstallShield's fault if the repackager chose not to include command line switches. What is the product? Without seeing the install it is difficult to say what can or cannot be done.

 

It's an old version of sbclient from IMB. Here is the only way I've been able to get the script to work.

 
#include <Constants.au3>
 
; Run sbclient setup
Run("C:5.3installsetup.exe")
Sleep(30000)
;
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Sleep(30000)
Send("Serial")
Sleep(500)
Send("{TAB}")
Send("Serial")
Sleep(500)
Send("{ENTER}")
Sleep(10000)
Send("{ENTER}")
Sleep(500)
Send("{TAB}")
Sleep(500)
Send("{ENTER}")
Sleep(500)
Send("{ENTER}")
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...