我如何 add/not 根据 Inno Setup 中的 Windows 版本添加卸载程序的快捷方式?

How can I add/not add a shortcut to an uninstaller depending on the Windows version in Inno Setup?

根据

Inno Setup Start menu uninstall shortcut is not shown on Windows 10

我不应该在 Windows 的任何版本上的“开始”菜单中添加卸载程序的快捷方式。 但是,我能否根据 Windows 的版本以某种方式决定是否创建快捷方式?

所有 Inno Setup 部分条目都有 MinVersion and OnlyBelowVersion parameters, which you can use to control on what version of Windows 条目被使用。

要仅在 8 以下的 Windows 上创建图标,请使用:

[Icons]
Name: "..."; Filename: "..."; OnlyBelowVersion: 6.2

不过,正如 link 所说,不要让卸载图标使“开始”菜单混乱。他们不应该在那里,无论用户使用什么版本的Windows。