inno setup - Add a check box to not add the start menu icons -


so simple, , i've been looking , looking example, can't seem find one.

i need add check box select option not create start menu shortcut screen says, "select start menu folder - should setup place program's shortcuts?". not sure how this. vastly appreciated.

here's code far:

[setup] appname=my launcher appversion=1.1 defaultdirname={pf}\my launcher defaultgroupname=my launcher uninstalldisplayicon={app}\mylauncher.exe compression=lzma2 solidcompression=yes  [installdelete] type: files;  name: "{app}\mylauncher.exe";  [files] source: "mylauncher.exe"; destdir: "{app}" source: "qtcore4.dll"; destdir: "{app}" source: "qtgui4.dll"; destdir: "{app}" source: "qtnetwork4.dll"; destdir: "{app}" source: "qtsql4.dll"; destdir: "{app}" source: "readme.txt"; destdir: "{app}"   [icons] name: "{group}\my launcher"; filename: "{app}\mylauncher.exe" 

under [setup] section, try adding end:

allownoicons=yes 

see here official documentation on property.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -