문제

How to run Instructions/Commands in a Batch File in parallel ?

Contents Inside Batch File: Each Line Calls a Process

E.g.

StartMyDay.Bat

call devenv.exe
call chrome.exe
call communicator.exe
call VirtualBox.exe
도움이 되었습니까?

해결책

Use the start command, but add the paths to the files if needed.

start "" devenv.exe
start "" chrome.exe
start "" communicator.exe
start "" VirtualBox.exe
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top