Last active
January 8, 2016 05:45
-
-
Save midnightfreddie/ce116d72c64f328e5ae8 to your computer and use it in GitHub Desktop.
Testing situation claimed in https://www.reddit.com/r/PowerShell/comments/3zylk6/help_with_psobject_table/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1..5 | ForEach-Object { | |
$out2 = New-Object psobject | |
$out2 | add-member noteproperty Name "Hi" | |
$out2 | add-member noteproperty Username "There $_" | |
$out2 | Format-Table -AutoSize | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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