[Shift]를 누른 상태에서 폴더 이름을 마우스로 오른쪽 클릭 하였을 경우 “여기서 명령창 열기(Open Command Prompt here)” 메뉴가 보였습니다. 그러나 Windows 10을 업데이트 한 이후로 “여기서 명령창 열기” 메뉴 대신 “여기에 PowerShell 창 열기Open PowerShell window here”라는 메뉴만이 나타난다면 다음과 같이 레지스트리를 수정함으로써 사라진 명령창 열기 컨텍스트 메뉴를 부활시킬 수 있습니다.
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\cmdprompt]
@="@shell32.dll,-8506"
"Extended"=""
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\Directory\shell\cmdprompt\command]
@="cmd.exe /s /k pushd \"%V\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt]
@="@shell32.dll,-8506"
"Extended"=""
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\Directory\Background\shell\cmdprompt\command]
@="cmd.exe /s /k pushd \"%V\""
[HKEY_CLASSES_ROOT\Drive\shell\cmdprompt]
@="@shell32.dll,-8506"
"Extended"=""
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\Drive\shell\cmdprompt\command]
@="cmd.exe /s /k pushd \"%V\""
또는 cmdmenu.reg를 클릭하여 다운로드한 후 실행만 해도 됩니다.
실행 전:
실행 후:
출처 : https://tapito.tistory.com/567