I believe in Hyper-V!

Windows 8Category Archives

Install Microsoft .Net Framework 3.5 “offline” in Windows 8

Many times until now I had issues with .Net Framework 3.5 installation on Windows 8. Every time when I installed .Net Framework 3.5 on Windows 8 I needed to bing-it to find resolution, so now I want to have reminder on my blog :).

Why do we need .Net Framework 3.5? Sometimes we use some updated program, Apps, etc. (Last time when I had a problem I installed Team Foundation Server 2012 Build server). To install it online we have to do a huge amount of download from Internet (if you have a lucky with this kind of installation, I didn’t have).

Step 1.

Insert Windows 8 boot media into PC
Capture3

Step 2.

Open Command Prompt (Run as administrator) or (Admin)
Capture4 Capture5

Step 3.

Copy the following line and paste on to Command Prompt (opened with Admin rights) window then press Enter.

Dism /online /enable-feature /featurename:NetFx3 /All /Source:D:\sources\sxs /LimitAccess

Capture

After very short time you’ll have .Net Framework 3.5 installed on your PC.

Capture2

NOTE: Why this is happening? Actually, when we install .Net Framework 3.5 through Windows 8 features, Turn Windows features on or off, Windows needs to download .Net Framework files. But, when we have WSUS on our domain Windows requires this files from WSUS not from Windows online updates, given that WSUS doesn’t have such files in the repository and we get error when try to install .Net Framework.

Enjoy ;)

Romeo

Add external USB hard drive to Hyper-V virtual machine

In this blog post I’ll describe how to add external USB hard drive to Hyper-V virtual machine.
In my case I have an external WD USB hard drive with 500GB capacity and I want add that drive into my Hyper-V virtual machine.

NOTE: As you probably know, removable usb drives is not supported in Hyper-V.

This is a short “how to”:

1. On your Hyper-V host open Disk Management.
2. Choose external USB hard drive and right click on him.
 1
3. Click on Offline.
2

4. Open Settings on virtual machine to which you want to add external USB drive and select SCSI Controller on the left hand side, select Hard Drive, and click Add on the right hand side.
3

5. Check mark Physical hard disk: , select external USB hard drive na click OK.
4

6. Logon into VM and open Disk Management. Click on newly attached Disk and bring him Online.
5 

Open Windows Explorer and you will see your external USB hard drive ;)
6

Enjoy in day ;)

Convert VHD to VHDX with Hyper-V manager in Windows 8

After few turbulent weeks and rehabilitation I finally have a time to write blog post. For the beginning of “my new life” and my second birthday this will be an “light” post Winking smile. For those how don’t know, before eleven days ago I had two heart attacks in one day, luckily without injuries.

So, let’s begin. In this blog post I would like to explain how to convert .vhd to .vhdx with Hyper-V manager in Windows 8.

First, few things about what is .vhdx I what benefits we get.
VHDX is new virtual hard disk format in WS 2012 and Windows 8. In many ways, VHDX disks offer superior performance, capacity and reliability over Hyper-V’s legacy Virtual Hard Disks.
With the VHDX format we able to create much larger virtual hard disks. Old Hyper-V had a 2 TB limit to VHD’s, but VHDX files have up to a 64 TB capacity. Also, protection against data corruption during power failures my logging updates to the VHDX metadata structures as well as improved alignment of the virtual hard disk format to work well on large sector disks.
The VHDX format also provides the few more features such as; large block sizes for dynamic and differencing disks, which allows these disks to attune to the needs of the workload. The ability to store custom metadata about the file that the user might want to record, like operating system version or patches applied, and so on…

Many of us have virtual machines created with old Hyper-V and if we want to use the new features, we need convert .vhd to .vhdx.
How to do that? This is very simple process and we have two ways to doing that. Over Hyper-V manager GUI and with PowerShell.

Convert .vhd to .vhdx with Hyper-V manager GUI:

Step 1.

1

Step 2.
2

Step 3.
3

Step 4.
4

Step 5.
5

Step 6.
6

Step 7.
7

And after few simple steps we have converted .vhdx.

8

Convert .vhd to .vhdx with PoweShell:

If you prefer PowerShell follow this few steps. Open PowerShell as Administrator and enter few commands like in pictures below.

12
13
14

Enjoy in the new .vhdx features and benefits.

NOTE: You can convert a VHDX to a VHD. But keep in mind and make sure that the VHDX is not bigger than 2TB.

Also, keep in mind that the virtual hard disk will be unavailable during the conversion process. It will create a new virtual hard disk file and delete the old one. As such, you will need enough physical disk space to temporarily accommodate two copies of the virtual hard disk that you are converting.

You can read more about how to convert VHD to VHDX on the links below

Aviraj Ajgekar
Thomas Maurer

Quote from the Petri by Aidan Finn (http://www.petri.co.il/convert-vhd-file-into-vhdx-file.htm#)

“There is one more step that you might consider: When you create a new VHDX file (not converted) it has a physical sector size of 4 K. A converted VHDX file has a physical sector size of 512 Bytes. You can change the physical sector size of a converted VHDX by running this piece of PowerShell before you power up the virtual machine:

set-vhd d:\VM01\Disk0.vhdx -PhysicalSectorSizeBytes 4096

Now you have a virtual machine that is using the best kind of virtual machine storage, the VHDX format virtual hard disk.”

 

Enjoy in Virtualization Smile