Skip to content

Instantly share code, notes, and snippets.

@midnightfreddie
Last active January 8, 2016 05:45
Show Gist options
  • Save midnightfreddie/ce116d72c64f328e5ae8 to your computer and use it in GitHub Desktop.
Save midnightfreddie/ce116d72c64f328e5ae8 to your computer and use it in GitHub Desktop.
1..5 | ForEach-Object {
$out2 = New-Object psobject
$out2 | add-member noteproperty Name "Hi"
$out2 | add-member noteproperty Username "There $_"
$out2 | Format-Table -AutoSize
}
Name Username
---- --------
Hi There 1
Name Username
---- --------
Hi There 2
Name Username
---- --------
Hi There 3
Name Username
---- --------
Hi There 4
Name Username
---- --------
Hi There 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment