With release of Windows Server 2008, Micrsoft Windows team made some major improvements to overall architecture to make Windows operating system more stable, secure and reliable. Keeping the Windows 2003 tradition alive, Microsoft ships Windows 2008 in four versions – Web Server, Standard, Enterprise and Datacenter. But one major feature addition to 2008 is the ability to do the minimal installation of Windows 2008 without any graphical utilities which most of the admins don’t need. This feature is known as “Server Core” and its basically provides a minimal environment for running a specific server role. Admins can select to perform Server Core installation during the Windows 2008 installation. The result will be a stripped down installation of Windows without any traditional components installed such as desktop shell, GUI, Windows Explorer, IE and other MMC which otherwise get installed while doing full installation. With Server Core installation, all the management and configuration tasks will be performed using command line utilities.
You must be thinking, why would someone use the Server Core installation? Everything to be configured from command line…. that sounds like going back to era of DOS? Well, there are multiple advantages when using Server Core:
- Reduced maintenance
- Reduced attack surface
- Reduced management
- Less disk space required for installation as footprint is very small
Initial Configuration using Command Line
- Press Ctrl+Alt+Del keys.
- Select Start Task Manager.
- On the Windows Task Manager screen, select File and then New Task (Run) option.
- In the Create New Task dialog box, type cmd.exe, and then click OK button.
Changing the computer name
1 |
netdom renamecomputer %computername% /newname:<NewComputerName> |
1 |
netdom renamecomputer %computername% /newname:servercore |
Configuring network settings
1 |
netsh interface ipv4 show interfaces |