How To Create an Array Of Objects In PowerShell?
Creating an array of objects in PowerShell is easy, and in this blog post, I will guide you through how to create an array of objects in PowerShell and how to manipulate the PowerShell array of objects. To create an array of objects in PowerShell, you can use a command like $myArray = @([pscustomobject]@{Property1=’Value1′; Property2=’Value2′}, [pscustomobject]@{Property1=’Value3′; … Read more