사용자 도구

사이트 도구


windows:bat

문서의 이전 판입니다!


Windows Batch File

batch 파일 안에서 다른 batch 파일 호출

  • batch 파일 안에서 다른 배치파일을 그냥 실행하면 현재 배치파일의 나머지 부분은 실행이 안된다.
  • call 다른배치파일 옵션 형태로 호출해야 한다.

명령창 없이 batch 파일 실행

  • batchrun.vbs
    Set WshShell = WScript.CreateObject("WScript.Shell")
    obj = WshShell.Run("test.bat", 0)
    set WshShell = Nothing
    • “test.bat”을 원하는 파일로 변경한다.
windows/bat.1368688300.txt.gz · 마지막으로 수정됨: 2013/05/16 16:11 저자 kwon37xi