I\'m trying to compile some java (learning java currently), and to do so I need to change command-prompt\'s directory (using javac).
C:\\...\\Admin> cd D:
Use drive letter d for changing to D drive like:
C:\> d:
When changing drives, you just need to type the drive letter, like d: (don't use the backslash, like d:\; it doesn't work).
You only use cd when moving between directories within the same drive.