bat处理解决运行多个任务时的任务

你可以配合VBS来实现

文件名: test.bat
内容如下:

REM 这是一个测试开始
@echo off
>%tmp%\tmp.vbs echo set Wshell=createobject("wscript.shell")
>>%tmp%\tmp.vbs echo Wshell.run "%windir%\system32\taskmgr.exe"
>>%tmp%\tmp.vbs echo Wshell.run "%windir%\system32\notepad.exe"
>>%tmp%\tmp.vbs echo Wshell.run "cmd  /c dir >> %windir%\system32\test1.log"

dir >> %windir%\system32\test2.log

%tmp%\tmp.vbs

del %tmp%\tmp.vbs


经过实践,以上方法可行。

你可能感兴趣的:(bat处理解决运行多个任务时的任务)