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, ∼2421🔥, 0💬
Popular Posts:
What is YInstStarter Class - Download Program Files (DPF)? YInstStarter Class is a Download Program ...
What files are stored in the "C:\Users\<userid >\AppData\Roaming "folder? Can I delete ...
What is "SynTPEnh Caller Service" in my Windows 7 service list? And how is "SynTPEnh Caller Service"...
What is the difference between a Web page and a Single File Web Page? Word 2007 supports 2 Web page ...
How to use sc.exe command to create a new service? If you want to create a new service, you can use ...