Collections:
Other Resources:
Array in Windows PowerShell Scripts
What is an array in Windows PowerShell scripts?
✍: FYIcenter.com
An array in Windows PowerShell is a simple data structure where
pieces of data are stored in as elements in the structure in an ordered sequence.
In an array, each element can be identified by the sequence index.
You can create an array of objects by listing its elements using the @(...) syntax as shown below:
@(data1,data2,data3,...)
For example, the following script creates an array of String objects and assign it to variable $w:
$w = @("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
"Week Days:"
$w
You can access a member of an array variable using the "[n]" operation, where "n" is the sequence index where the member is located in the array:
$w = @("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
"First day of the week is "+$w[0]
"Last day of the week is "+$w[6]
⇒ Loop Array Elements in Windows PowerShell Scripts
⇐ Execution Loops in Windows PowerShell Scripts
2016-10-29, ∼3017🔥, 0💬
Popular Posts:
Where to find tutorials on managing Windows 8 scheduled tasks? Here is a collection of tutorials on ...
What is "Net.Pipe Listener Adapter" in my Windows 7 service list? And how is "Net.Pipe Listener Adap...
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...
How to remove reader_sl.exe from the startup application list to gain performance and reduce securit...
How to download Mozilla FireFox 2? If you want to try Mozilla FireFox 2, you can follow this tutoria...