powershell PowerShell中无休止的进度条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell中无休止的进度条相关的知识,希望对你有一定的参考价值。

$progress = 0
while([math]::Round($progress) -lt 100) {  # use any loop you like
    $progress = $progress + ((100 - $progress) / 10)   # the bigger the last integer, the slower the progress bar completes
    Write-Progress -Activity 'Progress' -Status "Waiting" -PercentComplete $progress

    Start-Sleep 1  # do something useful here, make it count
}

Write-Progress -Activity 'Progress' -Completed

start-sleep 2

以上是关于powershell PowerShell中无休止的进度条的主要内容,如果未能解决你的问题,请参考以下文章

powershell怎么运行

powershell PowerShell:在PowerShell控制台中更改错误,警告,调试颜色

Powershell:在 PowerShell 中重新加载路径

powershell 如何定时执行 ps1

如何在 powershell 远程会话(powershell)中编辑文件

怎样启动powershell