Building Enterprise Environment Lab for Development with Windows 8 & Hyper-V

So you don’t want Visual Studio to be installed in a Virtual Machine, because that’s not what happens in the real-world.
You want Visual Studio to be natively on your Windows 8, but easily copy files for deployment to IIS/SharePoint site hosted by your 3-tier virtual machines of Web-App-Database servers.
You want to be able to use the Domain Controller’s DNS in the virtual machine, so you can type http://intranet.zed.com from Windows 8 Internet Explorer, not from Restricted IE inside your virtual machine.
You want to simulate having 2 Datacenters, where 2 virtual machines have different Subnet, and they all communicate through a Software Router.
Even better, the Software Router connects to your Windows 8 Internet so all the virtual machines can get Internet access via the router without configuring 2 network cards.

This post will be a long one, with a lot of screenshots, but it’s a necessary one.

This was supposed to be posted last year, but since I promised in my recent presentation at SharePoint Saturday Abu Dhabi that I will share the PowerShell snippets to automate creating the Virtual Machines, I have a non-lazy reason to finally post this 🙂

Part 0: The IP Table
This is the table that I used for my SQL Server Disaster Recovery talk. I have 2 datacenters and simulating what happens when servers in one country go down.

VM Virtual Switch IP Gateway DNS
DC1 Datacenter1 172.16.1.2 172.16.1.1 127.0.0.1
ROUTER1 Datacenter1

Datacenter2

GuestToLoopback

172.16.1.1

192.168.1.1

192.168.2.1

172.16.1.2

172.16.1.2

172.16.1.2

SQL1 Datacenter1 172.16.1.10 172.16.1.1 172.16.1.2
SQL2 Datacenter2 192.168.1.10 192.168.1.1 172.16.1.2
SP1 Datacenter1 172.16.1.20 172.16.1.1 172.16.1.2
SP2 Datacenter2 192.168.1.20 192.168.1.1 172.16.1.2

Part 1: Configure Network and Virtual Datacenters

Run this PowerShell script to create 2 private switches:

Loopback Adapter

The Loopback Adapter will allow our host Windows 8 to browse the IIS/SharePoint hosted in the virtual machines. It will also query the DNS of the Domain Controller hosted in the VM.
Go to Control Panel > Device Manager. Right-click your computer name (the first top node under device manager) and select Add Legacy Hardware.
Choose Advanced, Manually select from list (Advanced), scroll down to choose Network Adapters then click Next.
Choose Microsoft from Manufacturer, Loopback from the right:
D-01-LoopbackAdapter

Go to Hyper-V Manager and open Virtual Switch Manager. Create a new External Virtual Switch and name it GuestToLoopback, configuring it to the physical Loopback adapter as shown below.
D-02-Loopback2

Create another new External Virtual Switch and name it GuestToWiFi, configuring it to the physical Wireless adapter that you have connected to Internet.

You should now have 4 Switches configured in your Hyper-V Virtual Switch Manager: 2 are private to simulate 2 datacenters, 1 is for host-to-vm and another for allowing the VMs to get Internet.
HyperVVirtualSwitch

Finally, configure your virtual ethernet GuestToLoopback with the IP Address that allows us to communicate with the Software Router later (refer to IP Table in Part 0 above):
GuestToLoopBackIPProperties

Part 2: Create the Parent virtual machine

Run this PowerShell to create the parent disk. Note that to improve performance, the Parent Disk should be on different physical disk than the Child Disk that we’ll create later. Here, the Parent Disk is created on C: It also helps to have 2 SSDs 🙂

Edit settings for VM “Windows 2012 R2 Parent” and load the .ISO of Windows Server 2012 R2 to the CD:
B-02-BootISO

Now Start the VM “Windows 2012 R2 Parent” and install the OS.
B-03-InstallWindows

Now that your VM “Windows 2012 R2 Parent” can connect to Internet, download these Essential Tools:
1. WinRAR
2. Microsoft Network Monitor
3. Microsoft Message Analyzer
4. SysInternals Suite

