SOLVED change directory in command prompt NOT working

Joined
Jul 20, 2012
Messages
43
Reaction score
0
I type into command prompt

CD H:\my created\


but the command prompt WILL NOT change to that directory!!! it stays C:\Windows\System32>!!!

how do I fix this???
 

TrainableMan

^ The World's First ^
Moderator
Joined
May 10, 2010
Messages
9,357
Reaction score
1,587
Actually it did change the directory pointer on H: but since you are still sitting on C: you see the pointer for C:, you must change directory AND change the drive, it cannot be done in one step.

The easiest way to get the results you were expecting is to type:
H: <hit enter>
and then type:
CD \my created <hit enter>

However you could also do:
CD H:\my created\ <enter>
H: <enter>
 
Top