이때 path 가 짧다면 괜찮지만 길어지면 여간 귀찮은 일이 아니다.
콘솔 창을 이용할때 폴더의 팝업메뉴에서 현재 폴더위치로 프롬프트가 떨어지도록 할 수 있다.(아래 그림 참조)
위의 편리한 Command Prompt Here 팝업 메뉴 만들기 위해선
1. regedit.exe 를 실행한다.
2. 내컴퓨터\HKEY_CLASSES_ROOT\Directory\shell\ 에서 Command Prompt Here 라는 키를 만들고 값은 Command &Prompt Here 로 설정한다.
3. 내컴퓨터\HKEY_CLASSES_ROOT\Directory\shell\Command Prompt Here 에서 command 라는 키를 만들고 값은 cmd.exe /k cd /d %1 로 설정하면 된다.
[RegCommandPromptHere.bat 로 만들어 한방에 해결]
@rem ysoftman
reg add "HKEY_CLASSES_ROOT\Directory\shell\Command Prompt Here" /v "Command &Prompt Here" /f
reg add "HKEY_CLASSES_ROOT\Directory\shell\Command Prompt Here\command" /v "" /d "cmd.exe /k cd /d %%1" /f /t REG_SZ
comments:
댓글 쓰기