Reputation: 471
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
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