SOLUTION 1:
- Open Windows Explorer
- Browse to the unzipped directory :\VK1000_9_1_317_HYPERV\...
- where is the drive letter, of where you want the VK1000_9_1_317_HYPERV.zip file to be unpacked
- Confirm if the .exp file is present in the :\VK1000_9_1_317_HYPERV\Virtual Machines\ sub-directory
- If the .exp file does not exist, continue with SOLUTION 2
- If the .exp file is present, continue with step 4
- Delete the .xml file (the original .xml file can still be found in the VK1000_9_1_317_HYPERV.zip file)
- Open Hyper-V Manager
- In Hyper-V Manager, in the Actions pane, click Import Virtual Machine. The Import Virtual Machine dialog box appears.
- In the Import Virtual Machine dialog box, click Copy the virtual machine (create a new unique ID).
- Click Browse, browse to the folder where you exported the base virtual machine, and then click Select Folder.
- To import the base virtual machine as a new virtual machine, click Import.
SOLUTION 2:
- Open the Hyper-V Manager
- In Hyper-V Manager, in the Actions pane, click New | Virtual Machine
- In the Specify Name and Location dialog, specify a new name (e.g. vK1000) and click Next
- In the Assign Memory dialog, provide the appropriate amount of memory and click Next
- In the Configure Networking dialog, select the virtual switch and click Next
- In the Connect Virtual Hard Disk dialog, select either:
- Use an existing virtual hard disk, select the VK1000_9_1_317_HYPERV.vhdx file and click Next or
- Attach a virtual hard disk later and click Next
- In the Installation Options, select Next to accept the default setting and click Next
- Verify the Summary and select Finish
Alternatively, you can create the virtual machine using the Windows Powershell:
WINDOWS POWERSHELL METHODS
Note: You can change the values, described in cursive, to match your production environment.
Method 1:
This method creates a new virtual machine named vK1000 that has 4GB of memory, connects to an existing virtual hard disk and an existing virtual switch named KACENet.
- New-VM –Name "vK1000" –MemoryStartupBytes 4GB -SwitchName "KACENet" –VHDPath VK1000_9_1_317_HYPERV.vhdx
- Start-VM –Name "vK1000"
Method 2:
This method creates a new virtual machine named vK1000 that has 4GB of memory, connects to an existing virtual hard disk. After creating a new virtual machine, it will connect to a new virtual switch named KACENet. In this method, the Switch Type "Private" is used for isolated internal communications. You can use Switch Type "Internal", if communications from the VMs to the Hyper-V host must be established.
- New-VM –Name "vK1000" –MemoryStartupBytes 4GB –VHDPath VK1000_9_1_317_HYPERV.vhdx
- New-VMSwitch -Name "KACENet" -SwitchType Private
- Get-VMNetworkAdapter –VMName "vK1000" | Connect-VMNetworkAdapter -SwitchName "KACENet"
- Start-VM –Name "vK1000"