PDA

View Full Version : display start menu folder


t_vgemert
16th April 2003, 12:36
Hi,

I could not find the syntax for this on the forum:

How do I open a folder of the start menu and display it after the installation program has finished?

thnx...

kichik
16th April 2003, 12:42
Function .onInstSuccess
ExecShell "open" "$SMPROGRAMS\MyProg"
FunctionEnd

should do the trick. You can also use the MUI's MUI_FINISHPAGE_SHOWREADME because it uses ExecShell. Read the MUI's readme to know how to change the text "Show readme" to something like "Open start menu" if you choose this way.

Joost Verburg
16th April 2003, 12:43
Use ExecShell.

edit: kichik is too fast :D

t_vgemert
16th April 2003, 14:12
Aight, thanks again, works like hell! Now my project is finito! (for this time!)