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, ∼2888🔥, 0💬
Popular Posts:
What is a DSL modem? A DSL modem is a device that is used to interface your computer and the DSL lin...
I'm trying to upload pictures from my Samsung camera and Windows 8 keep saying "Something went wrong...
What are default background services on a Windows 7 Home Premium computer? If you are running a Wind...
What is the scheduled task "\G2MUploadTask-S-1-5-21 -..."on my Windows 7 computer? "\G2MUploadTask-S...
How to remove ssdiag.exe from the startup application list to gain performance and reduce security r...