NSIS offers a command line parameter /D=C:\Foo and our installer ignores it.
This means our documentation is broken as the Unattended Deployment steps claim the directory can be overridden via /D=C:\Foo, but this is not honored in our version of the installer.
NSIS offers a command line parameter
/D=C:\Foo
and our installer ignores it.This means our documentation is broken as the Unattended Deployment steps claim the directory can be overridden via
/D=C:\Foo
, but this is not honored in our version of the installer.According to this article, this may be due to the fact that we specify it here
windows-packager.nsi.in#L20
.We need to find a way to accept the command line path, if supplied so that non-standard installation locations are honored via command line.