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:
The cd command on Windows is not intuitive for users of Linux systems. If you expect cd to go to another directory no matter whether it is in the current drive or another drive, you can create an alias for cd. Here is how to do it in Cmder:
$CMDER_ROOT/config and open the file user_aliases.cmdcd=cd /d $*
Restart Cmder and you should be able to cd to any directory you want. It is a small trick but works great and saves your time.