kali Posted August 15, 2011 Posted August 15, 2011 I applied setup command setup.exe –r to record. So I got setup.iss file in C:\Windows directory. Then I copy the setup.iss file into my setup directory and applied silent command as setup.exe /s. But my setup doesn’t response. My log file tells ResultCode=-3 (Required data not found in the Setup.iss file.). Then I tried record command setup.exe –R, setup.exe /R setup.exe /r. It makes same setup.iss file and I know my setup.iss is not wrong. But what is the problem I don’t know. My setup.issfile:[installShield Silent]Version=v4.90.000File=Response File[DlgOrder]Dlg0=SdWelcome-0Count=7Dlg1=SdLicense-0Dlg2=SdRegisterUserEx-0Dlg3=SdAskDestPath-0Dlg4=SetupType-0Dlg5=SdSelectFolder-0Dlg6=SdFinishReboot-0[sdWelcome-0]Result=1[sdLicense-0]Result=1[sdRegisterUserEx-0]szName=Kamrul szCompany=Knowledge home szSerial=2222222222222222222222222222222222222222Result=1[sdAskDestPath-0]szDir=C:\Program Files\Ananda Computers\Bijoy2003Result=1[setupType-0]Result=301szDir=[sdSelectFolder-0]szFolder=Bijoy2003Result=1[Application]Name=Bijoy2003Version=6Company=Ananda Computers[sdFinishReboot-0]Result=1BootOption=0My log file:[installShield Silent]Version=v4.90.000File=Log File[ResponseResult]ResultCode=-3
Tripredacus Posted August 15, 2011 Posted August 15, 2011 This is how to use the setup.iss file:c:\temp\app\setup.exe /s /f1"c:\temp\app\setup.iss"
kali Posted August 18, 2011 Author Posted August 18, 2011 This is how to use the setup.iss file:c:\temp\app\setup.exe /s /f1"c:\temp\app\setup.iss"You advised to keep the seup file and iss file in same folder. I did the same job. My directory was in the desktop named Bijoy2003 and I put the seup file and iss file in Bijoy2003. But every time I get ResultCode=-3.You can simply create this with autoit.Yes. Auto it is good and I used it for many soft. But there is Name, Company name and serial number. I don't know using it. This software is to write my own language in ANSI.
Tripredacus Posted August 18, 2011 Posted August 18, 2011 So this Setup.exe I am presuming you didn't make it? You may want to try this tooc:\temp\app\setup.exe /s /sms /f1"c:\temp\app\setup.iss"If still error, try thisc:\temp\app\setup.exe /s /f1"c:\temp\app\setup.iss" /verbose"c:\temp\app\verbose.log"
kali Posted August 19, 2011 Author Posted August 19, 2011 So this Setup.exe I am presuming you didn't make it? You may want to try this tooc:\temp\app\setup.exe /s /sms /f1"c:\temp\app\setup.iss"Sorry to disturb you. I'm not clear about your c:\temp\app\setup.exe. I found no app directory in temp folder. I inserted screenshot. So when I run your command I got same result like before. Thanks.
urie Posted August 21, 2011 Posted August 21, 2011 Tripredacus was just giving you an example you need to specify your OWN paths to your application.
Tripredacus Posted August 22, 2011 Posted August 22, 2011 Tripredacus was just giving you an example you need to specify your OWN paths to your application.Yes. I was copying commands from my own installer scripts and changing their specific names. My installers always sit in C:\temp (a folder that by default does not exist) so I can delete it later.
kali Posted August 22, 2011 Author Posted August 22, 2011 Yes. I was copying commands from my own installer scripts and changing their specific names. My installers always sit in C:\temp (a folder that by default does not exist) so I can delete it later.Yes. You are good. Thanks for response. I'm clear now.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now