/build/static/layout/Breadcrumb_cap_w.png

Installshield response file - One dialogue box still pops up during silent install

Hi,

I have created an iss file using the setup.exe /r command to create an Installshield response file but there is still one dialogue that pops up during the silent installation. I am trying to create the answer file for the following application and the dialogue where I have to choose the operation mode (New or Traditional) still pops up.

http://penpowerinc.us/download/PPjr_7.2h.exe

Is anyone who thinks he/her is an application packaging guru can help with this issue?

Thanks


0 Comments   [ + ] Show comments

Answers (2)

Posted by: chk 9 years ago
White Belt
0
is there any solution for this case?
Posted by: Rvlieburg 11 years ago
Third Degree Blue Belt
0

Use the following vbscript to launch the setup with the responsefile setup.iss in the installationfolder:

Set wshShell = CreateObject("WScript.shell")
wshshell.exec "setup.exe /S"
wscript.sleep 5000
i = 0

Do While i = 0
   strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery _
    ("Select * from Win32_Process Where Name = 'setup.exe'")
  strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery _
    ("Select * from Win32_Process Where Name = 'setup.exe'")
if colProcesses.Count = 0 Then wscript.quit
WshShell.AppActivate  ( "InstallShield Wizard")
if WshShell.AppActivate  ( "InstallShield Wizard") = TRUE Then wshshell.sendkeys "%{N}"
Wscript.Sleep 5000
Loop

 

 

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