Applocale을 사용하는 주된 용도는....
일본어 게임을 정상적으로 실행시키기 위한 목적이 대부분일 것이다.(내가 그렇다..)
항상 실행 할때마다 Applocale(이하 App)을 실행 시켜서 실행 파일 찾고하기 번거로우므로
실행 파일을 오른 클릭 했을 때 어플로케일 실행 컨텍스트 메뉴를 추가하는 방법이다.
[시작]-[실행](WIN+R)
reg.exe add "HKEY_CLASSES_ROOT\exefile\shell\Run in Japanese with AppLocale\command" /VE /D "%SystemRoot%\AppPatch\AppLoc.exe \"%%1\" \"/L0411\"" /f
reg.exe add "HKEY_CLASSES_ROOT\lnkfile\shell\Run in Japanese with AppLocale\command" /VE /D "%SystemRoot%\AppPatch\AppLoc.exe \"%%1\" \"/L0411\"" /f
위의 두 명령을 실행 시킨다.
이후 실행파일(확장자 exe) 파일을 오른 클릭 해보면 아래와 같이 App로 실행하는 메뉴가 추가 되어있다.
해당 컨텍스트 메뉴를 삭제하고 싶을 경우에는
[시작]-[실행](WIN+R)
reg delete "HKEY_CLASSES_ROOT\exefile\shell\Run in Japanese with AppLocale" /f
reg delete "HKEY_CLASSES_ROOT\lnkfile\shell\Run in Japanese with AppLocale" /f
위의 두 명령을 실행 시키면 된다.
이 모든게 귀찮을 수 있으니 그냥 실행 하면 알아서 인스톨, 언인스톨 하는 배치 파일을 첨부한다.