-
-
Save mskf3000/6bf082ed8d733312b2813a9971707bd1 to your computer and use it in GitHub Desktop.
Disabling/Enabling Hyper-V via Powershell ("Run As Administrator")
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
| # 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