后台运行bat批处理文件
程序员文章站
2023-12-30 12:55:34
...
场景:
通过windows定时任务执行bat文件时,会弹出cmd窗口,如不想被弹出黑框打扰可通过如下方法解决。
解决办法:
批处理文件开头中新增如下代码:
if "%1"=="hide" goto CmdBegin
start mshta vbscript:createobject("wscript.shell").run("""%~0"" hide",0)(window.close)&&exit
:CmdBegin