up vote 70 down vote favorite
39
share [g+] share [fb]

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.
link|improve this question

1  
I wouldn't say that, I was interested in picking up Powershell, found this page, and now I know the general differences between PS and the shell scripting I'm used to. – BasedAsFunk Jul 16 '11 at 16:58
feedback

13 Answers

up vote 164 down vote accepted

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 learn 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 healthy 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 a 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 Windows Server 2008 /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 Windows Server 2008 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 Windows 7/Windows Server 2008 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|improve this answer
1  
@Jeffrey Welcome to StackOverflow! – Steven Murawski Feb 22 '09 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 '09 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 '09 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 '09 at 0:11
4  
@Jeffrey: is there a chance for a better terminal for Windows? Powershell is a powerful scripting language, but the fact it runs in cmd.exe makes it much more convenient in the interactive mode – sumek Jul 7 '10 at 10:23
show 3 more comments
feedback

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|improve this answer
1  
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 '09 at 23:44
2  
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 '09 at 0:06
feedback

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|improve this answer
8  
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 '09 at 21:22
6  
@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 '09 at 22:28
8  
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 '09 at 23:04
4  
@daishiman - The benefit of Objects is that when you want a property, you ask for it - you don't have to parse,guess,cast. I did not understand your point about "what happens when objects don't have compatible methods" - Could you say that another way or give an example of the problem? Thanks. – Jeffrey Snover - MSFT Feb 22 '09 at 0:33
6  
@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 '09 at 1:21
show 10 more comments
feedback

As someone who's career focused on Windows enterprise development from 1997 - 2010 the obvious answer would be Powershell for all the good reasons given above (e.g. It is part of MS' enterprise strategy; it integrates well with Windows/COM/.NET; and using objects instead of files provides for a "richer" coding model). For that reason I'd been using and promoting Powershell for the last 2 years or so, with the express belief I was following the "Word of Bill."

However, as a pragmatist I'm no longer sure Powershell is such a great answer. While it's an excellent Windows tool and provides a much needed step towards filling the historic hole that is the Window command line, as we all watch MS' grip on consumer computing slip it seems increasingly likely that MS has a massive battle ahead to keep it's OS as important to the enterprise of the future.

Indeed, given I find my work is increasingly in heterogeneous environments, I'm finding it much more useful to use bash scripts at the moment, as they not only work on Linux, Solaris and Mac OS X, but they also work—with the help of Cygwin—on Windows.

So if you buy into the belief that the future of the OS is commoditized rather than a monopolized, then it seems to make sense to opt for an agile development tool strategy that keeps away from proprietary tools where feasible. If however you see your future being dominated by all-that-is-Redmond then go for Powershell.

link|improve this answer
feedback

If you like Shell-Scripting you will love PowerShell!

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

