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, ∼2737🔥, 0💬
Popular Posts:
What is "Remote Access Connection Manager" in my Windows XP service list? And how is "Remote Access ...
Where to find information about what services are running on Windows 7 and how to manage them? I wan...
Upgraded to Windows 10 from 7. Apparently users can no longer selectively choose which updates to in...
Daylight saving time has been changed since March 2007 in US, Canada and Mexico. How do I update my ...
What is the scheduled task "\OneDrive Standalone Update Task-S-1-..." on my Windows 7 computer? "\On...