1. 利用 PING 指令幫忙停 5 秒
每壹台電腦都有 PING 執行檔,這個最好用啦!
@ping 127.0.0.1 -n 5 -w 1000 > nul
2. 利用 CHOICE 指令
CHOICE 命令在 Windows XP 中找不到,但在 Windows Server 2003 或 Vista 都有內建。
@CHOICE /C YN /N /T 5 /D y > nul
3. 安裝 Windows Server 2003 Resource Kit Tools 即可獲得 sleep.exe 工具
預設安裝路徑在 C:\Program Files\Windows Resource Kits\Tools 目錄下會有個 sleep.exe 執行檔
sleep 5
4. 利用 TIMEOUT 指令
TIMEOUT 命令在 Windows Server 2003 或 Vista 之後都有內建。
timeout /t 5