Folder Shortcuts

Is it possible through script to dynamicaly set the path to a folder? What I'm trying to do is make a drive object that will automaticaly open the drive folder when it is clicked on. I can get all the info on all available drives on my system through script but I would like the object to also be able to open the drive without having to get users to right click and select the set target property.
1,124 views 2 replies
Reply #1 Top
Open in Explorer?

Dim WshShell
Set WshShell = CreateObject ("WScript.Shell")
WshShell.Run "d:\"
Set WshShell = nothing