Question : How do I write a batch that will open an Explorer window to a particular folder?

I have 3 shortcuts on my desktop to 3 folders that I open very frequently.  Rather than click on each of the 3 individually I'd like to create a batch file that will open all 3 folder shortcuts (thereby saving me 2 extra double clicks).  

How do I do this?

Code I can run would be much appreciated.  

Answer : How do I write a batch that will open an Explorer window to a particular folder?

Save something like this as whatever.cmd:
1:
2:
3:
4:
5:
6:
7:
8:
9:
start "" explorer.exe "C:\Folder1"
start "" explorer.exe "C:\Folder2"
start "" explorer.exe "C:\Folder3"

If you want the Explorer windows to show up with the tree structure in the left pane,

start "" explorer.exe /e,"C:\Folder1"
start "" explorer.exe /e,"C:\Folder2"
start "" explorer.exe /e,"C:\Folder3"
Random Solutions  
 
programming4us programming4us