Run BGInfo from SysInternals, then modify the config like below:
B-05-BGInfo

Save the BGInfo settings as “DefaultBGInfo.bgi” so you can load this on every Child Virtual Machine later on.

Part 3: SysPrep and Mark Parent Disk as Read-Only

When you want to join a virtual machine to the domain setup in Domain Controller, you need unique SIDs. This is why you have to SysPrep the Parent before creating the child disks.
Open up CMD as Administrator and run this command:

Once the “Windows 2012 R2 Parent” virtual machine automatically shuts down, convert the dynamic VHDX disk to a fixed VHDX disk for better performance by running this PowerShell:

When the new fixed-size VHDX is created, go to C:\VMs\WS2012R2-Parent-ReadOnly.vhdx , right-click the file and make it Read-Only:
C-01-MarkReadOnly

This will ensure that the Parent Disk cannot be modified and that changes will occur in the Child Disks later.

Part 4: Creating the Child Disks and child virtual machines

Simply run this PowerShell to create the child disks and virtual machines while you make coffee:

Part 5: Setting up ROUTER1 virtual machine

Start the ROUTER1 VM, go to the Network settings and configure the 3 virtual network adapters according to the IP Table in Part 0 above:
E-01-IPconfig

Then Add Role Remote Access
E-01-RemoteAccess

And add feature Routing
E-01-Routing

Next open Routing and Remote Access, right-click ROUTER1 and choose Configure and Enable Routing and Remote Access
D-03-Routing

Choose Custom Configuration
E02-CustomConfig

Select NAT and LAN Routing
E-03-LanNat

Start the Service.

Now we need to configure NAT so that other virtual machines connected to this router have Internet access.
Right-click NAT and choose New Interface
Nat-NewInterface

Select the virtual ethernet that is connected to Internet (your WiFi or LAN cable).
NAT-NewInterface2

Finally choose Public interface connected to the Internet and select Enable NAT on this interface.
Nat-NewInterface3

Now you are done setting up the Router Software.

Part 5: Configure the Domain Controller DC1

With ROUTER1 VM still running, Start DC1 VM, then configure the static IP address according to IP Table in Part 0 above.

Rename the Computer Name to DC1 and restart VM.
Add Role Active Directory Domain Services.
Promote this VM to Domain Controller status:
F-01-PromoteDC

Add a new Forest ZED.com and click Next Next Next until server is promoted as DC.
F-02-NewForest

You now have a Domain Controller up and running!

Part 6: Configure SQL, SharePoint, other virtual machines

Keep ROUTER1 and DC1 virtual machines running, then login to other VM and configure their static IP Addresses according to IP Table in Part 0 above.

After configuring the IP, change the Computer Name and Join them to the new ZED.com domain:
G-01-ChangeNameJoinDomain

Part 7: Browse IIS/SharePoint VM from Windows 8 Host

In order to do this, I need to turn off my WiFi. Just click your Wireless icon down there and select Wi-Fi Off.
Now open up CMD prompt and type “nslookup DC1.zed.com” , it should connect to your Loopback adapter which connects to ROUTER1 that connects you to DC1 virtual machine.

You should be able to open up your IE11 browser in Window 8 and browse http://intranet.zed.com for your SharePoint development now 🙂

Reader Comments (3) on “Building Enterprise Environment Lab for Development with Windows 8 & Hyper-V

  1. Pingback: Presentation: SharePoint Warm Disaster Recovery with SQL AlwaysOn | ZeddyLabs – Zeddy Iskandar | Blog in English

  2. Pingback: How to fix Windows Server 2012 Blue Screen SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (WppRecorder.sys) | ZeddyLabs – Zeddy Iskandar | Blog in English

  3. Pingback: The Ultimate Laptop for Devs, ITPros, Creatives – 2016 Edition | ZeddyLabs – Zeddy Iskandar | Blog in English

Leave a Reply