Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to learn PowerShell in my spare time.

I already know a bunch of stuff in that line (Perl, Ruby, Python, bash, cmd.exe) so a tutorial leveraging that would be awesome.

Also, since I am a software developer (C# mainly, but done some C, some C++, some Java etc.) I am looking for something not geared towards the usual "power user", but toward someone who actually enjoys reading (and writing) EBNFs!

Do you know of any such tutorial / introductory reading?

share|improve this question
5  
I don't get the EBNF remark. If you mean that you are looking for something geared towards uber-nerds, then you can just read the reference documentation from A to Z. Tutorials are at the other end of the user-friendliness scale. – Wim Coenen Jan 30 '09 at 19:59
wcoenen - there is also some middle ground. I've seen tutorials for vbscript written for administrators. I guess most PowerShell tutorials will be like that, assuming administrators is it's primary audience... – Daren Thomas Feb 12 '09 at 9:00
5  
Daren Thomas: Can you write a summary of the answers to your question? This is a valuable resource. – Nestor Nov 10 '09 at 4:37
3 years later, but here's a powershell grammar: blogs.msdn.com/b/powershell/archive/2006/05/10/… – Chris S Feb 14 at 20:23

closed as not constructive by gnat, Roman C, chandresh_cool, Spudley, A.H. May 1 at 8:56

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 67 down vote accepted

I liked these two books:

Also, check out these sites:

share|improve this answer
Great answer, this really helped me. – Lucas Apr 12 '09 at 1:35
Thanks, just ordered Payette's book. – Jarrod Dixon Nov 30 '10 at 23:52
You are welcome...it's a good book, it helped me a lot. – aphoria Nov 30 '10 at 23:57
Very good book. I read it based on this answer and learned a lot from it. Thanks! – Kilhoffer Apr 16 '11 at 19:49
@Kilhoffer Great! I think it's cool that a question and answer from two years ago is still getting comments and votes...thank you. – aphoria Apr 17 '11 at 3:11

PowerShell in Action (http://www.manning.com/payette) was written by Bruce Payette, PowerShell's language designer. His book is excellent as it explains why they made a lot of the decisions they did, not just explaining the "what."

My learning experience went thusly: downloaded PowerShell=>read first 5 or so chapters of book=>built script, using book as reference.

If you're considering buying the book direct from Manning, look around for Manning coupons; I vaguely remember there's a 50% off coupon available now.

share|improve this answer

See also Master-PowerShell | With Dr. Tobias Weltner, a "free e-book from the makers of PowerShell Plus", recommended by Jeffrey Snover - note that this book deals with PowerShell v1.

Edit: See also the useful List of Free PowerShell eBooks

share|improve this answer

I'm studying Powershell with this free book and it's the best free book I've ever read.

Mastering-Powershell.pdf

share|improve this answer
Very useful one click access ebook. – Zbigniew Wiadro Oct 18 '12 at 6:15
I have to agree. It has a nice pace to it. Very approachable. – user148298 Nov 2 '12 at 11:50

I'm still learning PowerShell (at a snail's pace) myself, so I can't really offer up a one-stop tutorial. However, I can provide you with collection of links I've been building for the past few months. Be forewarned - I'm a DBA, so some of them have a slant in that direction.

http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx - Microsoft Scripting Center for PowerShell

http://www.mindofroot.com/2008/11/19/mapping-ad-group-relationships-with-powershell/

http://sqlblog.com/blogs/lara_rubbelke/default.aspx - Lara Rubbelke does a lot with SQL SMO and PowerShell

http://blogs.msdn.com/buckwoody/ - Buck Woody has tons of PowerShell stuff, and specifically in November of 2008, after the PASS conference, he posted a great framework: http://blogs.msdn.com/buckwoody/archive/2008/11/21/pass-2008-conference-day-five.aspx

Again - sorry I can't be a little more specific, but maybe this can be a bit of a building block, too.

share|improve this answer

I got started using the tutorial on PowerShell Pro.

My only complaints are:

  • The navigation is hard to use (list of links on the right hand side)
  • There are a few errors and typos throughout. Although if you're an astute reader, you'll notice right away.

The teaching techniques I found useful were when they show how to do a task in both PowerShell and through regular Windows GUI (like MMC) and when they describe real-world uses for some of the scripts or commands.

share|improve this answer

Didnt anyone mention http://www.computerperformance.co.uk/powershell/? I found it pretty comprehensive.

share|improve this answer

Not tutorials, but some things you may want to check/consider: A video on converting C# to PowerShell v2: http://powershell.com/cs/media/p/133.aspx

Some challenges with solutions: http://www.microsoft.com/technet/scriptcenter/funzone/games/default.mspx

You're C# experience will definitely help you to quickly grasp using objects in PowerShell.

share|improve this answer

Your best move might be to try to unlearn some of what you know about shell scripting from the unix world. When I've tried to use PowerShell to do stuff I would normally use unix-like tools to do I've always ended up with really inefficent solutions. I suspect it's because I try to take too much of my *nix ways with me.

Yeah, of course you can't unlearn. But I think PowerShell needs an approach that targets its strengths. The PowerShell Tao. Find a tutorial pointing at that and you should have better success than mine.

share|improve this answer
Are you talking about awk-style extracting of information from text which is typically not necessary in PS, or are there other UNIX habits to unlearn? – Wim Coenen Jan 30 '09 at 19:54
Stuff like that. Unix is very text oriented. I might have been unlucky with my attempts. But everything I tried I could always make it run 100 times faster using Cygwin. – PEZ Jan 30 '09 at 20:45
You must be doing something wrong. PS should be way faster than anything on UNIX if done correctly. PS directly interfaces at the API level. – user148298 Nov 2 '12 at 11:55
Yes, that's sort of what I try to say. – PEZ Nov 3 '12 at 22:35

http://powershell.com/ perhaps, run by a powershell MVP

share|improve this answer

I really like the book, Powershell For Developers, which was written by a software developer who is also a Powershell MVP.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.