我在Windows中写了一个批处理文件(.bat).我想在新窗口中执行一个特定的进程.我该如何做?
例
a.py -s 3 -l 5 b.py -k 0 -> I want to start this in a new window and let the original batch file continue C:\program.exe ... ....
使用start命令:
原文链接:https://www.f2er.com/windows/371596.htmlstart foo.py
要么
start "" "c:\path with spaces\foo.py"