실행 파일에 대한 심볼릭 링크/접합을 어떻게 만들 수 있나요(Windows 10)?

실행 파일에 대한 심볼릭 링크/접합을 어떻게 만들 수 있나요(Windows 10)?

실행 파일을 실행하려고 하면 오류가 발생합니다. 예를 들어,

mklink /j foo.exe c:\Windows\System32\cmd.exe
Junction created for foo.exe <<===>> c:\Windows\System32\cmd.exe

c:\P\npp>foo.exe
'foo.exe' is not recognized as an internal or external command,
operable program or batch file.

실행 파일에 접합이 지원되지 않습니까? 나는 그들이 아닌 것 같아요.

(Q) 를 사용하는 스크립트가 작동하도록 실행 파일에 대한 링크를 만드는 방법이 있습니까 start c:\p\npp\notepad++.exe?

답변1

에 대한 문서 mklink 말한다 :

/j  Creates a Directory Junction.

따라서 이것은 파일용이 아닙니다.

에 대한 문서 시작 명령 구문을 제공합니다.

 START "title" [/D path] [options] "command" [parameters]

따라서 귀하의 명령은 다음과 같습니다.

start "" "c:\p\npp\notepad++.exe"

관련 정보