Windows10 安装 Hyper-V 服务
本方案已经在Windows10 x86-64 家庭版上通过测试,Hyper-V服务部署与虚拟机安装运行、网络配置均正常。
安装方法如下:
1、编辑Hyper-V服务安装脚本。
创建Install_Hyper-V.bat文件,并粘贴以下5行脚本并保存。
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
2、以管理员身份运行Install_Hyper-V.bat 开始安装,安装过程可能需要5-10分钟,安装完成后重启电脑。
3、在开始菜单搜索并打开Hyper-V管理器,开始部署你的第一个虚拟机。
Linux 操作系统日志垃圾清理 /var/log/journal/ 解决Linux系统下sudo提权卡顿延迟变慢的问题
Comments are currently closed.