总体上Windows 11的操作界面有点像MAC OS等其他Linux系统,个人感觉是为了适应PAD形式的移动设备。
命令行有cmd、powershell,两者都可以使用普通模式与管理员模式。切换管理员模式时,可以使用Shift+右键,调出菜单,再点选“以管理员身份运行”;也可以直接使用命令切换“start-process cmd/powershell -verb runas"。
Hyper-V家庭版本是没有默认开放的,在添加删除服务里也没有,需要使用下面的方式调出
首先,把下面的脚本创建一个Bat文件。
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
然后,进入管理员模式运行上述的Bat文件,成功后重启
shutdown /r /t 0
此时,可下面的指令调启、停用Hyper-V服务的选项了。
OptionalFeatures.exe
注意:Hyper-V与virtual-box、VMWare不兼容,可以通过下面的方式开启、关闭hyper-v,需要进入管理员模式
bcdedit /set hypervisorlaunchtype off
bcdedit /set hypervisorlaunchtype auto
启用停用需重启才能生效。