Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用着
mklink /h "C:\Shortcut.exe" "C:\Real.exe"
创建硬符号文件链接。
但是,我看不到如何为目标文件或参数指定“开始于:”属性。
有没有办法做到这一点?
您可以创建Shortcut.bat(而不是link)并将以下命令写入其中:
call "absolute\path\of\your\excecutable" %*
例子:
@call "C:\Program Files (x86)\GnuWin32\bin\openssl.exe" %*
将以上行保存在openssl.bat中您需要快捷方式的任何地方。