음..
삽질의 끝은 어디까지 인가..
start /b를 사용하여 배치파일을 동시 실행해도 되지만,
-->요놈을
start /b %windir%\batch\dynamic\indexer_document.cmd
start /b %windir%\batch\dynamic\indexer_document_title.cmd
--->요롷게..
call %windir%\batch\dynamic\indexer_document_all.vbs
vbscript 를 이용하니 아주 깔끔하게 끝났다..흠.
indexer_document_all.vbs vbs파일을 아래와 같이 만들고 vbs를 실행해주면 the end..
Set WshShell = CreateObject("WSCript.Shell")
WshShell.Run "%windir%\batch\dynamic\indexer_document.cmd " & WScript.ScriptFullName
WshShell.Run "%windir%\batch\dynamic\indexer_document_title.cmd " & WScript.ScriptFullName
Set WshShell = Nothing