Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

powershell while loop

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

while($counter -lt $array.length){
   $array[$counter]
   $counter += 1
}
 
item1
item2
item3
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #powershell #loop
ADD COMMENT
Topic
Name
6+3 =