Skip to content

Instantly share code, notes, and snippets.

@thiagoeh
Last active March 27, 2020 12:23
Show Gist options
  • Select an option

  • Save thiagoeh/7ab5da51e39511b9af1de07706567de1 to your computer and use it in GitHub Desktop.

Select an option

Save thiagoeh/7ab5da51e39511b9af1de07706567de1 to your computer and use it in GitHub Desktop.
Enable Hyper-V on Windows 10
# https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v
Get-WindowsOptionalFeature -Online -FeatureName *hyper-v* | select DisplayName, FeatureName, State
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment