Book Image

Instant Migration from Windows Server 2008 and 2008 R2 to 2012 How-to

By : Santhosh Sivarajan
Book Image

Instant Migration from Windows Server 2008 and 2008 R2 to 2012 How-to

By: Santhosh Sivarajan

Overview of this book

Migrating to a new server involves a lot of decision making and planning. Windows Server 2012 comes with exciting new features and ease of use. This book will help you migrate to your new server in no time. "Instant Migration from Windows Server 2008 and 2008 R2 to 2012 How-to" provides you with many practical and real world scenarios in a step-by-step guide. It is designed to lead you through the entire process of migration.Beginning with an introduction to Windows Server 2012, the author then takes you through the installation and configuration of the server, before continuing on to migrate the existing services to Windows Server and how to decommission old servers. The ‚Äúhow-to‚Äù migration scenarios described are based on the author's own field experiences, guaranteeing real-world solutions. The scenarios include Active Directory, enabling a Remote Desktop, Print Server, and Hyper-V migration details. From the planning to  theimplementation phase, "Instant Migration from Windows Server 2008 and 2008 R2 to 2012 How-to" is your comprehensive guide for completing migration solutions.
Table of Contents (7 chapters)

Converting Server Core to Server with a GUI (Should know)


You have a few options using PowerShell, Server Manager, Deployment Image Servicing and Management (DISM) tool, and a few others to convert a Server Core into Server with a GUI and vice versa. In this book I will be explaining a procedure using Windows PowerShell. The following recipe explains these details.

Getting ready

The minimum hardware and software requirements for a Server with a GUI is the same as a Server Core, which is described in the previous recipe.

How to do it...

  1. Log on to the Windows Server 2012 core server with administrative credentials.

  2. Start the PowerShell console from the command window by typing the command PowerShell.

  3. From the PowerShell prompt, enter Install-WindowsFeature Server-Gui-Mgmt-Infra, Server-Gui-Shell –Restart.

    Note

    You can install multiple features in a single command line by separating these features by a comma.

How it works...

The Install-WindowsFeature Server-Gui-Mgmt-Infra, Server-Gui-Shell cmdlet installs Server-Gui-Mgmt-Infra and Server-Gui-Shell Windows features on the Server Core. The –Restart parameter will force to reboot the server after the installation. After the reboot the server will be converted to a Server with a GUI.

There′s more...

In the preceding procedure, we were using Windows Update as the source instead of a Windows Imaging File (WIM). Alternately, you can mount the WIM file locally to install additional features without accessing the Windows Update Service by using the –Source parameter in the previous cmdlet.