Windows 10 上内置了 Hyper-V。Hyper-V 提供硬件虚拟化,每个虚拟机都在虚拟硬件上运行。
在命令行中输入一下内容可查看硬件支持情况:
> systeminfo
微星 A320 主板开启虚拟化技术:
Del 键进入 BIOS 设置 / Overclocking Settings / Other Settings / CPU Features / SVM Mode / Enabled / F10 保存退出
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V
返回虚拟机列表:
# 查看所有虚拟机
Get-VM
# 查看已启动的虚拟机列表
Get-VM | where {$_.State -eq ‘Running‘}
# 查看关机状态的虚拟机列表
Get-VM | where {$_.State -eq ‘Off‘}
启动和关闭虚拟机:
# 启动特定虚拟机
Start-VM -Name <virtual machine name>
# 启动所有已关机的虚拟机
Get-VM | where {$_.State -eq ‘Off‘} | Start-VM
# 关闭所有正在运行的虚拟机
Get-VM | where {$_.State -eq ‘Running‘} | Stop-VM
创建 VM 检查点:
Get-VM -Name <VM Name> | Checkpoint-VM -SnapshotName <name for snapshot>
原文:https://www.cnblogs.com/danhuang/p/12617745.html