vote up 1 vote down star
1

When I am working with files on my project I normally have four windows open viewing four different folders in the four quadrants of the screen. My morning ritual involves having to manually open these four folders, takes only a few moments but I was hoping to find a way to automate this with Windows XP?

Any ideas?

flag

25% accept rate

1 Answer

vote up 0 vote down

You can write a batch file with these commands:

start c:\myfolder1
start c:\myfolder2
start c:\myfolder3
start c:\myfolder4

or, since Bart said in the comments on this answer, he uses this method:

explorer c:\myfolder1  (etc...)

and then run that any way you wish (on Start up, via a shortcut...)

As for saving their position on the screen, I don't know much about that, but you could try using Winsplit Revolution. That will let you use hotkeys to reposition windows (Ctrl+Alt+Numpad 7 moves a window to the top left).

link|flag
Actually, since Windows remembers the folders' window positions, this may be good enough to open the windows in their previous size and position. – bart Jan 8 at 0:37
Since I've had some weird problems with "start" and a folder's name (sometimes it just opens a new cmd window), I prefer explorer c:\foldername instead of "start". – bart Jan 8 at 0:39
good tip. I'll put that into my answer now. – nickf Jan 8 at 4:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.