PowerShell
Microsoft PowerShell
WebSites
- PowerShell.com, The Community for PowerShell People
IDEs para PowerShell
- PowerShell Plus (Comercial)
- PowerGUI (Free)
- PowerShell Analyzer (Free)
- Admin Script Editor (Comercial)
The PowerShell V2 CTP (free, from Microsoft) comes with the "PowerShell ISE," which is probably the only place in the world you'll get proper syntax highlighting. It also supports stepwise debugging and breakpoints.
In the end, I just use a text editor. If I'm building a new script, I usually just hack it out in the console, then save my history by typing:
Get-History -count 1000 | % { $_.CommandLine } | Out-Clipboard
Paste this into the text editor and delete the errors, rework into functions, and so on. It's a good way to get started, anyway.