-
PowerShell ISE: Not Installed By Default in Windows Server 2008 R2
Posted on February 18th, 2011 9 commentsPowerShell 2 is installed by default in Windows Server 2008 R2. However, the other day I went on to a server with this OS and went to use the PowerShell ISE (which I switched to as my default console a year ago) and found that it wasn’t there:
Turns out that the ISE is not installed by default and needs to be added as a Feature:
This is different to a manual install of PowerShell 2 on Windows 2008 / 2003 where the ISE is included as part of the Windows Management Framework Install.
The reason I hadn’t noticed this earlier was that most of the Windows Server 2008 R2 servers I have been working with recently all had Exchange 2010 installed which seems to include the ISE as part of the installation.
Update 19/02/11:
Thanks to the reminder in the comments from Osin Grehan about the ServerManager module in Windows Server 2008 R2, you can get this feature installed via PowerShell.
Import-Module ServerManager Add-Windowsfeature PowerShell-ISE
8 responses to “PowerShell ISE: Not Installed By Default in Windows Server 2008 R2”

-
How strange, I was only talking to Simon long about this the other day, don’t forget of course that Sapien have a nice portable app for those sites where you are unable to install additional components called PrimalPad…
http://blog.sapien.com/index.php/2010/07/19/back-from-teched-whats-wrong-with-using-notepad/
-
As a matter of interest whey did you move to ISE, I remember you being a big PowerGUI Script editor fan much like myself, am I missing some cool functionality or is this a discussion for the podcast ?!
-
Nice post Jonathan but I think you missed the most obvious path: Using powershell.exe to install ISE
ps> import-module servermanager
ps> add-windowsfeature powershell-iseI found the name of the feature with:
ps> get-windowsfeature *ise*
The servermanager module is actually really, really well written. Worth a podcast in itself.
-Oisin
-
Gnanavel March 14th, 2012 at 12:49
Thanks for the update…
Was looking to install the ISE badly…
got it like GEM
-
Thanks for the help…the import and add worked like a charm.
1 Trackbacks / Pingbacks
-
Tweets that mention Blog:] #PowerShell ISE: Not Installed By Default in Windows Server 2008 R2 -- Topsy.com February 18th, 2011 at 15:23
[...] This post was mentioned on Twitter by MSFT Scripting Guys, jonathanmedd. jonathanmedd said: [Blog:] #PowerShell ISE: Not Installed By Default in Windows Server 2008 R2 http://bit.ly/fSNBRt [...]
Leave a reply
-











Alan Renouf February 18th, 2011 at 13:53