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.
我写了一个 myweb.exe 和 myweb.cmd。
myweb.cmd 是
start myweb.exe My Web Options start http://localhost:8080
如果我将这些文件放在本地文件夹中,则当用户单击 myweb.cmd 时它会起作用。
但是,如果我将这些文件放在 \\mysrv\myweb\ 目录中,它就会失败。
Windows 将显示 myweb.exe 未找到。(似乎 myweb.exe 放在 c:\windows 上)
这两个之一可能会有所帮助。
@echo off start "" "c:\program files\name\myweb.exe" My Web Options start http://localhost:8080
如果您有权限,这可能适用于 LAN。
@echo off start "" "\\server\share\myweb.exe" My Web Options start http://localhost:8080