Last active
September 29, 2020 19:05
-
-
Save goyuninfo/8ce92bccfea8c5228728bd56890f83fa to your computer and use it in GitHub Desktop.
Setup development environment on Windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Enable the Windows Subsystem for Linux | |
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
# Enable Virtual Machine feature | |
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart | |
# Fix windows problem | |
dism /online /cleanup-image /restorehealth | |
sfc /scannow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment