I'm making a setup script in Inno and I was wondering, how can I get non "hardcoded" path. Here is example:
Thanks in advance!
SOLUTION:
You can get .iss folder by using predefined variable
SourcePath
Usage would be like: {#SourcePath}\???\…
I want to install a msi with msiexec in a specific directory. I'm using:
msiexec /i "msi path" INSTALLDIR="C:\myfolder" /qb
It is not working with the "INSTALLDIR", because the msi is installing in the default path and not …
I use R under Windows on several machines.
I know you can set the working directory from within an R script, like this
setwd("C:/Documents and Settings/username/My Documents/x/y/z")
... but then this breaks the portability …