Write-Progress
在 PowerShell 命令視窗中顯示進度列。
語法
Write-Progress
[-Activity] <String>
[[-Status] <String>]
[[-Id] <Int32>]
[-PercentComplete <Int32>]
[-SecondsRemaining <Int32>]
[-CurrentOperation <String>]
[-ParentId <Int32>]
[-Completed]
[-SourceId <Int32>]
[<CommonParameters>]
Description
Write-Progress
Cmdlet 會在 PowerShell 命令視窗中顯示進度列,描述執行中命令或腳本的狀態。 您可以選取列所反映的指標,以及進度列上方和下方顯示的文字。
範例
範例 1:顯示 For 循環的進度
for ($i = 1; $i -le 100; $i++ )
{
Write-Progress -Activity "Search in Progress" -Status "$i% Complete:" -PercentComplete $i;
}
此命令會顯示計算從 1 到 100 的 For 循環進度。
Write-Progress
Cmdlet 包含狀態列標題 Activity
、狀態行,以及變數 $i
(For 迴圈中的計數器),表示工作的相對完整性。
範例 2:顯示巢狀 For 循環的進度
for($I = 1; $I -lt 101; $I++ )
{
Write-Progress -Activity Updating -Status 'Progress->' -PercentComplete $I -CurrentOperation OuterLoop
for($j = 1; $j -lt 101; $j++ )
{
Write-Progress -Id 1 -Activity Updating -Status 'Progress' -PercentComplete $j -CurrentOperation InnerLoop
}
}
Updating
Progress ->
[ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo]
OuterLoop
Updating
Progress
[oooooooooooooooooo ]
InnerLoop
本範例會顯示兩個巢狀 For 循環的進度,每個迴圈都以進度列表示。
第二個進度列的 Write-Progress
命令包含 標識子 參數,可區分它與第一個進度列。
如果沒有 標識碼 參數,進度列會彼此迭加,而不是顯示在另一個下方。
範例 3:搜尋字串時顯示進度
# Use Get-EventLog to get the events in the System log and store them in the $Events variable.
$Events = Get-EventLog -LogName system
# Pipe the events to the ForEach-Object cmdlet.
$Events | ForEach-Object -Begin {
# In the Begin block, use Clear-Host to clear the screen.
Clear-Host
# Set the $i counter variable to zero.
$i = 0
# Set the $out variable to a empty string.
$out = ""
} -Process {
# In the Process script block search the message property of each incoming object for "bios".
if($_.message -like "*bios*")
{
# Append the matching message to the out variable.
$out=$out + $_.Message
}
# Increment the $i counter variable which is used to create the progress bar.
$i = $i+1
# Use Write-Progress to output a progress bar.
# The Activity and Status parameters create the first and second lines of the progress bar heading, respectively.
Write-Progress -Activity "Searching Events" -Status "Progress:" -PercentComplete ($i/$Events.count*100)
} -End {
# Display the matching messages using the out variable.
$out
}
此命令會顯示命令的進度,以在系統事件記錄檔中尋找字串 “bios”。
PercentComplete 參數值是將已處理的事件數目除以擷取 $Events.count
$I
的事件總數,然後將結果乘以 100。
範例 4:顯示巢狀進程每個層級的進度
foreach ( $i in 1..10 ) {
Write-Progress -Id 0 "Step $i"
foreach ( $j in 1..10 ) {
Write-Progress -Id 1 -ParentId 0 "Step $i - Substep $j"
foreach ( $k in 1..10 ) {
Write-Progress -Id 2 -ParentId 1 "Step $i - Substep $j - iteration $k"; start-sleep -m 150
}
}
}
Step 1
Processing
Step 1 - Substep 2
Processing
Step 1 - Substep 2 - Iteration 3
Processing
在此範例中,您可以使用 ParentId 參數,讓縮排輸出在每個步驟的進度中顯示父/子關聯性。
參數
-Activity
指定狀態列上方標題中的第一行文字。 此文字描述報告進度的活動。
類型: | String |
Position: | 0 |
預設值: | None |
必要: | True |
接受管線輸入: | False |
接受萬用字元: | False |
-Completed
指出進度列是否可見。
如果省略此參數,Write-Progress
會顯示進度資訊。
類型: | SwitchParameter |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-CurrentOperation
指定進度列下方的文字行。 此文字描述目前正在進行的作業。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Id
指定標識碼,以區分每個進度列與其他進度列。 當您在單一命令中建立多個進度列時,請使用此參數。 如果進度列沒有不同的標識碼,它們就會被迭加,而不是顯示在數列中。
類型: | Int32 |
Position: | 2 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-ParentId
指定目前活動的父活動。 如果目前活動沒有父活動,請使用值 -1。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-PercentComplete
指定已完成的活動百分比。 如果百分比完成未知或不適用,請使用值 -1。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-SecondsRemaining
指定活動完成前的預計秒數。 如果剩餘的秒數未知或不適用,請使用值 -1。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-SourceId
指定記錄的來源。 您可以使用這個取代 識別碼,但不能與其他參數搭配使用,例如 ParentId。
類型: | Int32 |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-Status
指定狀態列上方標題中的第二行文字。 此文字描述活動的目前狀態。
類型: | String |
Position: | 1 |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
輸入
None
您無法使用管線將輸入傳送至此 Cmdlet。
輸出
None
Write-Progress
不會產生任何輸出。
備註
如果進度列未出現,請檢查 $ProgressPreference
變數的值。 如果此值設定為 SilentlyContinue,則不會顯示進度列。 如需 PowerShell 喜好設定的詳細資訊,請參閱 about_Preference_Variables。
Cmdlet 的參數會對應至 System.Management.Automation.ProgressRecord 類別的屬性。 如需詳細資訊,請參閱 ProgressRecord 類別。