记录我的一些生活写照、无聊的牢骚、内心世界的活动 注册 | 登陆

Win10/11家庭版开启hyper-v和gpedit.msc

Win10/11家庭版开启hyper-v和gpedit.msc

Win家庭版系统无法开启hyper-v虚拟机,也没有组策略编辑器,使用非常不方便。可以通过批处理命令快速打开。
建立 hyper-v.txt 文件,如果一下内容,保持后,改名hyper-v.cmd ,然后右键-以管理员身份运行。
XML/HTML代码
  1. pushd "%~dp0"
  2. dir /b %SystemRoot%\servicing\Packages\*Hyper-V*.mum >hyper-v.txt
  3. for /f %%i in ('findstr /i . hyper-v.txt 2^>nul') do dism /online /norestart /add-package:"%SystemRoot%\servicing\Packages\%%i"
  4. del hyper-v.txt
  5. Dism /online /enable-feature /featurename:Microsoft-Hyper-V-All /LimitAccess /ALL
建立 gpedit.txt 文件,如果一下内容,保持后,改名gpedit.cmd ,然后右键-以管理员身份运行。
XML/HTML代码
  1. pushd "%~dp0"
  2. dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~3*.mum >List.txt
  3. dir /b C:\Windows\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~3*.mum >>List.txt
  4. for /f %%i in ('findstr /i . List.txt 2^>nul') do dism /online /norestart /add-package:"C:\Windows\servicing\Packages\%%i"
或者通过修改Win系统序列号转出专业版,然后激活系统。或者用系统版本转换软件切换成专业版,也可以直接使用以上功能。

« 上一篇 | 下一篇 »

发表评论

评论内容 (必填):