![]() |
I AM THE FUNNY!!! |
---|
And just a very simple script on showing a loop. This one will loop 60 times as it is set to complete when $a is less than 60. The full list of comparison operators are here.
$a = 0 Do{ $a++ Write-host "Starting Loop $a" }While($a -lt 60)