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, ∼2555🔥, 0💬
Popular Posts:
UpdateUI.exe at startup ,how to remove it Actually, you should keep UpdaterUI.exe as a startup, beca...
Where does Mozilla FireFox 2 store cookie files on my computer? Some cookies are stored to your comp...
What are Exploit-ObscuredHtml Trojan Web Pages? If you have McAfee VirusScan installed, sometimes yo...
How to install FireFTP? FireFTP is a Mozilla FireFox 2 add-on that provides FTP client functions on ...
What is the startup program "Alps Pointing Device Driver - Apoint.exe" on my Windows 8 computer? Can...