在PowerShell中如何等待3秒

如何在PowerShell中sleep

Start-Sleep -Seconds 10 # 等待10秒
Start-Sleep 10 # 等待10秒
Start-Sleep -Seconds 2.7 # 4舍5入 等待3秒
Start-Sleep -MilliSeconds 500 # 等待0.5秒
日期:2020-04-11 23:04:34 来源:oir作者:oir