vote up 19 vote down star
11

I'm debating whether I should learn PowerShell, or just stick with Cygwin/Perl Scripts/Unix Shell scripts, etc.

The benefit of PowerShell would be that the scripts could be more easily used by teammates that don't have cygwin; however, I don't know if I'd really be writing that many general purpose scripts, or if people would even use them.

Unix scripting is so powerful, does PowerShell come close enough to warrant switching over?

EDIT: Here are some of the specific things (or equivalents) I would be looking for in PowerShell:

  • grep
  • sort
  • uniq
  • Perl (how close does PowerShell come to Perl capabilities?)
  • awk
  • sed
  • file (the command that gives file info)
  • etc.
flag

12 Answers

vote up 57 vote down check

Tools are just tools.
They help or they don't.
You need help or you don't.

If you know Unix and those tools do what you need them to do on Windows - then you are a happy guy and there is no need to lean PowerShell (unless you want to explore).

My original intent was to include a set of Unix tools in Windows and be done with it (a number of us on the team have deep Unix backgrounds and a health dose of respect for that community.) What I found was that this didn't really help much. The reason for that is that awk/grep/sed don't work against COM, WMI, ADSI, the Registry, the cert store, etc etc. In other words, UNIX is an entire ecosystem self-tuned around text files. As such, text processing tools are effectively management tools. Windows is completely different ecosystem self-tuned around APIs and Objects. That's why we invented PowerShell.

What I think you'll find is that there will be lots of occasions when text-processing won't get you what you want on Windows. At that point, you'll want to pick up PowerShell. NOTE - it is not an all or nothing deal. Within PowerShell, you can call out to your Unix tools (and use their text process or PowerShell's text processing). Also you can call PowerShell from your Unix tools and get text.

Again - there is no religion here - our focus is on giving you the tools you need to succeed. That is why we are so passionate about feedback. Let us know where we are falling down on the job or where you don't have a tool you need and we'll put it on the list and get to it. In all honesty, we are digging ourselves out of a 30 year hole so it is going to take a while. That said, if you pick up the beta of WS08/R2 and/or the betas of our server products, I think you'll be shocked at how quickly that hole is getting filled.

With regard to usage - we've had > 3.5 million downloads to date. That does not include the people using it in WS08 because it is included as an optional component and does not need a download. V2 will ship in all versions of Windows. It will be on-by-default for all editions except Server core where it is an optional component. Shortly after W7/WS08 R2 ships, we'll make V2 available on all platforms XP and above. In other words - your investment in learning will be applicable to a very large number of machines/environments.

