Hyper-V 2016: Whats new?
October 23, 2016
Whats new in Server 2016
October 23, 2016
Hyper-V 2016: Whats new?
October 23, 2016
Whats new in Server 2016
October 23, 2016

Deploy Nano Server 2016

The Windows Nano Server is one of the hottest topics in the market. The nano Servers are smaller in size and faster. They are well suited for certain scenarios like IIS Server, DNS Server, File Server or the Hyper-V Server. The Nano Servers doesn’t have the logon locally feature and it doesn’t even have an GUI. How to deploy and manage the Nano Servers? So here we are to know how to download and deploy the Nano Server.

cbsl-nano_sever

Step 1: Get the VHD File

Method 1 – Using VHD

Download the Nano Server’s VHD file from Microsoft Official Website.

nano-server

Method 2 – Using Windows ISO to deploy Nano Server

Open the ISO of the Windows Server 2016 and copy the Nano Server folder into Desktop.

nano-server-in-iso

Set the Execution Policy of the PowerShell

Set-ExecutionPolicy RemoteSigned

set-exection-policy

Navigate to the contents of the copied folder.

Import-Module .\NanoServerImageGenerator -Verbose

list-files

importmodule

Now run the following command to generate the VHD file.

New-NanoServerImage -Edition Standard -DeploymentType Guest -MediaPath <path to root of media> -BasePath .\Base -TargetPath .\NanoServerVM\NanoServerVM.vhd -ComputerName <computer name>

where

  • -MediaPath specifies a path of the mounted ISO.
  • -BasePath (optional) specifies a folder that will be created to copy the Nano Server WIM and packages to.
  • -TargetPath specifies a path, including the filename and extension, where the resulting VHD or VHDX will be created.
  • Computer_name specifies the computer name that the Nano Server virtual machine you are creating will have.

new-vhd

Step 2: Import into Hyper-V

Having the VHD File in hand, next you need to create a VM.

nano-server-vhd

Open Hyper-V Manager and create a new VM and mention the VHD file.

new-vm

That’s it. Your Nano server is ready.

Power on the VM and connect to it.

power-on

connect

As discussed nano servers consume less resources. It is seen that it is consuming only 512MB RAM, and only 610MB of space.

ram-nano-server

hdd-nano-server

Leave a Reply

Your email address will not be published. Required fields are marked *