Installing SCVMM 2025 on Windows Server 2025
Installing SCVMM 2025 on Windows Server 2025
SCVMM 2025
Windows Server 2025
- Create a hypervscvmm domain user on AD.
| User | DC Host | Hyper-V Host | VMM Host |
|---|---|---|---|
| sj\hypervscvmm | Domain Users | / | Administrators |
- Convert an evaluation version to a retail version.
DISM /online /Get-CurrentEdition |
- Set date and timezone.
w32tm /config /manualpeerlist:"ntp.ntsc.ac.cn" /syncfromflags:manual /update |
- Join a Domain sj.com by using sj\hypervscvmm.
Rename-Computer -NewName "VMMServer" -Restart |
- Install Windows Assessment and Deployment Kit (ADK), Only need the Deployment Tools and Windows Preinstallation Environment options.


- Install SQL Server.

- Install SCVMM.

- Install Failover-Clustering and Hyper-V management tools.
Install-WindowsFeature -Name "RSAT-Hyper-V-Tools","RSAT-Clustering" |
Troubleshooting
Issue: Hyper-V cannot be installed: The processor does not have required virtualization capabilities.
Solution
Set-VMProcessor -VMName 'VMMServer' -ExposeVirtualizationExtensions $true |
Issue: Hyper-V cannot be installed because virtualization support is not enabled in the BIOS.
Solution
bcdedit /set hypervisorlaunchtype auto |
Issue: SCVMM 2025 Setup won't start after click Install option.
Solution
In conflict with the failover cluster role.
Remove-WindowsFeature -Name Failover-Clustering -IncludeManagementTools |
Issue: Virtual-to-virtual conversion Error (10406).
Error (10406) |
Solution
Modify vCenter properties on Infrastructure -> vCenter Servers, uncheck Communicate with VMware ESX hosts in secure mode.
Issue: VM boot failed, SCSI Disk (0.0) the signed image's hash is not allowed (DB).

Solution
- Disable secure boot.
- Maybe EFI boot incorrect, boot into HotPE to fix EFI partition.
a) Use Diskgenius to format the EFI partition.
b) Use NT6bootfix to fix the EFI partition.
Set-VMFirmware -VMName "Rocky" -EnableSecureBoot Off |
Issue: The VMM Serivce SCVMMService fail to start after rename computer.
Solution
-
Uninstall VMM server with "retain database".
-
Rename the computer name and restart the computer.
-
Rename the instance of SQL server by using the following commands.
For a renamed computer that hosts a default instance of SQL Server, run the following procedures:
sp_dropserver <old_name>;
GO
sp_addserver <new_name>, local;
GOFor a renamed computer that hosts a named instance of SQL Server, run the following procedures:
sp_dropserver <old_name\instancename>;
GO
sp_addserver <new_name\instancename>, local;
GO -
Restart the SQL service.
-
Re-install the VMM server.





