Collections:
Other Resources:
Loop Array Elements in Windows PowerShell Scripts
How to loop through all elements in an array in Windows PowerShell scripts?
✍: FYIcenter.com
An array has a special property called "Length", which holds the length of the array
or the number of members in the array.
The "Length" property can help you to loop through all members using a simple "For {...}" loop as shown below:
$w = @("Sun","Mon","Tue","Wed","Thu","Fri","Sat") "There are "+$w.Length+" days in a week:" For ($i=0; $i -lt $w.Length; $i++) { " "+$w[$i] }
You can also the "Foreach (...) {...}" loop to loop through each member in array as show in the following example:
$w = @("Sun","Mon","Tue","Wed","Thu","Fri","Sat") "Week days:" Foreach ($d in $w) { " "+$d }
⇒ Hashtable in Windows PowerShell Scripts
⇐ Array in Windows PowerShell Scripts
2016-10-29, ∼2264🔥, 0💬
Popular Posts:
Can I disable Windows service "HTTP SSL" to speedup my computer? Windows service "HTTP SSL" - This s...
A collection of 12 tutorials on creating, deleting and managing Windows services: What is a Windows ...
the computer detect the microphone plugged in, but it's not working with any App. or Desktop soft we...
Have a windows 8 computer and need to download the Visual C++ Redistributable for visual studio 2012...
How to remove reader_sl.exe from the startup application list to gain performance and reduce securit...