Windows Program

배치파일 실행

wowbelly 2017. 3. 28. 11:46

배치파일 실행

How do I call another batch script from within a batch script?


Use CALL as in

CALL nameOfOtherFile.bat

 


This will block (pause) the execution of the current batch file, and it will wait until the CALLed one completes.

If you don't want it to block, use START instead.

Get the nitty-gritty details by using CALL /? or START /? from the cmd prompt.

'Windows Program' 카테고리의 다른 글

DLL  (0) 2016.12.14