PDA

View Full Version : One question with Inno Setup?


quake4
20-08-2012, 21:25
I Needed make 1 shortcut on desktop. Examples:

3777
How to add: -steam -game ep2 to target shortcut with Inno Setup. Please help me!!!

WaltonSimons
22-08-2012, 01:01
Name: "{group}\Half Life 2 Episode Two"; Filename: "{app}\hl2.exe"; WorkingDir: "{app}"; Parameters: "-steam -game ep2"

or

Name: "{group}\Half Life 2 Episode Two"; Filename: "{app}\hl2.exe"; WorkingDir: "{app}"; Parameters: "/-steam -game ep2"

Don't remember which way is correct.

Joe Forster/STA
22-08-2012, 01:19
You mean, in the second variety (;)), there's a slash instead of a hyphen, not besides it.

quake4
22-08-2012, 04:30
Name: "{group}\Half Life 2 Episode Two"; Filename: "{app}\hl2.exe"; WorkingDir: "{app}"; Parameters: "-steam -game ep2"

or

Name: "{group}\Half Life 2 Episode Two"; Filename: "{app}\hl2.exe"; WorkingDir: "{app}"; Parameters: "/-steam -game ep2"

Don't remember which way is correct.

Thank you so much for help!. I try :)