Virtual hard disks (VHDs) are a file type that acts like a hard disk. In previous versions of Windows, VHDs were used by virtual machines, such as those created by Microsoft Virtual Server 2005 or Microsoft Virtual PC. Additionally, Complete PC Backup in Windows Vista created a copy of the computer’s hard disk as a VHD disk image. Beginning with Windows 7, you can now mount VHDs exactly like a physical disk: by mounting a VHD, you can easily copy files to and from the virtual disk; additionally, Windows 7 can be configured to boot from a VHD. You can create a VHD from either the Disk Management snap-in or the command line. After you create the VHD, you must attach it and then format it before you can use it, just like a physical partition. Another tool (not included in the operating system, but downloadable for free) that can allow you to create a virtual hard disk starting from a physical one is the Disk2VHD tool by Sysinternals.
From the Disk Management console, follow these steps:
The new virtual disk is ready to be used, just like any other disk.
From the DiskPart command-line tool at an elevated command prompt, run the create vdisk command and specify the file (to name the file) and maximum (to set the maximum size in megabytes) parameters. The following code demonstrates how to create a VHD file at C:\vdisks\disk1.vdh with a maximum file size of 16 GB (or 16,000 MB). For additional options, run the command help create vdisk at the DiskPart command prompt. After you create a VHD, you must attach it, create a partition, assign it a drive letter, and format it before it can be used. The following script (which must be run within a DiskPart session) demonstrates how to do this.
This article is also available in the following languages:
Luigi Bruno edited Revision 4. Comment: Edited the "Introduction" section.
Luigi Bruno edited Revision 3. Comment: Added the "Other Languages" section. Edited tags list.
Luigi Bruno edited Revision 2. Comment: Fixed a link.
Luigi Bruno edited Revision 1. Comment: Added the "See Also" section.
Luigi Bruno edited Original. Comment: Added the "How To" Wiki message template and the "How To" tag,
Thanks for sharing man