An array is a collection of objects. PowerShell arrays can be created manually
PS> $a = 1,2,3,4
or
$b = @(1,2,3,4)
PowerShell will also create arrays automatically when needed:
PS> $ps = Get-Process
All three options are arrays:
PS> $a… Read the full text.