I'm trying to write a Scoop app manifest for a program (JAGS) with a NSIS installer. I want to run the installer from PowerShell.
The NSIS documentation says to use the /D
switch to set the installation directory. However, the installer uses NSIS's MUI macro to allow setting the directory in the graphical installer. For some reason, this doesn't respect the /D
switch. Is there another way to force NSIS MUI to install to a particular directory?
This has nothing to do with MUI, it is because they are using the MultiUser header file.
/D
just sets$InstDir
before any code in the installer runs and MultiUser changes$InstDir
in.onInit
overriding anything set with/D
.You can trick it to believe it is already installed: