How to create a shortcut (or other object( that opens My computer?

If i want to open my 'drives at a glace' i need a shortcut to my computer - how to do that?
2,610 views 2 replies
Reply #1 Top
explorer /e,/root,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}
Reply #2 Top
Insert this script into your object.

Function Object_OnLButtonUp(x,y,dragged)
If not dragged Then
On Error Resume Next
Set Sh = CreateObject("WScript.Shell")
Sh.Run (Chr(34)& "" & Chr(34))
Set Sh = Nothing
End If
End Function