Archive: Windows shortcuts


Windows shortcuts
Hi, I would like to know how to create a folder within $SMPROGRAMS\$STARTMENU_FOLDER. I am creating shortcuts but i need to organize them within folders.

Thanks in advance


Where Do you want to create the Folder?


you can create a folder direct in the Startmenu with


CreateDirectory "$STARTMENU\MyApp"


Or under Programs with


CreateDirectory "$SMPROGRAMS\MyApp"


Hope This Helps

greetz Dave

I'm creating a folder under the Start/Programs. But now I need within that folder another folder. So My shortcuts are organized within folders.
E.g.

Start/Programs/MyApp/Folder1
and
Start/Programs/MyApp/Folder2

Same as the Sun Microsistems folder within programs. For each version of Java shortucts are in a diferent folder.


Try this ;)


CreateDirectory "$SMPROGRAMS\MyApp"
CreateDirectory "$SMPROGRAMS\MyApp\Folder1"
CreateDirectory "$SMPROGRAMS\MyApp\Folder2"
.
.
.

Thanks the idea worked fine.