小樱 发表于 2021/6/17 02:05

windows cmd bat批处理不弹出命令提示符后台启动程序,禁用图形硬件加速功能,优化服务器远程访问性能,start参数传递

windows cmd bat批处理不弹出命令提示符后台启动程序,禁用图形硬件加速功能,优化服务器远程访问性能,start参数传递

三行代码即可
@echo off
set QMLSCENE_DEVICE=softwarecontext
start /b test.exe

start参数传递写法,/b前方增加""即可
@echo off
set QMLSCENE_DEVICE=softwarecontext
start "" /b "test.exe" 参数

不可名 发表于 2021/6/17 02:34

小樱在学习嘛。来玩不啦

不可名 发表于 2021/7/19 07:13

{:3027:}{:3017:}
页: [1]
查看完整版本: windows cmd bat批处理不弹出命令提示符后台启动程序,禁用图形硬件加速功能,优化服务器远程访问性能,start参数传递