1, first click on "Start-search", in the Open search box input diskpart, and the mouse right click to select as Administrator to run into the DiskPart management interface;
2, then enter the following command at the command prompt, and the code for the command to create the VHD is:
Create Vdisk file= "D:/win7.vhd" maximum=30000 type=fixed
Copy the code content to the command Prompt window where file follows the specific path that the VHD holds, maximum refers to the maximum capacity of the VHD file (in megabytes), and type is used to set the type of VHD (fixed size of the VHD as maximum).
3. The code to create and mount the VHD is as follows:
Select Vdisk file= "D:/win7.vhd"
Attach Vdisk
Copy this code content to the command prompt window so that the VHD file is created and, if the user wants to use it, partition and format the graphical interface through Disk Management.