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.
我想知道是否有任何用于 Windows 脚本的命令使脚本的执行在继续执行之前暂停一段时间?
eg:运行脚本中的前两个命令,等待 10 秒然后继续执行
谢谢
我猜你正在寻找timeout命令。
timeout
@echo off command1 REM wait for 10 seconds before executing command2 timeout /t 10 command2
希望这可以帮助。
您可以使用 waitfor 命令。在此处查看文档。