win7下用批处理启动两个程序,并隐藏dos窗口,如何实现?
发布网友
发布时间:2022-04-21 09:19
我来回答
共2个回答
热心网友
时间:2023-11-08 19:32
把下面的代码加到批处理前面,就可以实现隐藏运行。
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~fs0 h",0)(window.close)&&exit
:begin
rem 下边开始是批处代码了。
热心网友
时间:2023-11-08 19:33
把下面的代码加到你的批处理前面,就可以实现隐藏运行。
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~fs0 h",0)(window.close)&&exit
:begin
rem 下边开始是批处代码了