How can I install Hyper-V on my windows 10 home edition in a verified way ?

Question

Installation of Hyper-V on windows 10 home

in progress 0
hmunezero 2 years 2022-02-09T20:44:27+00:00 1 Answer 238 views 1

Answer ( 1 )

    2
    2022-02-09T20:59:19+00:00
    This answer is edited.

    Create a  file, anywhere, using a text editor and copy the following into that file:

      1. pushd "%~dp0"

      2. dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hv.txt

      3. for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"

      4. del hv.txt

      5. Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess/ALL

      6. pause

    Now save that as hv.bat from your text editor. The desktop or download folder are good destinations for which to save and easily located for the next step.

    After exiting the editor, open file manager and right mouse click the file and choose run as administrator.

    Once complete it will reboot your machine and you can turn on Hyper-v from programs and features.

Leave an answer