How to get started with PowerShell? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T06:02:31Zhttp://stackoverflow.com/feeds/question/33559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/33559/how-to-get-started-with-powershell23How to get started with PowerShell?Brad Leach2008-08-28T22:30:54Z2009-08-04T17:16:53Z
<p>I played with one of the early beta's of Powershell V1, but haven't used it since it went "gold". What is the best way to get started using Powershell? Which version of Powershell should I be using (V1.0 vs 2.0 CTP's)? What are you using Powershell for? Are there any tools that make using Powershell easier (i.e. development environments)?</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/33576#3357613Answer by Kevin Dente for How to get started with PowerShell?Kevin Dente2008-08-28T22:42:57Z2008-08-28T22:53:36Z<p>There are a number of Powershell tools, eg.</p>
<p>PowerGUI - <a href="http://powergui.org/index.jspa" rel="nofollow">http://powergui.org/index.jspa</a></p>
<p>PowerShell Plus (not free) - <a href="http://www.powershellplus.com/" rel="nofollow">http://www.powershellplus.com/</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1932394907" rel="nofollow">PowerShell in Action</a> is a well regarded book.</p>
<p>And the Powershell team has a blog:
<a href="http://blogs.msdn.com/powershell/" rel="nofollow">http://blogs.msdn.com/powershell/</a></p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/33582#335822Answer by PabloG for How to get started with PowerShell?PabloG2008-08-28T22:46:34Z2008-08-28T22:46:34Z<p>Check <a href="http://www.powergui.org/index.jspa" rel="nofollow">PowerGUI</a>, a PowerShell GUI and script editor. I don't use it yet, but I saw the sample videos and looks <em>very</em> good. Also, the site mantains a library with sample scripts. </p>
<p><a href="http://www.computerperformance.co.uk/powershell/powershell_service.htm" rel="nofollow">Here</a> is another excellent PowerShell reference.</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/33760#337605Answer by slipsec for How to get started with PowerShell?slipsec2008-08-29T01:31:04Z2008-08-29T02:38:00Z<p>Count me in with a vote for <a href="http://rads.stackoverflow.com/amzn/click/1932394907" rel="nofollow">PowerShell in Action</a>. There are a bunch of blogs out there as well, check out <a href="http://thepowershellguy.com" rel="nofollow">/\/\O\/\/</a>'s blog, <a href="http://huddledmasses.org/" rel="nofollow">The Huddled Masses</a>, and <a href="http://mspowershell.blogspot.com/" rel="nofollow">JB's Powershell</a>(sql) as well, they go way back w/ the shell and have gobs of good scripts & snippets to look at.</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/33797#337970Answer by EHaskins for How to get started with PowerShell?EHaskins2008-08-29T01:51:55Z2008-08-29T01:51:55Z<p>There are <a href="http://www.dnrtv.com" rel="nofollow">DNRtv</a>s on Powershell and PowerGUI, there are also <a href="http://www.dotnetrocks.com" rel="nofollow">.Net Rocks!</a> episodes about these tools.</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/34816#3481621Answer by Steven Murawski for How to get started with PowerShell?Steven Murawski2008-08-29T17:34:28Z2008-08-29T17:34:28Z<p>For learning PowerShell, there are a number of great resources</p>
<ol>
<li>Technet Virtual Labs (<a href="https://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?culture=en-US&EventID=1032314395&EventCategory=3" rel="nofollow">Introduction to Windows PowerShell</a> and <a href="http://msevents.microsoft.com/CUI/EventDetail.aspx?EventID=1032320637&culture=en-us" rel="nofollow">Writing Scripts with Windows PowerShell</a>)</li>
<li>PowerShellCommunity.org - Forums, blogs, script repository</li>
<li>#powershell on irc.freenode.net</li>
<li>PowerShell podcasts - PowerScripting.net and Get-Scripting.blogspot.com</li>
</ol>
<p>For IDE style environments, you have PowerShell Analyzer (free) and PowerGUI (free), PowerShell Plus (commercial), PrimalScript (commercial), and Admin Script Editor (commerical).</p>
<p>I use PowerShell for everything that I can. Right now, I'm looking at <a href="http://codebetter.com/blogs/james.kovacs/archive/2008/06/27/introducing-psake.aspx" rel="nofollow">Psake</a>, a PowerShell based build script environment. I use if for managing my Active Directory, Hyper-V, Twitter, some keyboard automation (hosting PowerShell in a winforms app to grab keystrokes), and a ton of other stuff. Another cool project I have to check out is <a href="http://codeplex.com/psexpect" rel="nofollow">PSExpect</a> for testing. I also use it for database access - monitoring changes made to rows in a database by applications. It is also integrated in to my network monitoring solution. </p>
<p>I am also looking to use PowerShell as a scripting engine for a project I am working on.</p>
<p>If you are just learning PowerShell, I would focus on V1. As you get more comfortable, take a look at the CTP, but too much can change from the CTP to what is actually released as V2 to make that your learning tool. </p>
<p>Good luck!</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/34846#348462Answer by jerhinesmith for How to get started with PowerShell?jerhinesmith2008-08-29T17:46:04Z2008-08-29T17:54:59Z<p>The <a href="http://arstechnica.com/guides/other/msh.ars/2" rel="nofollow">Ars Technica tutorial</a> is a bit dated, but very good to get you up-and-running with PowerShell.</p>
<p>I would also second the suggestion to check out <a href="http://powergui.org/index.jspa" rel="nofollow">PowerGUI</a>.</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/40676#4067611Answer by John Channing for How to get started with PowerShell?John Channing2008-09-02T21:08:55Z2008-09-02T21:08:55Z<p>To answer your questions one by one.</p>
<p>Get v2.0 of the CTP. I have used 1.0 and 2.0 and have not found any stability issues with the later version and it has more <a href="http://blogs.msdn.com/powershell/archive/2007/11/06/what-s-new-in-ctp-of-powershell-2-0.aspx" rel="nofollow">functionality</a>.</p>
<p>The best way to get started is to learn <strong><em>three</em></strong> basic commands and start playing with it. </p>
<p><strong>Step 1 - Discover the available commands using Get-Command</strong></p>
<p>To find all of the "get" commands, for example, you just type:</p>
<p>*Get-Command get**</p>
<p>To find all of the "set" commands, for example, you just type:</p>
<p>*Get-Command set**</p>
<p><strong>Step 2 - Learn how to use each command using Get-Help</strong></p>
<p>To get basic help about the Get-Command commandlet type:</p>
<p>Get-Help Get-Command</p>
<p>To get more information type:</p>
<p>Get-Help Get-Command -full</p>
<p><strong>Step 3 - Discover object properties and methods using Get-Member</strong></p>
<p>Powershell is an object oriented scripting language. Everything is a fully fledged .Net object with properties and methods.</p>
<p>For example to get the properties and methods on the object emitted by the Get-Process commandlet type:</p>
<p>Get-Process | Get-Member</p>
<p>There are a few other concepts that you need to understand like pipes and regular expressions, but those should already be familiar if you have already done some scripting.</p>
<p><strong>What am I using it for?</strong></p>
<p>Two things:</p>
<ol>
<li>Processing log files from a massively distributed grid application. For this it has proven to be incredibly valuable and powerful.</li>
<li>Quick testing of .Net classes.</li>
</ol>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/92615#926150Answer by Tubs for How to get started with PowerShell?Tubs2008-09-18T13:40:46Z2008-09-18T13:40:46Z<p>A chap called Guy Thomas does some good introductions to powershell.</p>
<p><a href="http://computerperformance.co.uk/ezine/" rel="nofollow">http://computerperformance.co.uk/ezine/</a></p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/180936#1809361Answer by Jeffery Hicks for How to get started with PowerShell?Jeffery Hicks2008-10-08T00:21:33Z2008-10-08T00:21:33Z<p>The PowerShell CTP is NOT supported in a production environment and a lot will change between now and the time it ships. I suggest following the many PowerShell blogs (don't forget the PowerScripting podcast). There's no shortage of good books on the topic. If you want to spend a little money, SAPIEN Technologies has some self-paced learning material at www.scriptingoutpost.com. I believe Don Jones has done a series of training videos for CBT Nuggets. You can probably find out more at concentratedtechnology.com.</p>
http://stackoverflow.com/questions/33559/how-to-get-started-with-powershell/1228785#12287851Answer by Jon Sagara for How to get started with PowerShell?Jon Sagara2009-08-04T17:16:53Z2009-08-04T17:16:53Z<p>I just found this free ebook, linked from the Windows PowerShell blog:</p>
<p><a href="http://powershell.com/cs/blogs/ebook/" rel="nofollow">Mastering PowerShell</a></p>