I worked with passing command line parameters through Command prompt. (/d<name>=<value>)
. It's work.
Later I found "parameters"
option in "Run"
menu of "Inno Setup 5". I tried but failed to pass.
My Attempts
"/dWish=Hello"
/dWish=Hello
"Wish=Hello"
Wish="Hello"
Wish="Hello"
Wish=Hello
And access like {#Wish}
. But compilation filed with error undeclared identifier "Wish"
This is for option
iscc "/dName=Demo" "Installation_Script.iss"
. It's working. Now i want passName=Demo
through Inno Setup UI. Means Run==> Parameters section. With out using Command Prompt – GynoeciumInno Script Studio
which might have some IDE options to set parameters passed to the compiler. – GarotteWhat is the use of "Run==>parameter"
will use? – Gynoeciumsetup command line parameters
. – Garotte