vendredi 11 septembre 2015

Retrieving a VM Snapshot path from vCenter using Powershell

Sometime, retrieving the path of a VMware VM's Snapshot can prove useful.

As we've had to automate the deployment of some VMware Horizon Pools using Powershell, the cmdlet Add-AutomaticLinkedCLonePool was asking for a Snapshot path as an input with the "ParentSnapshotPath" parameter.

So here's the function that answered this need!

#Requires -Version 3.0


Function Get-VMSnapshotPath {

<#

    .SYNOPSIS

            This function will return a VM's Snapshot path

    .DESCRIPTION

            This function will return a VM's Snapshot path

    .PARAMETER  Snapshot

            Specifies a VM Snapshot

    .EXAMPLE

            Get-Snapshot -VM (Get-VM "Master") -Name "BaseSnapshot" | Get-VMSnapshotPath


            /BaseSnapshot

    .EXAMPLE

            Get-Snapshot -VM (Get-VM "Master") -Name "SecondSnapshot" | Get-VMSnapshotPath


            /BaseSnapshot/SecondSnapshot

    .EXAMPLE

            (Get-VM "Master"), (Get-VM "MasterVDI") | Get-Snapshot | Get-VMSnapshotPath


            /BaseSnapshot

            /BaseSnapshot/SecondSnapshot

            /VDIBaseSnapshot

    .NOTES

            NAME:     Get-VMLogicalPath

            AUTHOR:   ROULEAU Benjamin

            LASTEDIT: 2015-02-05

    .LINKS

            http://katalykt.blogspot.fr/

#>

    [CmdletBinding()]

    PARAM(

        [Parameter(

            Mandatory,

            ValueFromPipeline,

            ValueFromPipelineByPropertyName)]

        [VMware.VimAutomation.ViCore.Impl.V1.VM.SnapshotImpl]$Snapshot

    )


    BEGIN {

        

    }


    PROCESS {

        $Snapshot | ForEach-Object {

            Write-Verbose -Message ("[PROCESS - Get-VMSnapshotPath] Retrieving the path of Snapshot: '{0}' on VM : '{1}'" -f $_.Name, $_.VM.Name)


            # We retrieve the Snapshot path up the the root of the VM

            $VMo = $_

            $Path = ""

            WHILE ($VMo) {

                $Path = "/" + $VMo.Name + $Path

                $VMo = $VMo.ParentSnapshot

            }


            $Path

        }

    }


    END {


    }

}

1 commentaire:

  1. Harrah's Cherokee Casino & Hotel - Jackson County - JTM
    Harrah's Cherokee Casino 양주 출장샵 & Hotel, 의정부 출장마사지 a 24-hour gaming area 목포 출장마사지 offering 구미 출장마사지 live entertainment, is expanding to include 서귀포 출장마사지 a casino, lounge, and bar.

    RépondreSupprimer