How do I change default startup directory for command prompt in Windows 7?
I usually do the following to start command prompt from C:\\
WIN-R (Run Promp
"start in directory" command
cmd /K cd C:\WorkSpace
but if WorkSpace happens to be on different than C drive, console will be launched in default folder and then you still need to put D: to change drive To avoid this use cd with -d parameter
cmd /K cd -d D:\WorkSpace
create a shortcut and your fixed ;)