1

Possible Duplicate:
CMD cd to other drives except C:\ not working
Can’t change current working directory to external drive in Windows

I have a Linux host and a WindowsServer2008 guest. In this guest, if I try to

cd E:/

(same as E:\ )

I can't (still in my "home"). See :

enter image description here

Am I missing something or there's a problem somewhere ?

(I'm more familiar with Unix tools)

Gilles Quénot
  • 4,475
  • 1
  • 30
  • 28

2 Answers2

3

In Windows you just enter the drive name. So instead of cd E:\ you would just enter E:.

Indrek
  • 24,874
Stephan
  • 146
2

cmds cd normally allows you to change only within current drive. If you want to switch drive at the same time, you'd have to use /d switch: cd /d e:\ would work. And you should use backslash \ instead of forward slash / for paths :-)

wmz
  • 7,358