If you want to change the working directory for a command window to a folder on a different drive, the command “ cd” doesn’t work.
You have to first enter the drive letter and colon and then enter “ cd” and the folder path. However, you can use the switch /d to change the current working directory drive as shown below:
cd /d E:\test
You can also make the change with one command entry if you use “ pushd” instead of “ cd” :
pushd E:\test





