提问人:KerbFusion 提问时间:11/16/2023 更新时间:11/16/2023 访问量:34
如何绕过“按任意键继续...”在批处理中?
How to bypass "Press any key to continue..." in Batch?
问:
我正在编写一个批处理文件来运行一个以文件名列表作为输入的可执行文件。 看起来像这样:
for %%x in (%*) do ( path\to\exe %%x )
此可执行文件的每个实例都会生成“按任意键继续...”提示,如果我离开计算机,它会停止。我想让批处理文件一次执行一个,而不会在迭代之间暂停。
答: 暂无答案
评论
( for %%x in (%*) do ( path\to\exe %%x ) ) < NUL