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
Windows shortcuts
5 posts
Where Do you want to create the Folder?
you can create a folder direct in the Startmenu with
greetz Dave
you can create a folder direct in the Startmenu with
Or under Programs with
CreateDirectory "$STARTMENU\MyApp"
Hope This Helps
CreateDirectory "$SMPROGRAMS\MyApp"
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.
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.