Enable Hyper-V on Windows Home Editions
Hyper-V Is Missing on Window 10 -Home Edition Let us Fix it.
➤How to Enable Hyper-V on Windows Home Editions
Unfortunately, you can't enable the Hyper-V feature in Windows 10 Home as it is not supported. You need at least Pro or higher edition with 64-bit installation for using Hyper-V. ... Windows 10 Home edition doesn't support Hyper-V feature, it can only be enabled on Windows 10 Enterprise, Pro, or Education
Now let us see How to Fix this Issue,
Step 1: Open Cmd As an Administrator
Step 2: Copy and paste the following command to Cmd after that Hit Enter. it works 100%;
Enable Hyper-V use below Comman code
@echo off pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >List.txt
for /f %i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%i"
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause
Disable (Remove) Hyper-V use the below Command
Dism /online /Disable-Feature /FeatureName:Microsoft-Hyper-V /Remove
You, Will, Get this KInd of Operation when you copy and paste the above code on to Cmd
Finally When you have Reached The Below Step Enter yes or "y " to Restart your Computer and Finish.
Leave a Comment