Create an array to add objects to

PHOTO EMBED

Wed Nov 30 2022 04:19:22 GMT+0000 (Coordinated Universal Time)

Saved by @Onibus #powershell

[Collections.Generic.List[object]]$people = @()
for ($i=0;$i -le '10';$i++) {
  $output = @{
    name = "Person $i"
    ID = $i
    Phone = "555$i"
  }
  $people.Add( [pscustomobject]$output )
}
$people
content_copyCOPY