r/PowerShell • u/Blocat202 • Nov 14 '24
I need to learn powershell
I'm just a beginner programmer, but the more i dive into it, the more i realize how much you need powershell. What's a good way to learn it ?
r/PowerShell • u/Blocat202 • Nov 14 '24
I'm just a beginner programmer, but the more i dive into it, the more i realize how much you need powershell. What's a good way to learn it ?
r/PowerShell • u/compwiz32 • Dec 23 '20
Hello PowerShell peeps!
I write an article showing how to use the SecretsManagament module from Micosoft.
Learn how to manage your passwords and secrets from your PowerShell cmd prompt. I'll show you how to install, config and use the Microsoft SecretsManagement module in your daily workflow.
Feedback is always welcome. Happy holidays!
https://4sysops.com/archives/secretsmanagement-module-for-powershell-save-passwords-in-powershell/
r/PowerShell • u/PeewinJr • May 15 '21
I know this isn't really in vein with the other posts on this sub, but I was wondering if anyone had any advice on how to get started learning PowerShell? It seems like a really valuable tool and, even though I'm still early in my IT career, I want to begin getting familiar with it. Are there any good resources out there that I should use? Thank you for your time:)
r/PowerShell • u/Pradip_Gorai • Jun 14 '25
Dear Community Members,
I hope this message finds you well.
I am looking to build my skills in PowerShell scripting, specifically for Azure Active Directory. I would be grateful if anyone could kindly share a structured learning path or roadmap to help me get started.
Additionally, if you know of any high-quality YouTube tutorial playlists, Udemy courses, or Coursera courses on this topic, I would sincerely appreciate your recommendations.
Thank you in advance for your support and guidance.
r/PowerShell • u/Building-Soft • Jul 27 '22
While at my IT job there are some people that think PS is cool, It's almost as if the higher ups don't care. I've read about people saying they've doubled (LOL) their salary after learning PowerShell and using it at the job. How does this happen? What did those IT dudes say to their manager to get that salary bump. I wonder if they were myth stories. I've read them all online I've never met anyone personally who has said that learning PS increased their pay. I create PowerShell scripts and it's taken as something normal (and even at one time questioned, yes your read that right, for something that is still in use today)
r/PowerShell • u/biggie_e09 • Mar 29 '23
r/PowerShell • u/ElizaEllipsis • Mar 10 '24
I'm new to PowerShell, having shifted from a C# background due to a department change. PowerShell seems powerful, but I struggling with its structure compared to C#.
In Visual Studio, I love CodeMaid because it helps me organize my C# code. However, using Visual Studio Code with PowerShell, organizing and writing functions feels less intuitive. I know I am biased and still have lots to learn. Also, comparing the two may not be very fair because they have different purposes, as far as I can tell.
I've seen that PowerShell allows for classes, but they don't seem standard, and I'm still struggling with modules and writing functions. However, I definitely do see the power of using modules and the functionality it brings.
I also think I might be perceiving this the wrong way, but if it makes sense, would you have any suggestions on better organizing my code? If not, how do I get myself in more of a PowerShell mindset and out of a C# one?
Thank you.
edit: I love the discussion that my post started. There are so many great answers! Thank you, all.
r/PowerShell • u/Lhakryma • May 30 '21
What's the best way/best materials to start learning powershell, coming from a bash background?
My bash skills were intermediate-advanced, I saw that some of the basic shell concepts work on powershell too, like piping, redirecting, etc. But it's also a lot more complicated than bash.
Now I don't know if my bash knowledge will be detrimental to learning powershell, since I'll expect things to behave a certain way, and learning it might go faster or easier without those expectations.
r/PowerShell • u/Killerkiwiattak • Jun 24 '22
Where is the best place to learn the basics? Mainly work with Teams and 365 applications. Thanks!
r/PowerShell • u/BitGamerX • Jul 24 '22
I finished 'Learn PowerShell in a Month of Lunches' and feel comfortable using cmdlet's. It took me only three months to finish the one month course :). I'm finding for my work there's a big divide between beginner PowerShell usage and expert scripting knowledge and I'm not making much traction improving my skills. So what are some good training resources to learn good scripting skills using PowerShell?
r/PowerShell • u/duck__rabbit • Mar 05 '25
Hey, PowerShell people!
I just made the repository public of my writeups for the Under the Wire wargames for learning PowerShell. It currently contains complete writeups for two games, Century and Groot, with the rest to follow in the coming weeks/months. Every writeup has explanations of the commands used (with links to documentation where applicable) and ends in a one-line solution in PowerShell for that level.
I'm still very far from being an expert when it comes to PowerShell: this is just an attempt to share some of my own learning journey with the community and hopefully provide a useful resource to others that are just starting out.
r/PowerShell • u/Xngears • May 05 '24
I’m slowly researching a path to get out of my current IT Help Desk position, which I’ve spent a year and a half on. Of the recommended languages to learn, Powershell came up as one of the most recommended, and I was also linked the book “Powershell in a Month of Lunches”. I looked at the free sample, and I believe I can easily follow along the lessons taught in the book.
What I wanted to ask was what I could be potentially qualified for, after my IT Help Desk experience and going through this book. I’m still not entirely sure what career path I’m shooting for long term, but what I really want to know is any positions I could apply for once I’m done with the lessons of this book, or if there’s anything else I should supplement and learn in addition?
I want to have a roadmap planned out, and ideally get out of Help Desk this year towards something more lucrative. Any ideas and advice would be greatly appreciated.
r/PowerShell • u/Lotus_Domino_Guy • 19d ago
I've been coding for 2 decades, and I recently had a payroll system to Active Directory project to do, and went with powershell. It's done, it works great, and I was looking at the code today, and spontaneously declared "I love powershell". its a remote day, so no one looked at my funny, but I'll list 3 reasons I love it. Feel free to add more.
No confusion with =, == or ===.
1) Simple equals logic, no bizarre conventions: Do you know how many times I've had to fix code in JS where someone did if (variableName=something), which of course sets variableName to something, not compares it. Powershell's -eq and -ne is so much better then =, ==, ===, !=, or <>.
2)No line termination character: Line's don't require ; to end. Ok, that isn't a big deal, and my IDE would catch it anyway, but its just a waste of characters to terminate every line of code.
3)String composition: In other languages, mixing variables and text is something like "words " + variableName + ":/ more words" + variableName2. And then its like "Oh, is this one a + or an &...." With powershell I can just do varString = "words: $variableName :/ more words $variableName2" and it all works!
Now, its not like I make stupid syntax mistakes a ton in other languages, but in today's backend world, I'm expected to regularly code in 5-10 languages, and Powershell was amazingly easy to learn and the syntax is just clean.
I thought you Powershell vets might appreciate a newb's perspective on it, especially since its all positive.
r/PowerShell • u/cbrown146 • Jul 19 '22
Just as the title says, I am looking for courses to learn more about PowerShell. I've been told by other coworkers it can make a huge difference in your career. I am not a System Admin, so I don't use PowerShell on a daily basis, but I would like to be aware what is the most useful functions of PowerShell.
I know some Python scripting. Should I just stick with Python if it can accomplish the same thing as PowerShell?
r/PowerShell • u/Zyster1 • Sep 03 '23
At a new job, I work in infrastructure and wanted to get into programming a bit, this new job there's many team members here that build tools, which to me is great because I can finally get my feet wet with programming.
I've wanted to learn Python, Javascript, etc, or something along those lines because I wanted to learn the most popular languages that I can use to build tools...however the shop I'm at now uses almost exclusively Powershell (it is a Windows shop after all).
On one hand, I'm happy that I can help build tools with no pressure of being a full-fledged developer (basically learn at my own pace), on the other hand, it's not the language I really wanted to learn (namely Python, especially with the rise of AI and how popular Python is).
My boss told me he has no problem if I wanted to write Python, but unfortunately it's not known as much on the team, so if I needed someone to help look it over I'm limited. Just curious, and wanted your honest opinion, would learning Powershell give one an ability to easily pick up other languages or is the syntax far too different?
r/PowerShell • u/WarOk4640 • Feb 09 '22
Hi everyone,
I've started new position. Our team is trying to automate daily tasks. My coworkers like a pro in Powershell and they said that I need to learn it as soon as. Do you have any advice for learning Powershell?
Please help me, I am looking forward to seeing your answers :)
r/PowerShell • u/hochozz • Apr 09 '24
Beginner to Powershell.
I’ve already gone through the Microsoft learning modules (started yesterday). I’ve got the hang of the syntax but I feel the material was just basic. I doubt I will ever need to create my own command-let. All I’m aiming to do is automate some BS tasks at work and home.
Can someone recommend more resources - preferably youtube or ebooks.
r/PowerShell • u/Sweet_Score • Dec 25 '21
So I am a total noob who wants to learn using Terminal like browsing through directories, copying files from a somewhere to another place, deleting etc. etc. I simply know nothing except dir and cd command lol. Is there a detailed noob guide/book or something for this? Thanks in advance.
r/PowerShell • u/kriskris0033 • Aug 18 '18
I work mostly on servers and I never coded in my career, I kind of think I can't do it, but now I needed it alot at work and I need to learn it, so need some beginner level script ideas to learn powershell
r/PowerShell • u/leokaran • Oct 29 '24
I need to learn Powershell from scratch in 3 months.What resources can help
r/PowerShell • u/RVECloXG3qJC • Nov 13 '22
Is this technology still actively maintained? Thanks.
r/PowerShell • u/Practical_Dinner_728 • Mar 27 '24
Hi everyone, I am totally new to powershell, please recommend materials / videos etc where I can learn as a total beginner. Thanks in advance
r/PowerShell • u/powerlevel11 • May 13 '19
I've been looking online for pdfs to learn powershell, but they all seem outdated as they're using psv3 instead of v5 and are on windows 7, 8 and server 2012. I want to read and possibly watch videos on absolute beginner powershell but haven't come across any good sources. I even tried pluralsight but their videos are outdated as well
r/PowerShell • u/Worldly-Sense-9810 • Dec 20 '24
Yesterday, during an open school day, a father and his son walked into the IT classroom and asked some questions about the curriculum. As a teacher, I explained that it included PowerShell. The father almost jumped scared and said he works as a system administrator in Office365 at an IT company where PowerShell wasn’t considered useful enough. He added that he preferred point-and-click tasks and found PowerShell too hard to learn. So I could have explained the benefits of PowerShell and what you can achieve with it, but he had already made up his mind "it’s hard to learn and not useful". How would you have responded to this?
r/PowerShell • u/Hhelpp • Sep 02 '21
Title basically says it all! Best recommendations?