Hi I'm new to Windows Scripting so bear with me.
I'm trying to write a simple script that when executed. Explorer opens up on "MY Computer" showing all the drives available.
I have a script working that opens Explorer to folders or files. I also have a script that will just open Explorer which then defaults to "My Documents"
Is there a specific path or specific name other then "My computer" to add to my script?
Here is the simple script I have for opening up just Explorer:
set fs = CreateObject("Scripting.FileSystemObject")
set wshshell = CreateObject("WScript.Shell")
command = "Explorer.exe "
wshshell.run command
Any ideas of what to add to it?
I'm using W2K and Win Script Host.
Thanks
Joe
I'm trying to write a simple script that when executed. Explorer opens up on "MY Computer" showing all the drives available.
I have a script working that opens Explorer to folders or files. I also have a script that will just open Explorer which then defaults to "My Documents"
Is there a specific path or specific name other then "My computer" to add to my script?
Here is the simple script I have for opening up just Explorer:
set fs = CreateObject("Scripting.FileSystemObject")
set wshshell = CreateObject("WScript.Shell")
command = "Explorer.exe "
wshshell.run command
Any ideas of what to add to it?
I'm using W2K and Win Script Host.
Thanks
Joe