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, ∼2789🔥, 0💬
Popular Posts:
What is lsass.exe process - LSA Shell (Export Version)? Process lsass.exe is the Local Security Auth...
Why my Windows XP generates a PIN code for Bluetooth connection? If you try to connect to a new Blue...
Can I remove startup application "ssdiag.exe - Diagnostic Traces Sonic Shared Driver Component" to s...
How do I copy customized media information for my files to my new computer? When you add or edit med...
What is the "World Wide Web Publishing Service (W3SVC)" system service on Windows Server 2012? Can I...