Windows - Hyper-V#
A Hyper-what-now?
Big words!
It's a piece like VMWare, VirtualBox, Hyper-V — which is built into Windows.
Install#
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Output:
Path :
Online : True
RestartNeeded : False
Change the display resolution for a Hyper-V VM#
set-vmvideo -vmname <your_vm_name> `
-horizontalresolution:1920 `
-verticalresolution:1080 `
-resolutiontype single
- This should enhance the graphics performance
Set-VM -VMName <your_vm_name> -EnhancedSessionTransportType HvSocket