October 31, 200619 yr Dear all,i'm trying to install the IPass client silentI've tryed with the reponse file .iss but at the licence screen the installer is stopping.[InstallShield Silent]Version=v6.00.000File=Response File[File Transfer]OverwrittenReadOnly=NoToAll[{AB6FFA58-F491-11D3-8951-000000029751}-DlgOrder]Dlg0={AB6FFA58-F491-11D3-8951-000000029751}-SdWelcome-0Count=2Dlg1={AB6FFA58-F491-11D3-8951-000000029751}-SdAskDestPath-0[{AB6FFA58-F491-11D3-8951-000000029751}-SdWelcome-0]Result=1[{AB6FFA58-F491-11D3-8951-000000029751}-SdAskDestPath-0]szDir=C:\Program Files\iPass\iPassConnectResult=1[Application]Name=iPassConnectVersion=3.35.00Company=iPassLang=0009So i've been looking for another way how I could proceed and found AutoIT that could do what I'm looking for.The bad new is really wired.The script is working as long as I have autoIT 3 installed on the computer. As soon as I'm installing IPass on a Fresh installation, AutoIT script (compiled) is stoping at the licence and is waiting Below the AutoIT script; Script Start - Add your code below hererun ("setup.exe")winwait("iPassConnect - Setup")ControlClick("iPassConnect - Setup", "&Weiter", 1,"Button1")sleep(2000)ControlClick("iPassConnect - Setup","",1000,"Button2")sleep(1000)ControlClick("iPassConnect - Setup","&Ja",6,"Button4")sleep(2000)ControlClick("iPassConnect - Setup","&Weiter",1,"Button1")sleep(100000)ControlClick("iPassConnect - Setup","",501,"Button1")sleep(1000)ControlClick("iPassConnect - Setup","Fertigstellen",1,"Button4")Does anyone know how to help ?thank you for your feedback.RegardsDavid Edited October 31, 200619 yr by hdavid
November 2, 200619 yr I seem to be using a slightly older version of iPass then you, but here's my setup.iss file. It works OK for us:[installShield Silent]Version=v6.00.000File=Response File[File Transfer]OverwrittenReadOnly=NoToAll[{AB6FFA58-F491-11D3-8951-000000024939}-DlgOrder]Dlg0={AB6FFA58-F491-11D3-8951-000000024939}-AskYesNo-0Count=4Dlg1={AB6FFA58-F491-11D3-8951-000000024939}-SdWelcome-1Dlg2={AB6FFA58-F491-11D3-8951-000000024939}-SdAskDestPath-0Dlg3={AB6FFA58-F491-11D3-8951-000000024939}-AskYesNo-0[{AB6FFA58-F491-11D3-8951-000000024939}-AskYesNo-0]Result=1[{AB6FFA58-F491-11D3-8951-000000024939}-SdWelcome-0]Result=1[{AB6FFA58-F491-11D3-8951-000000024939}-SdAskDestPath-0]szDir=C:\Program Files\iPass\iPassConnectResult=1[{AB6FFA58-F491-11D3-8951-000000024939}-AskYesNo-0]Result=1[Application]Name=iPassConnectVersion=3.30.00Company=iPassLang=0009[{AB6FFA58-F491-11D3-8951-000000024939}-AskYesNo-1]Result=0
November 2, 200619 yr Author Thank you for your reply.I've been so much looking to get a suitable solution, I finaly found out how I could do with AutoIT.maybe it will help someone else ;-); Script Start - Add your code below hererun ("setup.exe")winwait("iPassConnect - Setup")sleep(2000)Send("!w")sleep(2000)ControlCommand("iPassConnect - Setup", "", "Button2", "Check", "")sleep(1000)Send("!J")sleep(1000)Send("!W")sleep(100000)ControlCommand("iPassConnect - Setup", "", "Button1", "UnCheck", "")sleep(200)ControlClick("iPassConnect - Setup", "Fertigstellen", "Button4")
Create an account or sign in to comment