你的位置:首页 > 互联网IT
bat启动程序,bat启动exe,bat启动,bat启动文件
如何用bat文件启动一个exe文件,BAT文件启动应用程序,bat启动node文件
系统:Windows
建立一个:启动.bat
第一种:
@echo off
start "" "node" 111.js
start "" "111.exe"
第二种:
@echo off
start node 111.js
start 111.exe
第三种
@echo off
start /d "D:\Program Files (x86)\Tencent\QQ\Bin\" QQ.exe
exit
@echo off
start /d "E:\Program Files (x86)\Tencent\QQ\Bin\" QQ.exe
choice /t 3 /d y /n >nul
start /d "E:\Program Files (x86)\Tencent\WeChat\" WeChat.exe
start /d "E:\Program Files (x86)\Tencent\WeChat\" WeChat.exe
choice /t 3 /d y /n >nul
start /d "E:\Program Files (x86)\Tencent\WXWork\" WXWork.exe
exit
windows
bat后台隐藏运行:https://www.zhuguodong.com/?id=520
发表评论: