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
hyper-v hyper-v-manager hyperv microsoft-hypervisor-platform
Last synced: 2 months 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 (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-11T06:29:27.000Z (11 months ago)
- Last Synced: 2025-02-07T01:46:37.370Z (4 months ago)
- Topics: hyper-v, hyper-v-manager, hyperv, microsoft-hypervisor-platform
- Language: Batchfile
- Homepage:
- 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.