Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muhammedzohaib/enable-hyperv
A PowerShell script to enable or install Hyper-V along with Hyper-V Manager
https://github.com/muhammedzohaib/enable-hyperv
Last synced: 5 days ago
JSON representation
A PowerShell script to enable or install Hyper-V along with Hyper-V Manager
- Host: GitHub
- URL: https://github.com/muhammedzohaib/enable-hyperv
- Owner: MuhammedZohaib
- Created: 2024-07-11T06:19:19.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T06:29:27.000Z (7 months ago)
- Last Synced: 2024-07-11T07:54:19.224Z (7 months ago)
- Language: Batchfile
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Enable Hyper-V
This repository contains a script to enable or install Hyper-V along with Hyper-V Manager.
## Instructions
1. Clone or download the repository to your local machine.
2. Locate the `Enable Hyper-V.bat` file in the downloaded folder.
3. Right-click the `Enable Hyper-V.bat` file and select "Run as administrator".```powershell
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
```## Notes
- Make sure to run the script as an administrator to ensure it has the necessary permissions.
- This script is intended for systems that support Hyper-V.