我通过命令行(win7 cmd)在 parallel 中执行4个任务:
start defrag /A c:
start defrag /A d:
start defrag /A e:
start defrag /A f:
dir
但是dir
命令在第一行之后执行。
我想在完成所有4个命令后执行dir
命令。
我该怎么办?
答案 0 :(得分:5)
试试这个:
start defrag /A c:
start defrag /A d:
start defrag /A e:
start defrag /A f:
:StartLoop
:: Check whether any of the defrags are running...
tasklist|Findstr /i /c:"defrag"
:: Exiting the loop if tasklist didn't find any defrags.
If %errorlevel% NEQ 0 (
GoTo :ExitLoop
)
choice /T 10 /D Y /M "Waiting for 10 seconds..."
GoTo :StartLoop
:ExitLoop
dir
答案 1 :(得分:1)
这会导致defrag /A [drive]
为c,d,e和f运行,等待每个人在开始下一个之前完成。最后,它将退出并运行dir
。
for %%i in (c d e f) do start "" /B /WAIT defrag /A %%i:
dir
答案 2 :(得分:1)
您可以使用defrag /M
选项在多个驱动器上启动碎片整理,然后使用defrag /T
选项等待每个驱动器完成。 defrag /T
等待只有一个卷完成,但由于你想等待所有这些,这对你有用:
REM This will start defrag running concurrently on all four drives:
defrag c: d: e: f: /M
REM Wait for each drive to complete. But since you want to wait of them, that is okay.
REM The order is unimportant
defrag c: /T
defrag d: /T
defrag e: /T
defrag f: /T
REM They are all done. You are set to whatever you want to do next.
dir