How to Install PowerShell ISE in Windows Server 2008 R2?
PowerShell ISE is a wonderful tool for creating, Debugging, and executing PowerShell scripts. But it doesn't get installed automatically. Here is how to install PowerShell ISE in Windows 2008 R2.
You don't have to download anything to get PowerShell ISE in Windows 2008 R2, Its a Instinct feature but not installed by default.
1. Go to Server Manager >> Features >> Add Features

2. From the features list choose "Windows PowerShell Integrated Scripting Environment"

3. Click Next and Install

Once installed, You can choose "Edit" from PowerShell Script files to launch PowerShell ISE.

you can access the PowerShell ISE by typing "PowerShell_ISE" in Run box even!

Tail:
All these actions can be simply achieved by running these two lines of PowerShell:
You don't have to download anything to get PowerShell ISE in Windows 2008 R2, Its a Instinct feature but not installed by default.
1. Go to Server Manager >> Features >> Add Features

2. From the features list choose "Windows PowerShell Integrated Scripting Environment"

3. Click Next and Install

Once installed, You can choose "Edit" from PowerShell Script files to launch PowerShell ISE.

you can access the PowerShell ISE by typing "PowerShell_ISE" in Run box even!

Tail:
All these actions can be simply achieved by running these two lines of PowerShell:
Import-Module ServerManager Add-Windowsfeature PowerShell-ISE
No comments:
Please Login and comment to get your questions answered!