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, ∼2512🔥, 0💬
Popular Posts:
Using Columnar as the layout for a form as shown in the previous tutorial is good to enter new recor...
What is "Software Protection" in my Windows 7 service list? And how is "Software Protection" service...
What is "ActiveX Installer (AxInstSV)" in my Windows XP service list? And how is "ActiveX Installer ...
What are default Startup Programs on a Windows 7 Home Premium computer? If you are running a Windows...
How to add comments on slides? I am reviewing someone else's presentation and I want to add some com...