Aavoxx Posted February 6, 2014 Posted February 6, 2014 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?
Bert Posted February 7, 2014 Posted February 7, 2014 command line switches? The Vollatran project My blog: http://www.vollysinterestingshit.com/
Aavoxx Posted February 7, 2014 Author Posted February 7, 2014 On 2/7/2014 at 1:49 AM, MBALZESHARI said: 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.
Moderators JLogan3o13 Posted February 7, 2014 Moderators Posted February 7, 2014 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!
Aavoxx Posted February 7, 2014 Author Posted February 7, 2014 On 2/7/2014 at 2:30 PM, JLogan3o13 said: 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}")
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now