如何创建到可执行文件的符号链接/连接(在 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.

可执行文件不支持连接吗?我猜是不支持。

(问)有没有办法创建一个可执行文件的链接,以便我的脚本能够正常 start c:\p\npp\notepad++.exe工作?

答案1

文档 链接 说:

/j  Creates a Directory Junction.

所以这不适用于文件。

的文档 启动命令 给出其语法:

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

因此你的命令可能是:

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

相关内容