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, 1834🔥, 0💬
Popular Posts:
Can I remove startup application "YahooMessenger.exe - Yahoo Instant Messenger" to speedup my comput...
What is "BitLocker Drive Encryption Service" in my Windows XP service list? And how is "BitLocker Dr...
How to set up Internet Explorer 8, or IE 8? After downloading Internet Explorer 8. or IE 8, you shou...
What is the "Security Accounts Manager (SamSs)" system service on Windows Server 2008? Can I disable...
What is "Visual Studio Standard Collector Service 150" in my Windows 7 service list? And how is "Vis...