Yovav
13th September 2004 21:45 UTC
How can I hide the "Choose start menu" screen but keep using the start menu ?
I want to skip the "Choose start menu dir" screen but still use the start menu...
When I disable this line:
; !insertmacro MUI_PAGE_STARTMENU Application $STARTMENU_FOLDER
Then it just put the icons on the root ("...Program Files")
What variable should I update so it will create the start menu like this:
"...Program files\MyDirName"
?
Thanks in advance, Yovav.
Davion
15th September 2004 15:20 UTC
I Think you want to Create a Startmenue Folder for your app, so you can use:
CreateDirectory "$SMPROGRAMS\My App\"
CreateShortCut "$SMPROGRAMS\My App\App.lnk" "$INSTDIR\App.EXE" "" "$INSTDIR\AppIcon.ICO"
with this Example, you would create a Shortcut in
Start\Programs\My App\
I hope this helps
greetz Dave
Yovav
15th September 2004 16:57 UTC
in-fact I was trying to remember the dir chosen by the user for the uninstall...
I guess I'll create a reg key and check it on uninstall...
Thanks anyway.
Comm@nder21
15th September 2004 19:34 UTC
which dir do you want to remember, if you won't let the user choose it??
I want to skip the "Choose start menu dir" screen but still use the start menu...
Yovav
16th September 2004 00:01 UTC
Comm@nder21 - U R right, I made some mess in here...
the reason I wanted to disable the "Choose start menu dir"
is that I saw uninstall does not take care of special user selected folders...
Davion
16th September 2004 10:41 UTC
The Installer and the Uninstaller work fine for me, but you can create an ini File which includes all Paths the User has choosen, and let the Uninstaller check this File for the Paths
hope this helps
greetz Dave
Yovav
16th September 2004 11:38 UTC
10X,
I finally decided to cancel the "Choose start menu dir"
so the install will be shorter and clearer for the user
(I managed to remove the user selected dir)