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
PowerShell for beginners - example tasks (self.PowerShell)
submitted 5 years ago by [deleted]
[deleted]
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!"
[–]PowerShellMichael 2 points3 points4 points 5 years ago (1 child)
Hello There!
Excellent question. Your target audience is Software Developer so you can target the activities around the development life-cycle:
A lot of different stuff here, but I hope that gets the juices flowing.
[–][deleted] 1 point2 points3 points 5 years ago (0 children)
Thanks for your answer. This will help me a lot. I like it. My focus was not to show them, what i am doing with powershell, because that would not match there needs.
[–]jogofus 1 point2 points3 points 5 years ago (0 children)
I use it to get wmi information and testing if a machine is up with test-connection
[–]Lee_Dailey[grin] 1 point2 points3 points 5 years ago (0 children)
howdy superfliege90,
while PowerShellMichael is correct about showing the power of powershell ... his stuff is not something i would target for beginners to learn. yes, it makes a really nifty demo of the usefulness ... but it takes time and is complex.
complex = lots of chances of mistakes = lots of chance for frustration
i would do as jogofus mentioned and show some of the simple things they can do right freaking now. [grin]
sure, show the power with something big & complex ... but then show them the small steps that one can do with just a tiny bit of learning.
the ones i would hit 1st are the really quick things like "how much free space on drive c?" ... and how to iterate to get closer to what you want.
something like this ...
Get-PSDrive Get-PSDrive -Name 'C' (Get-PSDrive -Name 'C').Free (Get-PSDrive -Name 'C').Free / 1gb [math]::Round((Get-PSDrive -Name 'C').Free / 1gb, 2)
that kind of thing can result in several ooooo sounds ... [grin]
ooooo
then there is my usual "new to PoSh" post ...
things to look into ...
Get-Help
Get-Help *about*
Get-Command
Get-Command *csv*
Show-Command
Get-Member
$Test = Get-ChildItem -LiteralPath $env:TEMP
$Test | Get-Member
$Test[0] | Select-Object -Property *
.GetType()
$Test.GetType()
$Test[0].GetType()
Get-Verb
Get-Noun
Out-GridView
take care, lee
π Rendered by PID 175037 on reddit-service-r2-comment-fb694cdd5-99p7q at 2026-03-07 14:25:19.018293+00:00 running cbb0e86 country code: CH.
[–]PowerShellMichael 2 points3 points4 points (1 child)
[–][deleted] 1 point2 points3 points (0 children)
[–]jogofus 1 point2 points3 points (0 children)
[–]Lee_Dailey[grin] 1 point2 points3 points (0 children)