I'm installing a program on a secure operating system that doesn't allow the execution of programs from Temp
. After some study on here, I've developed a working installer that runs the installer OutputDir
from a special location we'll just call Trusted
, which does allow execution from Temp
.
After installing the program successfully, now the uninstaller is failing because it also wants to execute from Temp
. After moving the uninstaller's *.exe
and *.dat
to Trusted
, it works as expected, but I can't determine how to get the script to do this without moving the entire installation to Trusted
.
Is it possible to relocate the uninstaller from the install directory in the Inno script?