The only way to change the Starting directory of PyCmd which i found was: creating a .bat file with the following command:
cmd.exe /k "cd /d D:\ && c:\Program Files\PyCmd\PyCmd.exe"
where c:\Program Files\PyCmd\PyCmd.exe is the Path to PyCmd
PyCmd also supports the /c and /k arguments, just like cmd.exe. So the simplest way to do what you want is:
"c:\Program Files\PyCmd\PyCmd.exe" /k cd D:\
Hope this helps!
Log in to post a comment.
The only way to change the Starting directory of PyCmd which i found was:
creating a .bat file with the following command:
cmd.exe /k "cd /d D:\ && c:\Program Files\PyCmd\PyCmd.exe"
where c:\Program Files\PyCmd\PyCmd.exe is the Path to PyCmd
PyCmd also supports the /c and /k arguments, just like cmd.exe. So the
simplest way to do what you want is:
"c:\Program Files\PyCmd\PyCmd.exe" /k cd D:\
Hope this helps!