bat文件运行时隐藏黑色的cmd窗口
程序员文章站
2022-05-08 18:05:36
...
bat文件运行时隐藏黑色的cmd窗口,需要让bat在后台运行。
在bat文件中头部加一段代码
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
:begin
自己的逻辑代码