Skip to content

Instantly share code, notes, and snippets.

View staferfield's full-sized avatar
🖼️
Distracted

Stevi S staferfield

🖼️
Distracted
  • Indonesia
View GitHub Profile
@staferfield
staferfield / Hyper-v_Uninstaller.bat
Created May 13, 2022 14:57
Uninstall Hyper-v on windows 10/11 Home assuming it was installed with workaround. Require running as admin.
pushd "%~dp0"
Dism /online /disable-feature /featurename:Microsoft-Hyper-V-All
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 /remove-package:"%SystemRoot%\servicing\Packages\%%i"
del hyper-v.txt
pause