简体   繁体   中英

Make shortcut in start menu with innosetup

I made an installer using the ISTool wizard and everything is fine. Under my program name in the start menu, I have

MyApp
MyApp Help

Now, I want to add 2 more entries that are identical to the first (MyApp) but that passes a command line argument to the executable

MyApp
MyApp (Console Mode)
MyApp (Remote Admin Mode)
MyApp Help

Should I make batch files and add them (how do I assign an icon to a .bat) or is there some sort of built in system to do this in inno?

Just add more shortcut entries

[Icons]
Name: "{group}\MyApp (Console Mode)"; Filename: "{app}\MYPROG.EXE"; Parameters: "/console"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM