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

Microsoft Dynamics – Selecting an Org

# These two functions are convenient for CRM admins to quickly gather a hosted organization…

Manually Create a SSL Certificate with LetsEncrypt

Step 1: Install certbot-auto mkdir /etc/letsencryptcd /etc/letsencrypt/wget chmod a+x certbot-auto Step 2: Create the Cert…

PowerShell: Convert Between Various SSL Certificate Formats

# Install Choco (look for instructions in this blog)# Install openssl.lightchoco install openssl.light -y #…