One last comment. If/when you start to learn PowerShell, I think you'll be pretty happy. Much of the design is heavily influenced by our Unix backgrounds so while we are quite different, you'll pick it up very quickly (after you get over cussing that it isn't Unix :-) ). We know that people have a very limited budget for learning - that is why we are super hard-core about consistency. You are going to learn something and then you'll use it over and over and over again.

Experiment! Enjoy! Engage!

Jeffrey Snover [MSFT] Windows Management Partner Architect

link|flag
@Jeffrey Welcome to StackOverflow! – Steven Murawski Feb 22 at 6:07
Thanks for your answer. I think I'm going to go ahead and learn PowerShell. It looks powerful from what I've seen so far, and I'll be able to write more useful scripts with it at work. – Andy White Feb 23 at 0:20
You might want to start with the CTP3 of PowerShell V2. It is very stable and we've added some awesome stuff to it. As you encounter questions - ask them here - it will generate a good body of searchable knowledge. – Jeffrey Snover - MSFT Feb 23 at 4:26
@Jeffrey Great to see you on SO! Keep up with the great work on PoSh; I'm a huge fan! – alastairs Feb 28 at 0:11
I'm about to pick up PowerShell for the first time. I've actually read some pretty promising things from MSFT designers, developers, etc, which lead me not to get caught up in all the MSFT is evil mantra from around wherever. I enjoyed the smiley on "after you get over cussing that it isn't Unix." I really see a trend in Microsoft paying more attention to people's needs, across the board, and I'm glad to hear that this is one motivation of Powershell as well. I'll be happy to assess how this fits in my toolbox. – mpbloch Jun 25 at 13:33
vote up 20 vote down

grep

Select-String cmdlet and -match operators work with regexes. Also you can directly make use of .NET's regex support for more advanced functionality.

sort

Sort-Object is more powerful (than I remember *nix's sort). Allowing multi-level sorting on arbitrary expressions. Here PSH's maintainance of underlying type helps; e.g. a DateTime property will be sorted as a DateTime withou having to ensure formatting into a sortable format.

uniq

Select-Object -Unique

Perl (how close does PowerShell come to Perl capabilities?)

In terms of Perl's breadth of domain specific support libraries: nowhere close (yet).

For general programming, PSH is certainly more cohesive and consistent, and easier to extend. The one gap for text munging is something equivalent to perl's .. operator.

awk

It has been long enough since using awk (must be >18 years, since later I just used perl), so can't really comment.

sed

[See above]

file (the command that gives file info)

PSH's strength here isn't so much of what it can do with filesystem objects (and it gets full information here, dir returns FileInfo or FolderInfo objects as appropriate) is that is the whole provider model.

You can treat the registry, certificate store, SQL Server, IE's RSS cache etc. as an object space navigable by the same cmdlets as the filesystem.


PSH is definitely the way forward on Windows. MS have made it part of their requirements for future non-home products. Hence rich support in Exchange, support in SQL Server, this is only going to expand.

A recent example of this is the TFS PowerToys. Many TFS client operations are done without having to startup tf.exe each time (which requires a new TFS server connection etc.) and is notably easier to then further process the data. As well as allowing wide access to the whole TFS client API to a greater detail than exposed in either Team Explorer of TF.exe.

link|flag
The thing is that the provider model is interesting only because the OS doesn't use text as its universal config medium, so you NEED these providers. With UNIX most languages have APIs to touch PAM, hosts, and packages, but ultimately text will always be there. – Daishiman Feb 21 at 23:44
Text is not always the best format for everything (start with databases and raster images). But I think we can agree to disagree rather than open format wars. – Richard Feb 22 at 0:06
vote up 13 vote down

I have used a bit of Powershell for script automation. While it is very nice that the enviroment seems to have been thought out much more than Unix shells, in practice the use of objects instead of text streams is much more clunky, and a lot of the Unix facilities that have been developed in the last 30 years are still missing.

Cygwin is still my scripting environment of choice for Windows hosts. It certainly beats the alternatives in terms of getting things done.

link|flag
I agree about using .NET objects rather than text streams. Using plain text is just so powerful, and makes command chaining so easy – Andy White Feb 21 at 21:06
Using objects is a paradigm shift and takes some getting used to. But avoids the whole re-parsing at each step where structured data is involved (e.g. no need to ensure fields are delimited). – Richard Feb 21 at 21:22
@Andy White @Daishiman, I can understand where there is a learning curve with PowerShell, but piping objects can be much more flexible than piping text. @Richard is correct. :) – Steven Murawski Feb 21 at 22:28
2  
Auto makers had a hard time arguing with 1000+ years of horses too. I'm not trying to be flippant. Just pointing out that past success does not remove the potential benefit of innovation. – EBGreen Feb 21 at 23:04
2  
@Daishiman - I understand. In practice people have found this not to be a problem but rather a huge advantage. That said, I can see that if you were an expert text parser, this would be a new skill to learn and it might feel unneeded and awkward at first. Again - whatever helps is the right tool. – Jeffrey Snover - MSFT Feb 22 at 1:21
show 9 more comments
vote up 7 vote down

If you like Shell-Scripting you will love PowerShell!

Start here: A guided tour of the Microsoft Command Shell (Ars Technica)

link|flag
I'm not sure about your conclusion - but the article looks useful. Thanks. – Jonathan Leffler Feb 21 at 21:47
I don't see how that follows at all. I like shell scripting because it's free, and runs on all my computers. As Stroustrup said, "It will take a lot to persuade me that the world needs yet another proprietary language...especially [one]...closely integrated with a specific proprietary OS". – Ken Feb 21 at 21:51
vote up 4 vote down

I am not a very experienced PowerShell user by any means, but the little bit of it that I was exposed to impressed me a great deal. You can chain the built-in cmdlets together to do just about anything that you could do at a Unix prompt, and there's some additional goodness for doing things like exporting to CSV, HTML tables, and for more in-depth sys-admin types of jobs. And if you really needed something like sed, there's always UnixUtils or GnuWin32, which you could integrate with Powershell fairly easily.

As a longtime Unix user, I did however have a bit of trouble getting used to the command naming scheme, and I certainly would have benefitted more from it if I knew more .NET.

So essentially, I say it's well worth learning it if the Windows-only-ness of it doesn't pose a problem.

link|flag
1  
There is an open source project "Pash" that lets you run PowerShell on other platforms via Mono. tinyurl.com/6dyoso – John D. Cook Feb 21 at 20:46
Whoa! Thanks for the tip; I can't wait to give it a try – yalestar Feb 21 at 22:29
vote up 3 vote down

I haven't seen that the Powershell has really taken off, at least not yet. So it might not be worth the effort of learning it unless those others on your team already know it.

For your predicament you might be better off with a scripting language that others could get behind, Perl like you mentioned, or others like Ruby or Python.

I think a lot of it depends on what you need to do. Personally I've been using Python for my own personal scripts, but I know when I start writing something that I'll never be able to pass it on - so I try not to do anything too revolutionary.

link|flag
vote up 2 vote down

When you compare PowerShell to the combination Cygwin/Perl/Shell, be aware that PowerShell only represents the "Shell" part of that combination.

You can however invoke any command from PowerShell just as you do from cmd.exe or Cygwin. It does not re-implement the specified functions, and it is certainly not comparable to Perl.

It's "just" a shell, but it makes programming easier providing a comfortable interface to the .Net universe.

Also keep in mind that PowerShell requires WinXP, Srv2003 or higher, which may pose a problem depending on your IT infrastructure.

Update:

I had no idea what kind of philosophical debate my answer would spark.

I posted my answer in the context of the question: Compare PowerShell to Cygwin and Perl and bash.

PowerShell is a shell, as it makes no syntactic difference between built-in commands, commandlets, user functions, and external commands (.exe, .bat, .cmd). Only invoking .Net methods differ by adding a namespace or an object in the call.

Its programmability derives from .Net framework, not from anything specific to the PowerShell "language".

I'd say I believe PowerShell is a "scripting language" as soon as Bugzilla or MediaWiki are implemented as PowerShell scripts running on a web server ;)

Until then, enjoy the comparisons.

link|flag
Yeah, I guess when I'm talking about Unix "shell" I'm also referring to all the normal utilities that come with Unix, such as grep, awk, etc. I'm just wondering if PowerShell offers similar utilities out-of-the-box. – Andy White Feb 21 at 20:06
Powershell is not "just a shell". It is a scripting language. I wonder in what way it is not comparable to perl? I admit that it isn't as mature, but beyond that I don't see the disparity. – EBGreen Feb 21 at 23:11
@EBGreen, What exactly do you mean with this comment? I agree that any shell or scripting language is inherently similar, but I was wondering more about the specific capabilities of PowerShell vs. bash/perl/other unix shells/scripting languages. – Andy White Feb 21 at 23:33
Powershell has an incredibly wide range of functions. It is - A interactive, composable shell - A rich interactive scripting language - A programming language It has a rich set of OO & tesxt utility functions (i.e. equivalents to grep/awk/etc) as well. – Jeffrey Snover - MSFT Feb 22 at 0:28
@Andy - I understood Devio to say that powershell is not as powerful as Perl. I don't believe that is true and I just wondered why he thought that was the case. – EBGreen Feb 22 at 4:15
vote up 1 vote down

If development speed is an issue, I would suggest you postpone learning PowerShell until time allows it. The thing is, you'll spend the first few months trying to write Perl in it ( been there, with other languages ).

link|flag
vote up 0 vote down

PowerShell is very powerful, more powerful than the standard built-ins of the Unix shells (but only because it includes much of the functionality usually shelled out to subprograms). Also, consider that you can write applets in any .NET language, including IronPython, IronRuby, PerlNet, etc.. or you can simply call your cygwin commands from PowerShell, ignoring all the extra functionality and it will work similarly to bash, korn, or whatever...

link|flag
vote up -1 vote down

I found PowerShell programming to be not worth the effort. I have several years of experience with shell scripting under Unix, but I found it enormously difficult to do much of anything with PowerShell. It seems like many functions require you to interrogate the Windows Management Interface and issue SQL-like commands to get the information you need. For example, I wanted to write a script to remove all files with a specific suffix from a directory tree. Under Unix, this would be a simple "find . -name *.xyz -exec rm {} \;" After a couple of hours dicking around with Scripting.FileSystemObject and WScript.Shell and issuing "SELECT * FROM Win32_ShortcutFile WHERE Drive = '" & drive & "' AND Path = '" & searchFolder & "'", I finally gave up and settled for Windows Explorer's "Search" command and just do it manually. There's probably some way to do what I wanted, but I didn't see anything obvious and all the examples on the MSDN site were so trivial as to be worthless.

EDIT Heh, of course as soon as I wrote this I poked around some more and found what I had been missing: the -recurse option to the remove-item command is faulty (revealed if you use "get-help remove-item -detailed"). I had been trying "remove-item -filter '* .xyz' -recurse" and it wasn't working, so I gave up on it. Turns out you need to use "get-childitem -filter '*.xyz' -recurse | remove-item".

link|flag
1  
I think you're confusing Windows Scripting Host (WSH) with PowerShell. They're totally different. – Mystere Man Feb 22 at 3:05
1  
As an example, if you want to delete all the files that end in .TMN you can issue this command get-childitem c:\ -include .TMN -recurse | foreach ($) {remove-item $_.fullname} – Mystere Man Feb 22 at 3:10
vote up -1 vote down

Powershell is absolutely USELESS unless you know the .Net object hierarchy. Unix on the other hand builds on simple and powerful concepts.

Powershell tries to mimic UNIX but fails miserably.

It may be a valuable skill in windows automation space, so if that is your cup of tea, then definitely learn it. Also, windows fanbois get all wet and misty over simple stuff like pipelining so you'll have no problem impressing the hell out of them with trivial things.

easy to please.

link|flag
"Treat everything like a file" is an API just as much as .NET is an API. One could similarly argue that Unix's text prowess is useless -- to borrow your term -- unless you know where to find all the "special" files (e.g. /proc/self/status) that need to be parsed in the first place. If that kind of info happens to feel more familiar, fine. No need to bash [heh] the other approach just because it's unfamiliar. – Richard Berg Sep 16 at 2:11
vote up -8 vote down

Why would anyone want to use a proprietary tool from a software company that has a long tradition of being willing to screw over their customers and developer base if it gives them a chance to screw over their competitors?

You don't have to learn all those Unix utilities. Perl was initially written to replace all of them. if like me you abhor Perl, Python and Ruby kept up the tradition.

link|flag

Your Answer

Get an OpenID
or

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