vote up 8 vote down star
5

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

flag

80% accept rate

9 Answers

vote up 5 vote down check
  • 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.
link|flag
vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
vote up 2 vote down

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|flag
You can find it at %WinDir%\System32\WindowsPowerShell\v1.0\powershell_ise.exe – fatcat1111 Oct 28 at 20:34
vote up 1 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 3 vote down

Free options:

link|flag
vote up 2 vote down

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|flag
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
vote up 0 vote down

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

link|flag
1  
-1 for saying: Try googling – Robert MacLean May 21 at 12:07

Your Answer

Get an OpenID
or

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