Change variables via command line NSIS installer

Viewed 663

I would like to change variables within NSIS through command line arguments. I see in the documentation you can change global variables, but not created ones within the NSIS script.

For example: if I had

Var example
StrCpy $example "C:\Program Files (x86)\Installer"

Is it possible to change the example variable string through command line arguments?

1 Answers
Related