有时候我们在cmd批处理运行命令行工具时候不想占用窗口,就需要让他在后台运行。
如下简单的代码就能实现后台运行
@echo off
if "%1" == "h" goto begin
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit
:begin
::
redis-server.exe
redis-server.exe 则是我们需要后台运行的命令。
关键字词: