USB 自动运行和批处理文件
我正在尝试设置 autorun.inf 文件和批处理文件,以检查是否安装了程序。 如果没有,我想在插入 USB 驱动器时运行安装文件。 这是我的代码:
setlocal
set VMP=C:\Program Files\VMware\VMware Player\
cd C:\Program Files\VMware\VMware Player\
if exist %VMP% (
start vmx
) else (
start VMware-player-2.5.2-156735.exe
)
vmx 是 USB 记忆棒根目录中的快捷方式,指向我要运行的 .vmx 文件。 无论 %VMP% 是否存在,它都会同时打开两个文件。 谁能帮我吗?
I am trying to set up an autorun.inf file and batch file in order to check to see if a program is installed. If not, I want to run the install file upon plugging in the usb drive. Here is my code:
setlocal
set VMP=C:\Program Files\VMware\VMware Player\
cd C:\Program Files\VMware\VMware Player\
if exist %VMP% (
start vmx
) else (
start VMware-player-2.5.2-156735.exe
)
vmx is a shortcut in the root of the usb stick that points to the .vmx file I want to run. It is opening both files at the same time regardless of whether %VMP% exist. Can anyone help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的路径放在引号中。
put your paths in quotes.