Quote:
Carlos, if you are trying to just change teh drives, you can simply type drive letter as in below...
C:\Documents and Settings\ilango>f:
F:\>e:
E:\>h:
H:\>c:
|
This approach will not work if you have a directory that have spaces in the path.
Code:
C:\Documents and Settings\All Users
To move from a mapped drive, for instance, to a profile directory you would need to use cd or chdir with the "/D" switch and encase the path with quotation marks.
Code:
chdir /D "C:\Documents and Settings\All Users"
Therefore my example gives the best way to accomplish the task and keep the typing to a minimum.