I\'m using cmd.exe (C:\\WINDOWS\\System32\\cmd.exe) and I have to change my current directory to \"D:\\temp\" i.e. temp folder in the D drive.
cmd.exe
When I tr
cd has a parameter /d, which will change drive and path with one command:
cd
/d
cd /d d:\temp
( see cd /?)
cd /?