slloyd
9th January 2008 04:40 UTC
Where does a single file setup.exe get extracted to?
Where does a single file setup.exe get extracted to? I am trying to run another install included in the setup.exe prior to installing the files but it $EXEDIR does not find it. Do the files get extracted to some temp dir before installing?
Red Wine
9th January 2008 05:25 UTC
$EXEDIR is the path where installer currently running.
You should extract the included another installer into $PLUGINSDIR and call it from there, e.g.
Function .onInit
InitPluginsDir
File "/oname=$PLUGINSDIR\another_installer.exe" local_file_name.ext
ExecWait "$PLUGINSDIR\another_installer.exe"
.........
.........
FunctionEnd
slloyd
9th January 2008 13:19 UTC
Thanks, that helps.
Thanks a bunch for your help with this
slloyd
9th January 2008 14:25 UTC
Thanks, that helps.
Thanks a bunch for your help with this