The past few days at work I’ve been working on a Windows Server 2008 R2 Server Core server. The coolest addition to Windows Server 2008 R2 Server Core is the ability to install PowerShell as a feature. Once I installed PowerShell, I was able to do all the administration on the box without having to use the native commands that are included with Server Core.
Before you install PowerShell you can view the available features on the server by running the following command:
Dism /online /get-features /format:table
Before you install PowerShell you have to install the .NET Framework 2.0 using the following command:
Dism /online /enable-feature /featurename:NetFx2-ServerCore
Now you can install PowerShell using the following command:
Dism /online /enablefeature /featurename:MicrosoftWindowsPowerShell
There are also two modules included with Server Core R2 that you can install. The modules are ServerManager and BestPractices. Use the following commands to install the modules:
Dism /online /enable-feature /featurename:ServerManager-PSH-Cmdlets
Dism /online /enable-feature /featurename:BestPractices-PSH-Cmdlets
To start PowerShell use the following command:
c:\windows\system32\WindowsPowerShell\v1.0\powershell.exe
Now that PowerShell is installed and running, I renamed the computer using the following command:
$comp=Get-WMIObject –class win32_ComputerSystem
$comp.Rename(“NewName”)
I also want PowerShell to start automatically when I start the server. I will use the following command to add a key in the registry for PowerShell to start automatically:
New-ItemProperty –Path “HKLM:\Software\Microsoft\Windows\CurrentVersion\Run” –Name “PowerShell” –Value “C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe”
If you need to install any roles or features, you can use the Server Manager module. First you need to load the module using the following command:
Import-Module ServerManager
This module includes the following three cmdlets:
- Get-WindowsFeature
- Add-WindowsFeature
- Remove-WindowsFeature
Get-WindowsFeature provides you with a list of features and roles that are available on the server. If you want to view just the roles or features that are installed you can use the following command:
Get-WindowsFeature | Where {$_.installed –eq $true}
Add-WindowsFeature allows you to install a feature or role on the server. For example, to install the Hyper-V role:
Add-WindowsFeature Hyper-V
Remove-WindowsFeature allows you to remove any roles or features you currently have installed.
Remove-WindowsFeature Hyper-V
