Skip to content

Instantly share code, notes, and snippets.

@samuel-fonseca
Created August 12, 2020 00:38
Show Gist options
  • Save samuel-fonseca/662a620ae32aca254ea7730be5ff7145 to your computer and use it in GitHub Desktop.
Save samuel-fonseca/662a620ae32aca254ea7730be5ff7145 to your computer and use it in GitHub Desktop.
Enable Hyper-V & Containers for Win10 Home - [Detailed Guide](https://itnext.io/install-docker-on-windows-10-home-d8e621997c1d)
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
pause
pushd "%~dp0"
dir /b %SystemRoot%\servicing\Packages\*containers*.mum >containers.txt
for /f %%i in ('findstr /i . containers.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
del containers.txt
dism /online /enable-feature /featurename:Containers -All /LimitAccess /ALL
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment