Write-Progress - PowerShell command help and examples

Displays a progress bar within a Windows PowerShell command window. (Write-Progress)


NAME
Write-Progress
SYNOPSIS
Displays a progress bar within a Windows PowerShell command window.
SYNTAX
Write-Progress [-Activity] <string> [-Status] <string> [[-Id] <int>] [-Completed] [-CurrentOperation <string>] [-ParentId <int>] [-PercentComplete <int>] [-SecondsRemaining <int>] [-SourceId <int>] [<CommonParameters>]
DESCRIPTION
The Write-Progress cmdlet displays a progress bar in a Windows PowerShell command window that depicts the status of a running command or script. You can select the indicators that the bar reflects and the text that appears above and below the progress bar.
PARAMETERS
-Activity <string> Specifies the first line of text in the heading above the status bar. This text describes the activity whose progress is being reported. Required? true Position? 1 Default value Accept pipeline input? false Accept wildcard characters? false -Completed [<SwitchParameter>] Indicates whether the progress bar is visible. If this parameter is omitted, Write-Progress displays progress information. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -CurrentOperation <string> Specifies the line of text below the progress bar. This text describes the operation that is currently taking place. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Id <int> Specifies an ID that distinguishes each progress bar from the others. Use this parameter when you are creating more than one progress bar in a single command. If the progress bars do not have different IDs, they are superimposed instead of being displayed in a series. Required? false Position? 3 Default value Accept pipeline input? false Accept wildcard characters? false -ParentId <int> Identifies the parent activity of the current activity. Use the value -1 if the current activity has no parent activity. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -PercentComplete <int> Specifies the percentage of the activity that is completed. Use the value -1 if the percentage complete is unknown or not applicable. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -SecondsRemaining <int> Specifies the projected number of seconds remaining until the activity is completed. Use the value -1 if the number of seconds remaining is unknown or not applicable. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -SourceId <int> Identifies the source of the record. Required? false Position? named Default value Accept pipeline input? false Accept wildcard characters? false -Status <string> Specifies the second line of text in the heading above the status bar. This text describes current state of the activity. Required? true Position? 2 Default value Accept pipeline input? false Accept wildcard characters? false <CommonParameters> This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer and OutVariable. For more information, type, "get-help about_commonparameters".
INPUTS
None You cannot pipe input to this cmdlet.
OUTPUTS
None Write-Progress does not generate any output.
NOTES
If the progress bar does not appear, check the value of the $ProgressPreference variable. If the value is set to SilentlyContinue, the progress bar is not displayed. For more information about Windows PowerShell preferences, see about_Preference_Variables. The parameters of the cmdlet correspond to the properties of the ProgressRecord class (System.Management.Automation.ProgressRecord). For more information, see the ProgressRecord topic in the Windows PowerShell Software Development Kit (SDK).

Examples

EXAMPLE 1
C:\PS>for ($i = 1; $i -lt 101; $i++ ) {for ($j=0;$j -lt 10000;$j++) {} write-progress -activity "Search in Progress" -status "% Complete:" -percentcomplete $i;}
Description
----------- This command displays the progress of two nested For loops. The first loop counts to 100. For each increment of that loop, the second loop counts to 10,000. The Write-Progress command includes a status bar heading ("activity"), a status line, and the variable $i (the counter in the For loop), which indicates the relative completeness of the task.
EXAMPLE 2
C:\PS>for($i = 1; $i -lt 101; $i++ ) {write-progress -activity Updating -status progress-> -percentcomplete $i -currentOperation OuterLoop} for($i = 1; $i -lt 101; $i++ ) {write-progress -activity Updating -status progress -percentcomplete $i -id 1 -currentOperation InnerLoop} Updating progress -> [oooooooooooooooooo ] OutsideLoop Updating progress [oooooooooooooooooo ] InnerLoop
Description
----------- This example displays the progress of two nested For loops, each of which is represented by a progress bar. The Write-Progress command for the second progress bar includes the Id parameter that distinguishes it from the first progress bar. Without the Id parameter, the progress bars would be superimposed on each other instead of being displayed one below the other.
EXAMPLE 3
C:\PS>$events = get-eventlog -logname system C:\PS> $events | foreach-object -begin {clear-host;$i=0;$out=""} ` -process {if($_.message -like "*bios*") {$out=$out + $_.Message}; $i = $i+1;` write-progress -activity "Searching Events" ` -status "Progress:" -percentcomplete ($i/$events.count*100)} ` -end {$out}
Description
----------- This command displays the progress of a command to find the string "bios" in the System event log. In the first line of the command, the Get-EventLog cmdlet gets the events in the System log and stores them in the $events variable. In the second line, the events are piped to the ForEach-Object cmdlet. Before processing begins, the Clear-Host cmdlet is used to clear the screen, the $i counter variable is set to zero, and the $out output variable is set to the empty string. In the third line, which is the Process script block of the ForEach-Object cmdlet, the cmdlet searches the message property of each incoming object for "bios". If the string is found, the message is added to $out. In the fourth line, the $i counter variable is incremented to record that another event has been examined. The fifth line uses the Write-Progress cmdlet with values for the Activity and Status text fields that create the first and second lines of the progress bar heading, respectively. The PercentComplete parameter value is calculated by dividing the number of events that have been processed ($i) by the total number of events retrieved ($events.count) and then multiplying that result by 100. In the last line, the End parameter of the ForEach-Object cmdlet is used to display the messages that are stored in the $out variable. RELATED LINKS Online version: http://go.microsoft.com/fwlink/?LinkID=113428 Write-Verbose Write-Error Write-Host Write-Debug Write-Output Write-Warning C:\Windows>powershell get-help New-Object -full

Microsoft Windows [Version 10.0.19045.3693]
Copyright (c) 2023 Microsoft Corporation.

ColorConsole [Version 3.7.1000] PowerShell 2.0-Export

Windows 11, 10, 8.1, 8, 7 / Server 2022, 2019, 2016











Windows-10


... Windows 10 FAQ
... Windows 10 How To


Windows 10 How To


... Windows 11 How To
... Windows 10 FAQ



PowerShell: Displays a progress bar within a Windows PowerShell command window.

HTTP: ... PS_Windows/en/Write-Progress.htm
0.093
16211

Use mechanical emergency ejection of DVD / CD drives!

Die Kategorie Dateiverwaltung auf Software OK!

Open, Close, Drive, Eject DVD, USB, CD, BlueRay on Windows 11, 10, ... etc.!

Windows Photos and Pictures convert to single PDF file, easy and fast!

Do not Sleep parameter example!

Mouse tolerance range, 1-10 pixels in Auto Power Options OK!



(0)