bat启动exe程序&传递参数&隐藏窗口&关闭程序

启动程序

  1. 代码如下,自行替换***
@ECHO OFF
%1 start mshta vbscript:createobject("wscript.shell").run("""%~0"" ::",0)(window.close)&&exit
start /b ***.exe  -server=*** -vkey=*** -type=*** -password=*** -target=***
  1. 第三行脚本等价于在cmd中运行:
    npc -server=*** -vkey=*** -type=*** -password=*** -target=***

关闭程序

  1. 代码如下,自行替换***
@ECHO OFF
taskkill /im ***.exe /f
ping -n 2 127.1 >nul

你可能感兴趣的:(bat启动exe程序&传递参数&隐藏窗口&关闭程序)