powershell 通过PowerShell使用Hyper-V和快照/检查点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 通过PowerShell使用Hyper-V和快照/检查点相关的知识,希望对你有一定的参考价值。
# --- VM ---
## get hyper-v info
Get-VMHost -ComputerName computer_name | format-list *
#3 get VMs info
Get-VM -ComputerName computer_name
## get VM info
Get-VM -ComputerName computer_name -name vm_name
##start/stop
Stop-vm -name vm_name
Start-vm -name vm_name
## import VM
Import-VM -Path 'D:\Test\Virtual Machines\xxxxxxx-xxx.XML' –Copy -GenerateNewId
## export VM
Export-VM –Name vm_name –Path 'D:\Test\Virtual Machines\'
# --- Snapshots/Checkpoints ---
## create snapshot
Checkpoint-VM -ComputerName computer_name -VMName vm_name -SnapshotName "my first snapshot"
## list snapshots
Get-VMSnapshot -ComputerName computer_name -VMName vm_name
## restore snapshot
Restore-VMSnapshot -ComputerName computer_name -VMName vm_name -Name "my first snapshot" -Confirm:$false
## remove snapshop
Remove-VMSnapshot -ComputerName computer_name -VMName vm_name -Name *
## export snapshop
Export-VMSnapshot –Name 'Base Image' –VMName vm_name –Path 'D:\Test\Virtual Machines\'
以上是关于powershell 通过PowerShell使用Hyper-V和快照/检查点的主要内容,如果未能解决你的问题,请参考以下文章
powershell 通过PowerShell使用Hyper-V和快照/检查点
powershell [AD - 创建/编辑AD用户]通过powershell创建/编辑AD用户,使用纯文本密码#Windows #Powershell #ActiveDirectory
Powershell通过变量数组批量添加保留地址
通过 WinRM 重新使用 PowerShell 会话
PowerShell小技巧:通过Powershell 发送消息给企业微信机器人
通过 powershell 在 jenkins 中使用 AnsiColor