Affected versions: Windows Server 2022

πŸ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Quick Checks
  3. Deep Diagnosis
  4. Primary Fix
  5. Verification
  6. Prevention & Hardening

Symptom & Impact

Live migrations fail immediately with CredSSP or Kerberos errors and workloads remain pinned to overloaded hosts. Maintenance windows are missed because VMs cannot be evacuated safely. Cluster balancing and patch operations become risky.

Quick Checks

Validate host migration settings, SPN registration, and constrained delegation for Hyper-V services.

Get-VMHost | Select VirtualMachineMigrationEnabled,VirtualMachineMigrationAuthenticationType
setspn -L HVHOST01
Get-ADComputer HVHOST01 -Properties msDS-AllowedToDelegateTo

Deep Diagnosis

Correlate host security logs with FailoverClustering events to identify identity path and protocol negotiation issues.

Get-WinEvent -LogName 'Microsoft-Windows-Hyper-V-VMMS/Admin' -MaxEvents 100
Get-WinEvent -LogName 'Microsoft-Windows-FailoverClustering/Operational' -MaxEvents 100
klist sessions

Primary Fix

Standardize Kerberos-based migration, correct delegation targets, and restart VMMS for policy refresh.

Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.

Set-VMHost -VirtualMachineMigrationAuthenticationType Kerberos
Enable-VMMigration
Restart-Service vmms
Set-ADComputer HVHOST01 -Add @{ 'msDS-AllowedToDelegateTo'='Microsoft Virtual System Migration Service/HVHOST02.contoso.local' }

Verification

A test migration between hosts should complete without fallback to CredSSP prompts or failed auth tickets.

Move-VM -Name APP01 -DestinationHost HVHOST02 -IncludeStorage 0
Get-VM APP01 | Select Name,ComputerName,State

Prevention & Hardening

Use a migration baseline across all cluster nodes and regularly audit SPNs and delegation settings after host joins.

Get-ClusterNode | ForEach-Object { Get-VMHost -ComputerName $_.Name | Select ComputerName,VirtualMachineMigrationAuthenticationType }
setspn -Q */HVHOST*

Illustrative mockup for windows-server-2022 β€” terminal_or_powershell
Diagnostics commands in PowerShell β€” Illustrative mockup β€” Progressive Robot
Illustrative mockup for windows-server-2022 β€” event_or_log_viewer
Event log verification for Windows Server 2022 β€” Illustrative mockup β€” Progressive Robot

Need Expert Help?

If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β€” we respond within one business day.