Folks, please help me solve this problem. My standard install works correctly. My silent install is checking the existence of setupvars.ini file, but not acting on %AppFolder%. The Setup Log does not mention it.
For this example, all my files are in the C:\ folder
install.bat:
myproginstall.exe /S:"setupvars.ini"
setupvars.ini: (ASCII file, not UTF-8 etc.)
[SetupValues]
%AppFolder% = C:\zzz (a new folder)
Set up log:
[06/23/2015 06:56:56] Success Setup started: C:\myproginstall.exe
[06/23/2015 06:56:56] Notice Setup engine version: 9.3.1.0
[06/23/2015 06:56:56] Notice Product: myprog, version 3.90.2
[06/23/2015 06:56:56] Success Language set: Primary = 9, Secondary = 1
[06/23/2015 06:56:56] Success Verify archive integrity
[06/23/2015 06:56:56] Skipped Date expiration check
[06/23/2015 06:56:56] Skipped Uses expiration check
[06/23/2015 06:56:56] Success System requirements check
[06/23/2015 06:56:56] Success Include script: _SUF70_Global_Functions.lua
[06/23/2015 06:56:56] Notice Start project event: Global Functions
[06/23/2015 06:56:56] Success Run project event: Global Functions
[06/23/2015 06:56:56] Notice Start project event: On Startup
[06/23/2015 06:56:56] Success Run project event: On Startup
[06/23/2015 06:56:56] Notice Start project event: On Pre Install
[06/23/2015 06:56:56] Success Run project event: On Pre Install
[06/23/2015 06:56:56] Success Free space check on drive: C:\
[06/23/2015 06:56:56] Success Set uninstall data folder: C:\wrong\myprog-uninstall
....
the uninstall is specified to be in %AppFolder% and so the uninstall data folder should be: C:\zzz\myprog-uninstall
C:\zzz is not created during the setup.
Any suggestions?
For this example, all my files are in the C:\ folder
install.bat:
myproginstall.exe /S:"setupvars.ini"
setupvars.ini: (ASCII file, not UTF-8 etc.)
[SetupValues]
%AppFolder% = C:\zzz (a new folder)
Set up log:
[06/23/2015 06:56:56] Success Setup started: C:\myproginstall.exe
[06/23/2015 06:56:56] Notice Setup engine version: 9.3.1.0
[06/23/2015 06:56:56] Notice Product: myprog, version 3.90.2
[06/23/2015 06:56:56] Success Language set: Primary = 9, Secondary = 1
[06/23/2015 06:56:56] Success Verify archive integrity
[06/23/2015 06:56:56] Skipped Date expiration check
[06/23/2015 06:56:56] Skipped Uses expiration check
[06/23/2015 06:56:56] Success System requirements check
[06/23/2015 06:56:56] Success Include script: _SUF70_Global_Functions.lua
[06/23/2015 06:56:56] Notice Start project event: Global Functions
[06/23/2015 06:56:56] Success Run project event: Global Functions
[06/23/2015 06:56:56] Notice Start project event: On Startup
[06/23/2015 06:56:56] Success Run project event: On Startup
[06/23/2015 06:56:56] Notice Start project event: On Pre Install
[06/23/2015 06:56:56] Success Run project event: On Pre Install
[06/23/2015 06:56:56] Success Free space check on drive: C:\
[06/23/2015 06:56:56] Success Set uninstall data folder: C:\wrong\myprog-uninstall
....
the uninstall is specified to be in %AppFolder% and so the uninstall data folder should be: C:\zzz\myprog-uninstall
C:\zzz is not created during the setup.
Any suggestions?
Comment