Posted On August 20, 2020

PowerShell: Take VM Snapshots

kimconnect 0 comments
blog.KimConnect.com >> Codes , Virtualization >> PowerShell: Take VM Snapshots
# takeVmSnapshot.ps1

$vmNames='Test-VM1','Cowabunga-VM4'
$snapShotLabel="Snapshot $(get-date -Format yyyyMMddTHHmmss)"

function takeVmSnapshot([string[]]$vmName,[string]$snapshotLabel){
    $vmClusterNodes=Get-ClusterGroup|?{$_.GroupType -eq 'VirtualMachine'}
    foreach ($vm in $vmName){
        $ownerNode=($vmClusterNodes|?{$vm -eq $_.Name}).OwnerNode
        if($ownerNode.State -eq 'Up'){
            $setSnapShotCommand={
                param($vm,$snapShotLabel)
                Checkpoint-VM -VMName $vm -SnapshotName $snapShotLabel
                }
            invoke-command -ComputerName $ownerNode.Name -ScriptBlock $setSnapShotCommand -Args $vm,$snapShotLabel
        }elseif($ownerNode){
            write-warning "$vm is currently owned by DOWNED node $($ownerNode.Name). No snapshots can be taken for such guest VM."
        }else{
            write-warning "$vm is does not match any Hyper-V Host in this cluster $((get-cluster).Name)"
            }
    }
}

takeVmSnapshot $vmNames $snapShotLabel

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Amazon Web Services Testing

AWS Test Procedures:   Test Control Condition: Launch an Instance by choosing Windows OS AMI…

PowerShell: Move Computer Objects in Active Directory

Version 2 # MoveComputers.ps1 # Version 0.0.2 # Obtain credentials being passed by Jenkins #…

Terminal Service Auditing – Generate Report of RDP Sessions with Certain Login Dates

# getLoginEvents.ps1 function getLoginEvents{ param( $computername=$env:computername, $daysLimit=30 ) $ErrorActionPreference='stop' try{ $logins=Get-WinEvent -ComputerName $ComputerName -LogName "Microsoft-Windows-TerminalServices-LocalSessionManager/Operational"|…