What are the different IDE's for PowerShell? Which is the best?

link|improve this question

73% accept rate
6  
Good question... Have you used the built-in ISE in PowerShell 2.0? If so, do you think you'd still accept the answer from Harl9000? – Peter Walke Dec 24 '09 at 3:37
5  
The question has 50 up votes and it was closed as "not constructive." I see this often. There seems to me to be some disjoint between the vision of site's authors and admin vs. the general user group community. – Chad Dec 10 '11 at 20:13
1  
..and 24,000 views and asked by a member with a 5K points. – Chad Dec 10 '11 at 20:19
feedback

closed as not constructive by Robert Harvey Sep 3 '11 at 21:37

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

12 Answers

up vote 48 down vote accepted
  • Powershell Plus - Commercial "ISE" (integrated script environment) with emphasis on the conosle, rather than the editor. My current favorite.
  • PowerGUI - Freeware MMC-like host for PowerShell code which also has the best free Posh editor alongside.
  • SAPIEN PrimalScript - Very capable commercial multi-lang editor which has some great powershell features
  • PowerShell Analyzer - One of the first PowerShell IDEs. Now free.
  • Admin Script Editor - An visual IDE in every sense of the word. Has a visual studio-like forms editor. commercial.
  • PowerWF Studio - Commercial PowerShell editor, compiler, & orchestration (via Windows Workflow)
link|improve this answer
feedback

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.

link|improve this answer
9  
You can find it at %WinDir%\System32\WindowsPowerShell\v1.0\powershell_ise.exe – fatcat1111 Oct 28 '09 at 20:34
I second this recommendation. The PowerShell ISE is really fantastic, actually, and totally free.It includes its own console with separate output window, as well as a code editor. Apparently you can even debug scripts, though I haven't yet. – Nick Knowlson Apr 15 '11 at 18:55
feedback

Free options:

link|improve this answer
PowerShell Analyzer is only compatible with Powershell 1.0, but the latest version of the editor in PowerGUI works with Powershell 2.0. Highly recommend PowerGUI, and the Pro version even adds source control for your scripts. – Greg Bray Feb 18 '10 at 21:07
feedback

For what it's worth, I do most of my powershell work in gvim.

link|improve this answer
feedback

The Zeus IDE has syntax highlight and code folding for PowerShell. It can also be configured to provide keyword help for information contained in the MSDN.

alt text

link|improve this answer
feedback

I've used PowerGUI (powergui.org) and it's pretty slick. I think there's another IDE out there.

link|improve this answer
1  
-1 for saying: Try googling – Robert MacLean May 21 '09 at 12:07
2  
would have given him +1 if he'd used l m g t f y.com instead – mxmissile Feb 16 '10 at 23:10
Keeps crashing for me when executing badly formed code (part of learning). Too annoying – user53791 Aug 22 '10 at 4:37
feedback

You should also check out our product PowerWF Studio. It's windows workflow & powershell combined, which allows you to orchestrate powershell. The product includes a complete ISE-type debugger and editor. Plus ability to create applications, cmdlets, scheduling agent, and system center management pack.

link|improve this answer
1  
your product certainly sounds interesting, +1 for making me aware of it. I've fixed a typo in the link (404 before ;) and disclosed your product affiliation as per the respective policy; please check out the other answers there as well, which provide good guidelines on how to sensibly/honestly promote your own product. – Steffen Opel Oct 3 '10 at 11:23
feedback

If you don't mind using a commercial tool, PowerShellPlus Professional(http://www.idera.com/Products/PowerShell/) is probably the best you can get right now. It features an interactive console, an advanced script editor with debugger and a fantastic learning center. The learning center itself is a good enough reason to use PowerShellPlus Professional.

link|improve this answer
I second the vote for PowerShell Plus. – Steven Murawski Oct 5 '08 at 16:25
I give a third vote for PowerShell Plus. – Mark Schill Oct 6 '08 at 1:44
1  
Would love to try it out but aint giving all this information just to download (not because of privacy just boycotting friction), these lengthy forms remind me of the early days, its just a freakin IDE. – user53791 Aug 22 '10 at 4:36
feedback

PowerShell SE which is based on PowerShell ISE WPF control.

link|improve this answer
feedback

SAPIEN's PrimalScript has a lot to offer not only for PowerShell but other languages as well. It has snippets, sample scripts, a debugger, a script packager (that supports PoweShell), a database browser and a lot more. You'll need at least the Professional edition to get Powershell support. You can download a 45 day eval copy at primalscript.com.

link|improve this answer
feedback

I use notepad today. The other tools I've used have been too annoying & too slow to be worth the benefit. I plan to use Graphical PowerShell when v2 is released.

link|improve this answer
feedback

My company, which also makes PowerWF, just released the PowerWF's script editor as a stand-alone product called PowerSE. PowerSE has IntelliSence for PowerShell, DotNet, and WMI; break points, an embedded host, automatic script generation, and many other features.

link|improve this answer
PowerSE just became freeware today! – xcud Aug 10 '11 at 22:03
feedback

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