Rahul
Rahul

Reputation: 471

Inno-setup start menu entries not required

I am building a setup file for my program using inno setup but don't want to add start menu entries. What keyword/settings are required in inno-setup to achieve this?

Upvotes: 0

Views: 123

Answers (1)

Wosi
Wosi

Reputation: 45153

Delete the entries in then [Icons] section where the Name attribute starts with {group}. Example:

Name: {group}\MyExe; Filename: {app}\Bin\MyExe.EXE; WorkingDir: {app}\Bin; IconFilename: {app}\Bin\MyExe.EXE; Comment: Starty MayExe; IconIndex: 0

Upvotes: 1

Related Questions