link|improve this answer
I'm not sure about your conclusion - but the article looks useful. Thanks. – Jonathan Leffler Feb 21 '09 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 '09 at 21:51
2  
I love shell scripting and I tolerate PowerShell. It's commands and syntax are atrocious. Horribly long commands and options without any useful command completion. Or if there is I haven't found it. Too many features crammed into single commands that should be separated out. Weird variable and escape syntax only a DOS batch programmer could love. – Zan Lynx Jun 24 '10 at 5:32
@Zan Lynx - You are right about not having found stuff. All commands have aliases, and many of them match both DOS and UNIX commands ( ps, dir, rm, ls, kill, history, man, cat, clear etc.) The names are long so that they have a meaningful name. Great for scripts -it helps when a new person has to use and maintain it. There is tab expansion for cmdlets, functions, variable, path, parameters etc. Much of the syntax is from Unix shells and what escape syntax are you talking about? `` is not used for escape since it is the path separator in Windows. – manojlds Aug 24 '11 at 4:49
write-output "this is a ""test""". Really, double the character to get two of them. But to output a string without interpreting a variable you use a back-tick. Lack of consistency? Yes. Hard to remember? Yes. Sometimes you have to use a -LiteralPath argument. – Zan Lynx Aug 24 '11 at 5:32
show 4 more comments
feedback

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|improve this answer
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 '09 at 20:46
Whoa! Thanks for the tip; I can't wait to give it a try – yalestar Feb 21 '09 at 22:29
feedback

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|improve this answer
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 '09 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 '09 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 '09 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 '09 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 '09 at 4:15
show 1 more comment
feedback

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|improve this answer
feedback

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|improve this answer
I think you may be missing the design goals of Unix shells. Not knocking PowerShell (would like to learn more myself) but you need to understand Unix tooling to make a statement like that. – Xepoch Jan 7 '11 at 17:24
1  
@Xepoch - No, I think you're missing the design goals of PowerShell. PowerShell can do everything the Unix shells can do in the same way that they do it. However, the real power comes when you utilize PS's object piping system rather than just parsing text output. So, PowerShell can do exactly what bash or korn can do, but they can't do what PowerShell can do. – Mystere Man Jan 7 '11 at 17:31
1  
I simply don't know PowerShell enough to give you a critique thereon, but as you clearly know the goals of the Unix shells are not necessarily a fully comprehensive replacement of external tooling, rather the control structures around it. Again I cannot at this time compare nor contrast but elevating PowerShell because it has more built-ins is not necessarily the boon of the Unix shells. – Xepoch Jan 7 '11 at 18:07
@Xepoch - The point is, you can choose which way you want to do it. You can use all the goodness of the built-in shell, or you can ignore and do it the way Unix does it. It's your choice. And choice is good, right? – Mystere Man Jan 7 '11 at 18:08
feedback

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|improve this answer
feedback

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|improve this answer
2  
I think you're confusing Windows Scripting Host (WSH) with PowerShell. They're totally different. – Mystere Man Feb 22 '09 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 '09 at 3:10
@Mystere: I tried this, and it didn't seem to work. After some futzing about, it seems that *.tmn is what you need (instead of just .tmn) – redtuna Jun 23 '10 at 20:47
feedback

The PowerShell console window, which is what most people think of as PowerShell, cannot compare to a Unix shell like bash or ksh.

  • Where is the searchable command history?
  • Where are the keyboard shortcuts for command editing (back/forward word, kill word/line, paste, i-search)?
  • Where's the command option tab completion?
  • Why is the default pager some awful 1980's version of more without being able to page backward or do /regex searches?
link|improve this answer
3  
"Where is the searchable command history?" - F7 "Where's the command option tab completion?" - <Tab> works for commands, paths with wild cards, commandlets, their arguments, variables and object properties. And PowerShell is not just a console window =) – Rorick Jun 28 '10 at 13:31
@Rorick: <Tab> does not seem to complete dash options for me. Did you change a setting somewhere? I get file name and command completion but no feedback on available options. Oh yeah, that's another one, it does not list the available completions, it just makes you guess. – Zan Lynx Jun 28 '10 at 18:23
1  
No. Try echo -<TAB> for instance. It will iterate through available options on every consequent <TAB> press. Well, I admit that bash way of completion and editing is more rich and convenient. But the power of PS is in language itself and in integration with .NET. And it is native scripting solution for Windows unlike, say, Cygwin. There you must deal with paths inconsistencies between win and unix and a kind of bash craziness like p$(printf "%02d" $((10#${number:1} + 1))). – Rorick Jun 30 '10 at 8:21
-1 I like both powershell and bash but that statement is incorrect. +1 to Rorick for clearing that up. – Terrance Mar 1 '11 at 14:53
For the three first questions there are natives and powerful solutions. For the fourth just use [gnuwin32.sourceforge.net/packages/less.htm](less.exe) for windows – Ps1CsCpp Jan 10 at 16:29
show 1 more comment
feedback

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|improve this answer
1  
Well, sometimes you are just stuck with windows. Powershell remoting is much nicer than ssh + cygwin IMHO. – Nathan Lee Jan 28 '11 at 0:44
1  
Pointless bashing of someone detracts from the point. Ad-Hominem attacks are fallacious. – Vaibhav Garg Jul 25 '11 at 5:53
feedback

Your Answer

 
or
required, but never shown

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