Skip to content

Instantly share code, notes, and snippets.

@mskf3000
Forked from Adron/disable-hyper-v.ps1
Created November 16, 2020 20:02
Show Gist options
  • Select an option

  • Save mskf3000/6bf082ed8d733312b2813a9971707bd1 to your computer and use it in GitHub Desktop.

Select an option

Save mskf3000/6bf082ed8d733312b2813a9971707bd1 to your computer and use it in GitHub Desktop.
Disabling/Enabling Hyper-V via Powershell ("Run As Administrator")
# Remember, all of these commands need executed via Powershell that is started/opened with "Run As Administrator".
# Disabling Hyper-V
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V-Hypervisor
# Enabling Hyper-V
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
# You may also want DSIM enabled with all this, here's that detail.
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment