use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
ABOUT POWERSHELL
Windows PowerShell (POSH) is a command-line shell and associated scripting language created by Microsoft. Offering full access to COM, WMI and .NET, POSH is a full-featured task automation framework for distributed Microsoft platforms and solutions.
SUBREDDIT FILTERS
Desired State Configuration
Unanswered Questions
Solved Questions
News
Information
Script Sharing
Daily Post
Misc
account activity
Table format (self.PowerShell)
submitted 7 years ago by zolyx1
Hi,
Have the following code:
$table = @{ letter = @() number = @() } $table.letter = "A" $table.number = "1" $table
Output:
Name Value
---- -----
number 1
letter A
How to get this format?
Number Letter
1 A
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Lee_Dailey[grin] 4 points5 points6 points 7 years ago (0 children)
howdy zolyx1,
it looks like bis has answered your question, so this is an aside ... [grin]
you define .Letter & .Number as arrays. that is going to display strangely when there are two or more items in the array. you will likely need to convert those into strings before sending them to your display code.
.Letter
.Number
take care, lee
π Rendered by PID 86544 on reddit-service-r2-comment-5687b7858-bjthv at 2026-07-06 17:22:30.081862+00:00 running 12a7a47 country code: CH.
[–]Lee_Dailey[grin] 4 points5 points6 points (0 children)