Powershell - While Loop



The following scripts demonstrates the while loop.

> $array = @("item1", "item2", "item3")
$counter = 0;

while($counter -lt $array.length){
   $array[$counter]
   $counter += 1
}
 
item1
item2
item3
powershell_looping.htm
Advertisements