8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e783e2 commit a0a59bfCopy full SHA for a0a59bf
Powershell Progress Bar Sample.ps1
@@ -0,0 +1,8 @@
1
+for($I = 1; $I -lt 101; $I++ )
2
+{
3
+ Write-Progress -Activity Updating -Status 'Progress->' -PercentComplete $I -CurrentOperation OuterLoop
4
+ for($j = 1; $j -lt 101; $j++ )
5
+ {
6
+ Write-Progress -Id 1 -Activity Updating -Status 'Progress' -PercentComplete $j -CurrentOperation InnerLoop
7
+ }
8
+}
0 commit comments