29

Possible Duplicate:
Using cd Command in Windows Command Line, Can’t Navigate to D:\

Somehow cd command is not working in windows command prompt when I want to change the drive.

For example if I'm in:

C:\Program Files\Windows Resource Kits\Tools>

with command

cd d:\

It doesnt take me to d: drive but it stays in

C:\Program Files\Windows Resource Kits\Tools>

If I try cd.. or cd\ or trying to change the directory within the drive that works.

Any help?

dragan.stepanovic
  • 425
  • 1
  • 5
  • 9

4 Answers4

44

If you are going into a folder on another drive, why not simply type

cd /d d:\someFolder\anotherFolder

The /d switch is specified in cd /?

Use the /D switch to change current drive in addition to changing current directory for a drive.

TheLQ
  • 2,917
39

When changing drives, you just need to type the drive letter, like d: (EDIT: don't use the backslash, like d:\; it doesn't work). You only use cd when moving between directories within a drive.

jrc03c
  • 10,542
5

This is a known 'feature' dating back to the DOS ages. Put simply, you have one 'active directory' for each drive. cd changes the active directory for that drive only. For example, cd C:\WINDOWS changes the active directory of the C: drive to \WINDOWS. To change to another drive, you would use something like A: to change to the A drive.

Hello71
  • 8,673
  • 5
  • 42
  • 45
4

Other option: pushd d:\

for return to a previos directory: popd

is possible also, go to a "unc" directory, for example: (creates a temporary Z: drive) pushd \\localhost\mydir

jordi
  • 41