Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
快速简单的问题:我有一个批处理文件,它需要一些 .exe,如下所示:
START /WAIT GVE %opt%
我的问题是程序在一个新的控制台中启动,他们是否让它在同一个控制台中启动?我试过 /NOCONSOLE 选项但没有成功。
谢谢
我认为您只需要该/B选项(假设 exe 是控制台应用程序)
/B
start "" /b /wait gve %opt%