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".
