# Win11 打开Hyper-V服务 **Published by:** [Hans](https://paragraph.com/@dr-ai/) **Published on:** 2022-01-19 **URL:** https://paragraph.com/@dr-ai/win11-hyper-v ## Content 需要使用WSL,所以需要打开Hyper-V服务。在添加删除程序里找不到Hyper-V,可能因为我是Win11 Home。然后重启在BIOS里,也找不到打开类似Intel Virtualization的选项,因为我用的Dell。最后通过以下几步成功开启Hyper-V服务:随便打开一个文本编辑器,写入pushd "%~dp0" dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hv.txt for /f %%i in ('findstr /i . hv.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i" del hv.txt Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL pause 随便保存在一个位置,名字为hv.bat找到这个文件,右键以管理员运行。需要一段挺长时间下载安装。重启电脑,就可以在开始里面搜索到Hyper-V Manager了。 ## Publication Information - [Hans](https://paragraph.com/@dr-ai/): Publication homepage - [All Posts](https://paragraph.com/@dr-ai/): More posts from this publication - [RSS Feed](https://api.paragraph.com/blogs/rss/@dr-ai): Subscribe to updates - [Twitter](https://twitter.com/hans_rss3): Follow on Twitter