{"id":19267,"date":"2015-10-13T11:45:22","date_gmt":"2015-10-13T10:45:22","guid":{"rendered":"https:\/\/aidanfinn.com\/?p=19267"},"modified":"2015-10-13T11:54:57","modified_gmt":"2015-10-13T10:54:57","slug":"create-a-ws2016-nano-server-hyper-v-vm","status":"publish","type":"post","link":"https:\/\/aidanfinn.com\/?p=19267","title":{"rendered":"Create a WS2016 Nano Server Hyper-V VM"},"content":{"rendered":"<p>Setting up a Nano Server VM requires running some PowerShell. The instructions that I found out there aren\u2019t that clear for a non-PowerShell guru , are wrong, or are incomplete. So let me clear up everything by showing you exactly what I am using to deploy Nano Server as a Windows Server 2016 (TPv3\/Technical Preview 3) Hyper-V virtual machine.<\/p>\n<p><em>Note: The process will probably change after I published this post.<br \/>\n<\/em><\/p>\n<h2>Step 1 &#8211; Make Folders<\/h2>\n<p>Create three folders on a computer with a fast disk. Note that I\u2019ll use C: but maybe you should use a D: or something.<\/p>\n<ul>\n<li>C:\\Nano<\/li>\n<li>C:\\Nano\\Base<\/li>\n<li>C:\\Scripts<\/li>\n<\/ul>\n<h2>Step 2 &#8211; Copy Scripts<\/h2>\n<p>Mount the WS2016 ISO &#8211; let\u2019s assume that it mounts as E:. Copy two scripts from E:\\NanoServer from the ISO to C:\\Scripts:<\/p>\n<ul>\n<li>new-nanoserverimage.ps1<\/li>\n<li>convert-windowsimage.ps1<\/li>\n<\/ul>\n<h2>Step 3 &#8211; Dot The Scripts<\/h2>\n<p>Note that I missed out on this step because I had never encountered this sort of thing before &#8211; I\u2019m an advocate of PowerShell but I\u2019m no guru! If you do not run this step, New-NanoServerImage.ps1 will do nothing at all and wreck your head for 3 hours (it did for me!).<\/p>\n<p>Open a PowerShell window with elevated privileges. Navigate to C:\\Scripts. Run the following:<\/p>\n<pre class=\"lang:default decode:true\">. .\\convert-windowsimage.ps1<\/pre>\n<p>I know &#8211; it looks funny. Enter it exactly as above. This appears to load the contained script as a cmdlet that can later be executed.<\/p>\n<p>Do the same again for New-NanoServerVHD.ps1:<\/p>\n<pre class=\"lang:default decode:true\">. .\\new-nanoserverimage.ps1<\/pre>\n<p>Now we can build a new VHD with Nano Server pre-installed.<\/p>\n<h2>Step 4 &#8211; Create a VHD<\/h2>\n<p>You can now run New-NanoServerImage. Here\u2019s what I ran:<\/p>\n<pre class=\"lang:default decode:true\">New-NanoServerImage -MediaPath e:\\ -BasePath C:\\Nano\\Base -TargetPath C:\\Nano\\Nano1 -GuestDrivers -ComputerName \"Nano1\" -DomainName \"prev.internal\" -EnableIPDisplayOnBoot -AdministratorPassword (convertto-securestring -string \"AVerySecurePassPhrase\" -asplaintext -force) -EnableRemoteManagementPort -Language EN-US\r\n<\/pre>\n<p>The above will prep a VHD with a VM called Nano1. I have configured the VM to join the prev.internal domain &#8211; note that this will require me to have suitable domain creds &#8211; a computer account is created in the domain. I enabled the <a href=\"https:\/\/aidanfinn.com\/?tag=hyper-v\" target=\"_blank\">Hyper-V<\/a> guest drivers and allowed the IP of the VM to appear on the console. The VHD will be stored in C:\\Nano\\Nano1. Note that if this folder exists then the process will abort:<\/p>\n<blockquote><p>WARNING: The target directory already exists. If you want to rebuild this image, delete the directory first.<br \/>\nWARNING: Terminating due to an error. See log file at:<br \/>\nC:\\Users\\ADMINI~1.LAB\\AppData\\Local\\Temp\\2\\New-NanoServerImage.log<\/p><\/blockquote>\n<p>Note that I had to specify EN-US because, at this time, my default region of EN-IE was not available:<\/p>\n<blockquote><p>WARNING: The &#8216;en-ie&#8217; directory does not exist in the &#8216;Packages&#8217; directory (&#8216;g:\\NanoServer\\Packages&#8217;).<br \/>\nWARNING: Terminating due to an error. See log file at:<br \/>\nC:\\Users\\ADMINI~1.LAB\\AppData\\Local\\Temp\\2\\New-NanoServerImage.log<\/p><\/blockquote>\n<p>I could have added other roles\/packages to the VHD such as:<\/p>\n<ul>\n<li>-Storage: For a SOFS cluster.<\/li>\n<li>-Compute: To enable Hyper-V \u2026 useful when TPv4 (we guess) introduces guest virtualization.<\/li>\n<li>-Clustering: To enable failover clustering in the VM.<\/li>\n<li>-Defender: Adding security to the guest OS.<\/li>\n<\/ul>\n<p>A minute or so later, a 439 MB was created in the newly created C:\\Nano\\Nano1.<\/p>\n<h3>Recreating a Nano Server VM<\/h3>\n<p>If you\u2019re playing with Nano Server in a lab then you\u2019ll create VMs with name reuse. If you do this with domain join then you might encounter a failure:<\/p>\n<blockquote><p>WARNING: Failed with 2224.<br \/>\nWARNING: Terminating due to an error. See log file at:<br \/>\nC:\\Users\\ADMINI~1.LAB\\AppData\\Local\\Temp\\2\\New-NanoServerImage.log<\/p><\/blockquote>\n<p>Open the log and you\u2019ll find:<\/p>\n<blockquote><p>Provisioning the computer&#8230;<\/p>\n<p>Failed to provision [Nano1] in the domain [prev.internal]: 0x8b0.<\/p>\n<p>It may be necessary to specify \/REUSE when running<\/p>\n<p>djoin.exe again with the same machine name.<\/p>\n<p>Computer provisioning failed: 0x8b0.<\/p>\n<p>The account already exists.<\/p><\/blockquote>\n<p>That\u2019s one of those \u201cding-ding-ding aha!\u201d moments. The computer account already exists in AD so delete the account and start over.<\/p>\n<h3>Creating Additional VMs<\/h3>\n<p>Once you have run the above process, C:\\Nano\\Base will be populated with files from the ISO (\\NanoServer). This means that you can drop the -MediaPath flag and eject the ISO.<\/p>\n<pre class=\"lang:default decode:true\">New-NanoServerImage -BasePath C:\\Nano\\Base -TargetPath C:\\Nano\\Nano2 -GuestDrivers -ComputerName \"Nano2\" -DomainName \"prev.internal\" -EnableIPDisplayOnBoot -AdministratorPassword (convertto-securestring -string \"AVerySecurePassPhrase\" -asplaintext -force) -EnableRemoteManagementPort -Language EN-US<\/pre>\n<h2>Step 5 &#8211; Move the Computer Account<\/h2>\n<p>In AD, move the computer account for the new Nano server to the required OU so it get\u2019s any requierd policies on the first boot &#8211; remember that this sucker has no UI so GPO and stuff like Desired State Configuration (DSC) will eventually be the best way to configure Nano Server.<\/p>\n<h2>Step 6 &#8211; Create a VM<\/h2>\n<p>The above process prepare a VHD for a Generation 1 virtual machine. Create a Generation 1 VM, and attach the VHD to the boot device. Connect to the VM and power it up. A couple of seconds will pass and a log in screen will appear:<\/p>\n<p><a href=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/image45.png\"><img loading=\"lazy\" decoding=\"async\" style=\"float: none; margin-left: auto; display: block; margin-right: auto; border: 0px;\" title=\"image\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/image_thumb45.png\" alt=\"image\" width=\"400\" height=\"348\" border=\"0\" \/><\/a><\/p>\n<p>Log in with your local admin or domain credentials and you\u2019ll be greeted with the console. Note that I enabled the IP address to be displayed during the setup:<\/p>\n<p><a href=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/image46.png\"><img loading=\"lazy\" decoding=\"async\" style=\"float: none; margin-left: auto; display: block; margin-right: auto; border: 0px;\" title=\"image\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/image_thumb46.png\" alt=\"image\" width=\"400\" height=\"348\" border=\"0\" \/><\/a><\/p>\n<h2>Step 7 &#8211; Manage the Nano Server VM<\/h2>\n<p>If you want to do some management work then you\u2019ll need to:<\/p>\n<ul>\n<li>Wait for the eventual remote management console that was quickly shown at Ignite 2015.<\/li>\n<li>Use PowerShell remoting.<\/li>\n<li>Use PowerShell Direct (new in WS2016).<\/li>\n<\/ul>\n<p>If you have network access to the VM then you can use remoting:<\/p>\n<pre class=\"lang:default decode:true\">Enter-PSSession -ComputerName Nano1 -Credential prev\\administrator<\/pre>\n<p>Troubleshooting network issues with Nano Server can be a dog because there is no console that you can log into. However \u2026 you can use PowerShell Direct with no network access to the VM, via the Hyper-V guest OS integration components:<\/p>\n<pre class=\"lang:default decode:true\">Enter-PSSession -VMName Nano1 -Credential prev\\administrator<\/pre>\n<p>Tip: Most AD veterans start network troubleshooting with DNS &#8211; it\u2019s nearly always the cause. In my lab, I have 3 domains, so 3 sets of DNS. My DHCP scope sets up on domain\u2019s DNS server as the primary, and that can cause issues. Some PowerShell Direct to the VM with some <a href=\"https:\/\/technet.microsoft.com\/en-us\/library\/jj590768%28v=wps.630%29.aspx\" target=\"_blank\">Set-DnsClientServerAddress<\/a> sorted things out.<\/p>\n<div id=\"scid:0767317B-992E-4b12-91E0-4F059A8CECA8:516dcabe-d917-4aef-a774-4a180c31b663\" class=\"wlWriterEditableSmartContent\" style=\"float: none; margin: 0px; display: inline; padding: 0px;\">Technorati Tags: <a href=\"http:\/\/technorati.com\/tags\/Hyper-V\" rel=\"tag\">Hyper-V<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Windows+Server+2016\" rel=\"tag\">Windows Server 2016<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Deployment\" rel=\"tag\">Deployment<\/a>,<a href=\"http:\/\/technorati.com\/tags\/PowerShell\" rel=\"tag\">PowerShell<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Setting up a Nano Server VM requires running some PowerShell. The instructions that I found out there aren\u2019t that clear for a non-PowerShell guru , are wrong, or are incomplete. So let me clear up everything by showing you exactly what I am using to deploy Nano Server as a Windows Server 2016 (TPv3\/Technical Preview &hellip; <a href=\"https:\/\/aidanfinn.com\/?p=19267\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Create a WS2016 Nano Server Hyper-V VM&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":19270,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"_wpcom_ai_launchpad_first_post":false,"footnotes":""},"categories":[20],"tags":[174,181,87,137],"class_list":["post-19267","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hyper-v","tag-deployment","tag-hyper-v","tag-powershell","tag-windows-server-2016"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.2 - aioseo.com -->\n\t<meta name=\"description\" content=\"Here&#039;s a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"AFinn\"\/>\n\t<meta name=\"google-site-verification\" content=\"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/aidanfinn.com\/?p=19267\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.2\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\" \/>\n\t\t<meta property=\"og:type\" content=\"activity\" \/>\n\t\t<meta property=\"og:title\" content=\"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro\" \/>\n\t\t<meta property=\"og:description\" content=\"Here&#039;s a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/aidanfinn.com\/?p=19267\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@joe_elway\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Here&#039;s a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@joe_elway\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#article\",\"name\":\"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro\",\"headline\":\"Create a WS2016 Nano Server Hyper-V VM\",\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/WS2016-Nano-Server-Comparison.png\",\"width\":695,\"height\":379},\"datePublished\":\"2015-10-13T11:45:22+01:00\",\"dateModified\":\"2015-10-13T11:54:57+01:00\",\"inLanguage\":\"en-GB\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#webpage\"},\"articleSection\":\"Hyper-V, Deployment, Hyper-V, PowerShell, Windows Server 2016\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aidanfinn.com\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"position\":2,\"name\":\"Hyper-V\",\"item\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#listItem\",\"name\":\"Create a WS2016 Nano Server Hyper-V VM\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#listItem\",\"position\":3,\"name\":\"Create a WS2016 Nano Server Hyper-V VM\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#webpage\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267\",\"name\":\"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro\",\"description\":\"Here's a real-world, actually tried & tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/wp-content\\\/uploads\\\/2015\\\/10\\\/WS2016-Nano-Server-Comparison.png\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267\\\/#mainImage\",\"width\":695,\"height\":379},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=19267#mainImage\"},\"datePublished\":\"2015-10-13T11:45:22+01:00\",\"dateModified\":\"2015-10-13T11:54:57+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/\",\"name\":\"Aidan Finn, IT Pro\",\"description\":\"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro","description":"Here's a real-world, actually tried & tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.","canonical_url":"https:\/\/aidanfinn.com\/?p=19267","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aidanfinn.com\/?p=19267#article","name":"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro","headline":"Create a WS2016 Nano Server Hyper-V VM","author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"publisher":{"@id":"https:\/\/aidanfinn.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/WS2016-Nano-Server-Comparison.png","width":695,"height":379},"datePublished":"2015-10-13T11:45:22+01:00","dateModified":"2015-10-13T11:54:57+01:00","inLanguage":"en-GB","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/aidanfinn.com\/?p=19267#webpage"},"isPartOf":{"@id":"https:\/\/aidanfinn.com\/?p=19267#webpage"},"articleSection":"Hyper-V, Deployment, Hyper-V, PowerShell, Windows Server 2016"},{"@type":"BreadcrumbList","@id":"https:\/\/aidanfinn.com\/?p=19267#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/#listItem","position":1,"name":"Home","item":"https:\/\/aidanfinn.com\/","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","position":2,"name":"Hyper-V","item":"https:\/\/aidanfinn.com\/?cat=20","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=19267#listItem","name":"Create a WS2016 Nano Server Hyper-V VM"},"previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=19267#listItem","position":3,"name":"Create a WS2016 Nano Server Hyper-V VM","previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}}]},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/#person","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=19267#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/?author=1#author","url":"https:\/\/aidanfinn.com\/?author=1","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=19267#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"WebPage","@id":"https:\/\/aidanfinn.com\/?p=19267#webpage","url":"https:\/\/aidanfinn.com\/?p=19267","name":"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro","description":"Here's a real-world, actually tried & tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/aidanfinn.com\/#website"},"breadcrumb":{"@id":"https:\/\/aidanfinn.com\/?p=19267#breadcrumblist"},"author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"creator":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/WS2016-Nano-Server-Comparison.png","@id":"https:\/\/aidanfinn.com\/?p=19267\/#mainImage","width":695,"height":379},"primaryImageOfPage":{"@id":"https:\/\/aidanfinn.com\/?p=19267#mainImage"},"datePublished":"2015-10-13T11:45:22+01:00","dateModified":"2015-10-13T11:54:57+01:00"},{"@type":"WebSite","@id":"https:\/\/aidanfinn.com\/#website","url":"https:\/\/aidanfinn.com\/","name":"Aidan Finn, IT Pro","description":"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","inLanguage":"en-GB","publisher":{"@id":"https:\/\/aidanfinn.com\/#person"}}]},"og:locale":"en_GB","og:site_name":"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","og:type":"activity","og:title":"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro","og:description":"Here's a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.","og:url":"https:\/\/aidanfinn.com\/?p=19267","twitter:card":"summary","twitter:site":"@joe_elway","twitter:title":"Create a WS2016 Nano Server Hyper-V VM | Aidan Finn, IT Pro","twitter:description":"Here's a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.","twitter:creator":"@joe_elway"},"aioseo_meta_data":{"post_id":"19267","title":"Create a WS2016 Nano Server Hyper-V VM | #site_title","description":"Here's a real-world, actually tried &amp; tested, step-by-step, getting started guide on deploying Windows Server 2016 Nano Server as a Hyper-V virtual machine.","keywords":[{"label":"Nano Server","value":"Nano Server"},{"label":"Create","value":"Create"},{"label":"Deploy","value":"Deploy"},{"label":"VHD","value":"VHD"},{"label":"Hyper-V","value":"Hyper-V"},{"label":"Virtual Machine","value":"Virtual Machine"},{"label":"VM","value":"VM"},{"label":"Guide","value":"Guide"},{"label":"Step-by-Step","value":"Step-by-Step"},{"label":"Instructions","value":"Instructions"},{"label":"Virtual Hard Disk","value":"Virtual Hard Disk"},{"label":"Fail","value":"Fail"},{"label":"Error","value":"Error"},{"label":"Nothing","value":"Nothing"},{"label":"Failure","value":"Failure"},{"label":"Management","value":"Management"},{"label":"Manage","value":"Manage"},{"label":"PowerShell","value":"PowerShell"},{"label":"PowerShell Remote","value":"PowerShell Remote"},{"label":"PowerShell Direct","value":"PowerShell Direct"},{"label":"Password","value":"Password"},{"label":"Domain Join,","value":"Domain Join,"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"activity","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 03:53:22","updated":"2025-06-04 17:03:52","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\/\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\/?cat=20\" title=\"Hyper-V\">Hyper-V<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">\u00bb<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCreate a WS2016 Nano Server Hyper-V VM\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/aidanfinn.com\/"},{"label":"Hyper-V","link":"https:\/\/aidanfinn.com\/?cat=20"},{"label":"Create a WS2016 Nano Server Hyper-V VM","link":"https:\/\/aidanfinn.com\/?p=19267"}],"amp_enabled":true,"jetpack_featured_media_url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/10\/WS2016-Nano-Server-Comparison.png","_links":{"self":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/19267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=19267"}],"version-history":[{"count":2,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/19267\/revisions"}],"predecessor-version":[{"id":19271,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/19267\/revisions\/19271"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/media\/19270"}],"wp:attachment":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=19267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=19267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=19267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}