문제

I have a elevated batch file and I want it to execute a different batch file in a separate window I need to know if it is possible and how to do it. Can any one help.

도움이 되었습니까?

해결책

Yes, if you want to launch a file, say sample.bat, you can use

start "Title" cmd /c sample.bat

Title is the title text I want to display for the new window.

You can see the details in Documentation

Enter a START command in an existing command shell, and specify CMD as the command to execute.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top