The latest version of Hyper-V Manager is included in the RSAT package for desktop Windows 10/11 operating system and can be installed using the following Powershell script:
# Get RSAT items that are not currently installed:
$install = Get-WindowsCapability -Online |
Where-Object {$_.Name -like "RSAT*" -AND $_.State -eq "NotPresent"}
# Install the RSAT items that meet the filter:
foreach ($item in $install) {
try {
Add-WindowsCapability -Online -Name $item.name
}
catch [System.Exception] {
Write-Warning -Message $_.Exception.Message
}
}
It is included in Windows Server 2022 out of the box, of course.
Another modern alternative is using Windows Admin Center https://aka.ms/windows-admin-center, which is superior to Hyper-V Manager since being web-based, can be used on any device with a browser, and does not require a Windows machine. A brief overview, installation, and configuration guide can be found here https://www.starwindsoftware.com/blog/windows-admin-center.