cmd.exe shortcut to open in a specific location
Change the Shortcut’s properties to:
%windir%\system32\cmd.exe /F /K "cd /d D:\whatever\"
- The /F is for auto file name completion (not needed for the folder location, but very helpful once the cmd prompt is open)
- The /K is to launch a cd command
Leave a Reply