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)?
feedback
|
|
For learning PowerShell, there are a number of great resources
For IDE style environments, you have PowerShell Analyzer (free) and PowerGUI (free), PowerShell Plus (commercial), PrimalScript (commercial), and Admin Script Editor (commerical). I use PowerShell for everything that I can. Right now, I'm looking at Psake, 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 PSExpect 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. I am also looking to use PowerShell as a scripting engine for a project I am working on. EDIT:
Good luck! | |||||||||||
feedback
|
|
To answer your questions one by one. 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 functionality. The best way to get started is to learn three basic commands and start playing with it. Step 1 - Discover the available commands using Get-Command To find all of the "get" commands, for example, you just type: Get-Command get* To find all of the "set" commands, for example, you just type: Get-Command set* Step 2 - Learn how to use each command using Get-Help To get basic help about the Get-Command commandlet type: Get-Help Get-Command To get more information type: Get-Help Get-Command -full Step 3 - Discover object properties and methods using Get-Member Powershell is an object oriented scripting language. Everything is a fully fledged .Net object with properties and methods. For example to get the properties and methods on the object emitted by the Get-Process commandlet type: Get-Process | Get-Member 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. What am I using it for? Two things:
| ||||
feedback
|
|
There are a number of Powershell tools, eg. PowerGUI - http://powergui.org/index.jspa PowerShell Plus (not free) - http://www.powershellplus.com/ PowerShell in Action is a well regarded book. And the Powershell team has a blog: http://blogs.msdn.com/powershell/ | ||||
feedback
|
|
Count me in with a vote for PowerShell in Action. There are a bunch of blogs out there as well, check out /\/\O\/\/'s blog, The Huddled Masses, and JB's Powershell(sql) as well, they go way back w/ the shell and have gobs of good scripts & snippets to look at. | ||||
|
feedback
|
|
I just found this free ebook, linked from the Windows PowerShell blog: | |||
|
feedback
|
|
Check PowerGUI, a PowerShell GUI and script editor. I don't use it yet, but I saw the sample videos and looks very good. Also, the site mantains a library with sample scripts. Here is another excellent PowerShell reference. | |||
|
feedback
|
|
The Ars Technica tutorial is a bit dated, but very good to get you up-and-running with PowerShell. I would also second the suggestion to check out PowerGUI. | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
I think getting into the habit of automating small tasks is a great way to train yourself in Powershell. For example, writing a throwaway script rather than doing an onerous looking bit of text-processing by hand. It may actually take longer the first few times, but as you get quicker and build up a library of useful snippets that you can chain together you can save yourself a lot of time. | |||
|
feedback
|
|
There are DNRtvs on Powershell and PowerGUI, there are also .Net Rocks! episodes about these tools. | |||
|
feedback
|
|
A chap called Guy Thomas does some good introductions to powershell. | |||
|
feedback
|
|
I would start it on fly. What I mean by on-fly is that just start to work on your real case and search for help on web or this site for help if you don't know what to do. For sure, it will very beneficial if you spend some time to learn some basics first. This is what get on to PS. I have some blog posts on PS, especially 3-serials on a real case I posted recently. Search for davidchuprogramming or go here. Good luck with your PS journey. | ||||
|
feedback
|
|
If you want to find out if your computer has PowerShell version 1 or 2, type the following (the part in italics): PS> $host.version at the Powershell prompt. DO NOT trust the $PSHOME environment variable (i.e. the name of the directory where PowerShell is installed) to actually tell you which version of PowerShell you have! On my Windows 7 box, it's installed to C:\Windows\System32\WindowsPowerShell\v1.0 -- this caused me, quite logically, to assume that I had version 1.0. This led me on a quest to find and install version 2... which did not go well. Microsoft's pages led me around in circles, offering version 2.0 only for Vista and Windows Server 2008, but not Windows 7... because, YOU GUESSED IT, I already had version 2.0, it was just installed in a directory that said "v1.0" Thanks, microsoft. There's an hour and a half of my life I won't be getting back. The only thing to come of it was this comment, which I hope is useful to some other person in my position: very experienced with computers, but still naive enough to expect things to be labeled properly. Entering the command as above ($host.version) informed me that I did, in fact, have version 2 | |||
|
feedback
|
|
With regard to the IDE question: There is a rudimentary IDE which, on my computer at least, is alredy installed with PowerShell. It's labeled "WindowsPowerShell ISE", and lets you do things like have several console sessions and several script files open simultaneously... one set of tabs for the scripts, one set for the console sessions, so you can click back and forth as needed. | |||
|
feedback
|
|
PowerGUI was a big help in and of itself. The intellisense feature sold me on it, then I found some usefull add-ons that were very good. As far as resources: free eBooks: Windows Powershell Cookbook Mastering Powershell Powershell A more in-depth look Introductory Video: http://powergui.org/entry.jspa?externalID=2278&categoryID=361 | |||
|
feedback
|