how to run batch script in background code example
Example: launch batch in background
Copy in .VBS file:
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & ".bat" & Chr(34), 0
Set WshShell = Nothing
launch vbs file and here you go