Windows 7: Command Prompt won't CD into a network mapped drive [duplicate]
Solution 1:
cd
is primarily for changing directories, you're trying to change drives.
from the command prompt type z:
or cd /D z:
for clarification on cd and it's options type cd /?
from the command prompt.