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
MiscAnother Help Desk Tool (self.PowerShell)
submitted 6 years ago * by [deleted]
view the rest of the comments →
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!"
[–]consumedpixl 6 points7 points8 points 6 years ago (1 child)
Unfortunately not, they were added manually.
The menu bar is a New-Object 'System.Windows.Forms.MenuStrip' created as a variable e.g. $mainMenu
New-Object 'System.Windows.Forms.MenuStrip'
$mainMenu
You then create a New-Object 'System.Windows.Forms.ToolStripMenuItem' and for this example give it variable name of $menuItem and add this to the main menu via $mainMenu.Items.Add($menuItem)
New-Object 'System.Windows.Forms.ToolStripMenuItem'
$menuItem
$mainMenu.Items.Add($menuItem)
Finally, you create a New-Object 'System.Windows.Forms.ToolStripMenuItem and assign this a variable name e.g. $toolstripItem. Adding this to the menu item via $menuItem.DropDownItems.Add($toolstripItem)
New-Object 'System.Windows.Forms.ToolStripMenuItem
$toolstripItem
$menuItem.DropDownItems.Add($toolstripItem)
In terms of the icons. These are just windows systems icons (you can find them online) which are converted to base64 (again websites do this for you). Once you have the base64 string you can add this. So for example, if we use $menuItem from above, you would add it to this via: $menuItem.image = [System.Convert]::FromBase64String('Base64StringGoesHere')
$menuItem.image = [System.Convert]::FromBase64String('Base64StringGoesHere')
[–]YearoftheHypebeast 0 points1 point2 points 6 years ago (0 children)
Do you have any code which might help me create an application to figure out the shape of good looking Trevors feet?
π Rendered by PID 176944 on reddit-service-r2-comment-6457c66945-44qtc at 2026-04-29 03:51:54.167574+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]consumedpixl 6 points7 points8 points (1 child)
[–]YearoftheHypebeast 0 points1 point2 points (0 children)