Dear frostine,
Based on your description, it looks like the system is unable to complete the installation of Hyper-V, Virtual Machine Platform, and WSL through the “Turn Windows features on or off” menu. The error message “We can't complete the updates, undoing changes” typically points to a system-level conflict or missing components.
Here are Recommended steps to resolve:
- Check BIOS settings Restart your computer and enter BIOS/UEFI setup (usually by pressing
F2,Del, orEscduring startup). Ensure that Intel VT-x or AMD-V is enabled. This is required for Hyper-V and WSL2. - Run system health checks Open Command Prompt as administrator and run:
- Code
sfc /scannow
- Code
DISM /Online /Cleanup-Image /RestoreHealth ```
These commands will scan and repair system files that may be preventing feature installation.
- Use PowerShell to enable features Try enabling the features manually using PowerShell (run as administrator):
- powershell
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
- powershell
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:Hyper-V /all /norestart ```
Then restart your computer and check if the features are active.
- Check for pending updates Go to Settings > Windows Update and install any pending updates. Sometimes, missing prerequisites can block feature installation.
If this guidance proves helpful, feel free to click “Accept Answer” so we know we’re heading in the right direction 😊. And of course, I’m here if you need further clarification or support.
T&B,
Domic Vo