Windows – 从批处理文件在新窗口中启动进程

前端之家收集整理的这篇文章主要介绍了Windows – 从批处理文件在新窗口中启动进程前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在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命令:
start foo.py

要么

start "" "c:\path with spaces\foo.py"
原文链接:https://www.f2er.com/windows/371596.html

猜你在找的Windows相关文章