inno setup需要有关开始菜单下图标组的帮助

时间:2014-01-27 09:38:15

标签: windows installer inno-setup

我正在使用Inno设置。我需要将我的程序图标放在公司组下的“开始”菜单中。

我的#defines:

MyAppPublisher = publisher
MyAppName = game name

一些示例代码:

[Icons]
Name: {group}\{#MyAppPublisher}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; IconFilename: {app}\{#MyAppIcon}
Name: {group}\{#MyAppPublisher}\{cm:ProgramOnTheWeb,{#MyAppName}}; Filename: {#MyAppURL}
Name: {group}\{#MyAppPublisher}\{cm:UninstallProgram,{#MyAppName}}; Filename: {uninstallexe}
Name: {commondesktop}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; Tasks: desktopicon

我得到了

  • 开始菜单
    • 所有节目
      • 游戏名称
        • 出版商
          • 游戏名称(游戏exe)
          • 卸载游戏名称
          • 网站游戏名称

但我需要的是

  • 开始菜单
    • 所有节目
      • 出版商
        • 游戏名称
          • 游戏名称(游戏exe)
          • 卸载游戏名称
          • 网站游戏名称

我应该怎么做才能获得我想要的布局?

1 个答案:

答案 0 :(得分:7)

像这样设置DefaultGroupName

[Setup]
DefaultGroupName={#MyAppPublisher}\{#MyAppName}

[Icons]
Name: {group}\{#MyAppName}; Filename: {app}\{#MyAppExeName}; IconFilename: {app}\{#MyAppIcon}
Name: {group}\{cm:ProgramOnTheWeb,{#MyAppName}}; Filename: {#MyAppURL}
Name: {group}\{cm:UninstallProgram,{#MyAppName}}; Filename: {uninstallexe}