bat vbs后台运行

1、bat后台运行程序:

       在执行的命令前加上start /b,比如start /b run.bat。就相当于Linux下的run.sh &。run.bat 可以为:a.vbs ,***.exe,notepad、calc、winword。。。

 

2、vbs 后台运行程序:

      Set objShell = CreateObject("Wscript.Shell"
     objShell.Run("notepad"), 0, TRUE   

你可能感兴趣的:(bat vbs后台运行)