从一个文件夹逐个运行所有exe文件

时间:2017-03-01 17:11:43

标签: batch-file

我正在学习批处理文件编码。如何从一个文件夹中执行一堆exe文件。我一个接一个地获得了回收代码。如果你执行它,如果什么都不做。请帮我重新编码。

    for /r %%m in (*.exe) do (start /wait (%%m)

)
pause

2 个答案:

答案 0 :(得分:2)

for %f in (*.exe) do start /wait %f

答案 1 :(得分:2)

for /r %%f in (*.exe) do (start /wait %%f /quiet /norestart)

添加了一些代码,例如/ quiet,以便在安静模式和/ norestart中执行它,以避免设备自动重启。