Edit

Known issues: Windows Admin Center Virtualization Mode

Important

Windows Admin Center Virtualization Mode is currently in PREVIEW. This information relates to a prerelease product that may be substantially modified before it's released. Microsoft makes no warranties, expressed or implied, with respect to the information provided here.

This article lists current known issues and limitations for Windows Admin Center Virtualization Mode while it's in PREVIEW. It helps you identify symptoms, understand causes, and apply workarounds when resource onboarding or VM management behaves unexpectedly.

If you encounter issues not listed here, submit feedback from the portal or on a related docs page. This list will expand as new issues are validated.

Issue Description Resolution summary
Network ATC intent failure reports success If a Network ATC intent fails to be created within the add resource workflow, the workflow might still succeed. Verify adapters, VLAN, and QoS settings; review events; redeploy intent; ensure LLDP; re-add only after prerequisites
Pending reboot after feature install If the Windows Server feature installation requires a reboot, Windows Admin Center doesn't handle the reboot during the add resource process. The add resource workflow succeeds even if a reboot is still required for the features to take effect. To continue, reboot the resources. Detect pending reboot; restart hosts; verify feature state; retry incomplete intent steps
Cluster onboarding fails repeatedly If the resource onboarding workflow fails for a cluster, you might need to install the required Windows Server features on every cluster node, reboot the nodes, and then try onboarding the cluster again. Align feature installs; reboot nodes; verify health; retry onboarding

Resource onboarding reports success when a Network ATC intent fails

If a Network ATC network intent fails to be created within the add resource workflow, the workflow might still succeed.

Resolution steps:

To check and recreate the Network ATC network intent, perform the following steps.

  1. Sign in to the Hyper-V host where you created the intent.

  2. Open Event Viewer and navigate to Applications and Services Logs > Microsoft > Windows > Networking-NetworkAtc > Admin to review provisioning events for failures or warnings.

  3. Check the provisioning status on each node by running Get-NetIntentStatus.

  4. Resolve any identified issues, then follow one of these options to recreate the intent:

  5. Re-create or redeploy the intent if required:

    Or

Required reboot after feature installation not handled automatically

If the Windows Server feature installation requires a reboot, Windows Admin Center doesn't handle the reboot during the add resource process. The add resource workflow succeeds even if a reboot is still required for the features to take effect. To continue, reboot the resources.

Resolution steps:

To detect and complete required reboots and activate installed features, perform the following steps on the Hyper-V host.

  1. To check whether a pending reboot is required, open an elevated PowerShell session and run the following command:

    if (Test-Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending') {
       Write-Host 'Pending reboot detected. Reboot before continuing.' -ForegroundColor Yellow
    } else {
       Write-Host 'No pending reboot detected.' -ForegroundColor Green
    }
    
  2. Reboot the affected host or hosts.

  3. After the restart, re-verify the installed features and re-run the Add resources. For more information about the steps to add resources, see Add resources in Windows Admin Center Virtualization Mode.

Cluster resource onboarding fails repeatedly

If the resource onboarding workflow fails for a cluster, you might need to install the required Windows Server features on every cluster node, reboot the nodes, and then try to onboard the cluster again.

Resolution steps:

To align prerequisites across cluster nodes and retry resource onboarding, perform the following steps. Sign in to each cluster node to complete these steps.

  1. Run PowerShell as an administrator on each node.

  2. Validate the feature state with a single command:

    $params = @{
       Name = @('Hyper-V','Failover-Clustering','Data-Center-Bridging','Network-ATC')
    }
    
    Get-WindowsFeature @params | Select-Object -Property Name, InstallState
    
  3. Install any missing features by running the following commands:

    Install-WindowsFeature Hyper-V -IncludeManagementTools
    Install-WindowsFeature Failover-Clustering
    Install-WindowsFeature Data-Center-Bridging
    Install-WindowsFeature Network-ATC
    

    To learn more about configuring these features, see:

  4. Verify that all nodes are domain joined and that time synchronization is functioning correctly.

  5. Validate cluster health with Get-Cluster and remediate any issues.

  6. Re-run the resource onboarding workflow. To learn more about the steps to add resources, see Add resources in Windows Admin Center Virtualization Mode.