<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Snapcenter plug in for VMWare _recent name in Data Protection</title>
    <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/145122#M12208</link>
    <description>&lt;P&gt;How about something like this (indended to be a .ps1 file):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;param (
	[parameter(Mandatory = $true, position = 0)]
	[string]$NcController,
	
	[parameter(Mandatory = $true, position = 1)]
	[string]$Vserver,
	
	[parameter(Mandatory = $true, position = 2)]
	[string]$Volume
)

Import-Module DataONTAP

# Read an encrypted password from a file.
# To create the file:&lt;BR /&gt;# Read-Host "Enter Password" -AsSecureString | ConvertFrom-SecureString | Out-File "cdot-admin"&lt;BR /&gt;#&lt;BR /&gt;# NOTE: Only readable on the computer where it is created and only by the user who created it.&lt;BR /&gt;#       The SnapCenter plugin service will need to run as this user&lt;BR /&gt;
$NcPassword = Get-Content "cdot-admin" | ConvertTo-SecureString
$NcUser = "admin"
$NcCredential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $NcUser, $NcPassword

$NcController = Connect-NcController -Name $NcController -Credential $NcCredential

If ($global:CurrentNcController -eq $null) {
	throw "Error: Not connected to NetApp Controller"
}

$FoundVservers = Get-NcVserver -Vserver $Vserver
If ( $FoundVservers.Count -eq 0 ) {
	throw "Error: Vserver not Found"
} elseif ( $FoundVservers.Count -gt 1 ) {
	throw "Error: Multiple Vservers Found. Specify a single Vserver"
}

$FoundVolumes = Get-NcVol -Vserver $Vserver -Volume $Volume
If ( $FoundVolumes.Count -eq 0 ) {
	throw "Error: Volume not Found"
} elseif ( $FoundVolumes.Count -gt 1 ) {
	throw "Error: Multiple Volumes Found. Specify a single Volume"
}

# This sets up a Query template to return all atributes of a SnapShot
# For why this is necessary read this thread
#
# https://community.netapp.com/t5/Microsoft-Virtualization-Discussions/NetApp-PowerShell-Toolkit-4-3-0-msi-can-t-list-SnapMirrorLabels-in-Ontap-9-1/td-p/127442

$SsQuery = Get-NcSnapshot -Template

$SsQuery.psobject.Properties | ?{ $_.IsGettable -eq $true -and $_.IsSettable -eq $true } | %{
    $property = $_.Name 

    try {
        $SsQuery.($property) = $true
    } catch {
        $SsQuery.($property) = $null
    }
}
&lt;BR /&gt;# Don't want to change any SnapMirror snapshots&lt;BR /&gt;# NOTE: We don't use SnapVault. If you do then you may need to change the Dependency strings you're excluding
$AllSnapshots = Get-NcVol -vserver $Vserver -name $Volume | Get-NcSnapshot -Attributes $SsQuery | where-object { $_.Dependency -NotMatch "snapmirror"}
$LatestSnapshot = $AllSnapshots | Sort-Object -Property Created | Select-Object -Last 1

If ($LatestSnapshot.Name -like "*_recent") {
	throw "Latest Snapshot already named _recent"
}

$SnapName = $LatestSnapshot.Name

# This expects the snapshot name to be of the form Resource_SnapCenterServer_MM-DD-YYYY_HH.MM.SS.ssss
# Going to split this using the "_" character, drop the "HH.MM.SS.ssss" portion, then rename MM-DD-YYYY to "recent"
#
# This can _probably_ be done with an appropriate regular expression and the -Replace method, 
# but if there are "_" characters in the resource or server names the regular expression could change the wrong things

$SnapNameSplit = $SnapName -split "_"
$SnapNameSplit = $SnapNameSplit[0..($SnapNameSplit.Length-2)]
$SnapNameSplit[$SnapNameSplit.Length-1] = "recent"

# Then put it all back together
$NewSnapName = $SnapNameSplit -join "_"

# Set the Comment field to the original Name so we can put it back later
# Doing it this way means we can run these scripts from anywhere and don't depend on local files to track the changes
$LatestSnapshot.Comment = $LatestSnapshot.Name
$UpdatedSnapshot = Update-NcSnapshot -Query @{ "name" = $SnapName; "vserver" = $Vserver; "volume" = $Volume} -Attributes $LatestSnapshot

# And finally rename the snapshot
$RenamedSnapshot = Rename-NcSnapshot -VserverContext $Vserver -Volume $Volume -Snapshot $SnapName -NewName $NewSnapName
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To rename back to the original&amp;nbsp;replace everything&amp;nbsp;after setting up the $SsQuery template with this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;# Snapshots that start with "smvi" are pre-7.0 VSC snapshots and shouldn't be renamed&lt;BR /&gt;$RecentSnapshot = Get-NcVol -vserver $Vserver -name $Volume | Get-NcSnapshot -Attributes $SsQuery | where-object { ($_.Name -like "*_recent")&amp;nbsp;-and ($_.Name -notlike "smvi*") }&lt;BR /&gt;If ( ($RecentSnapshot).Count -eq 0 ) {&lt;BR /&gt; throw "Error: Snapshot named '_recent' not found"&lt;BR /&gt;} elseif ( ($RecentSnapshot). Count -gt 1 ) {&lt;BR /&gt; throw "Error: More than one '_recent' Snapshot found"&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;$RenamedSnapshot = Rename-NcSnapshot -VserverContext $Vserver -Volume $Volume -Snapshot $RecentSnapshot.Name -NewName $RecentSnapshot.Comment&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;EDIT: Minor typos&lt;/P&gt;</description>
    <pubDate>Mon, 03 Dec 2018 18:20:17 GMT</pubDate>
    <dc:creator>tbernhardson</dc:creator>
    <dc:date>2018-12-03T18:20:17Z</dc:date>
    <item>
      <title>Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/135999#M11683</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When is the ordinal or generic (_recent) snapshot naming ability going to be added to snapcenter plug in for VMWare? Unfortunately i still do NDMP backups to tape and need a consistent name on the snapshot. It would be nice if NetApp built this functionality into SnapCenter considering SMVI is no longer an option for customers running the latest versions of vSphere and Data OnTap.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 14 Nov 2017 18:59:44 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/135999#M11683</guid>
      <dc:creator>bhirsch</dc:creator>
      <dc:date>2017-11-14T18:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/138565#M11820</link>
      <description>&lt;P&gt;Does anyone have any update for this?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Mar 2018 10:39:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/138565#M11820</guid>
      <dc:creator>smeijboom</dc:creator>
      <dc:date>2018-03-02T10:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/138860#M11833</link>
      <description>&lt;P&gt;An update would be great, as i am in the same position now.. Did you manage to work around the issue? Maybe run a post-script?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Mar 2018 13:22:55 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/138860#M11833</guid>
      <dc:creator>Rmindin</dc:creator>
      <dc:date>2018-03-14T13:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139135#M11843</link>
      <description>&lt;P&gt;we need it also...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any new Informations?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Mar 2018 12:13:34 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139135#M11843</guid>
      <dc:creator>Fabian1993</dc:creator>
      <dc:date>2018-03-26T12:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139229#M11847</link>
      <description>&lt;P&gt;I just reverted back to VSC 6.2.1P1 because i couldn't get in working properly in the timeframe i had.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Mar 2018 07:32:39 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139229#M11847</guid>
      <dc:creator>smeijboom</dc:creator>
      <dc:date>2018-03-29T07:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139273#M11850</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently we don't have a capability to add _recent in SnapCenter Plug-in for VMware vSphere. There is no workaround either to my knowledge.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We do have a cmdlet to get the latest snapshot in SnapCenter (see below) but unfortunately SCV plug-in doesn't supports cmdlets&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Get-SmBackup -AppObjectName 'NetApp'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BackupId&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupName&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupTime&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupType&lt;/P&gt;
&lt;P&gt;--------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&lt;/P&gt;
&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vise-f7_NetApp_vise-f7_02-... 2/8/2018 2:42:08 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Full Backup&lt;/P&gt;
&lt;P&gt;15&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vise-f7_NetApp_vise-f7_02-... 2/13/2018 2:41:10 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Full Backup&lt;/P&gt;
&lt;P&gt;23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vise-f7_NetApp_vise-f7_02-... 2/28/2018 5:54:04 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Full Backup&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt; Get-SmBackup -AppObjectName 'NetApp' | select -Last 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BackupId&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupName&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupTime&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BackupType&lt;/P&gt;
&lt;P&gt;--------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ----------&lt;/P&gt;
&lt;P&gt;23&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vise-f7_NetApp_vise-f7_02-... 2/28/2018 5:54:04 PM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Full Backup&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SCV plug-in version 4.1 is coming with REST API support in Aug'18, using which you can get hold of the latest snapshot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;_recent tag will be introduced in SCV 4.1 currently planned for Jan'19. We haven't passed Phase 2 so the feature is not yet committed by engineering.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Apr 2018 06:16:04 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139273#M11850</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-04-01T06:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139275#M11851</link>
      <description>&lt;P&gt;Sorry typo:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;_recent tag will be introduced in &lt;U&gt;&lt;STRONG&gt;SCV 4.2&lt;/STRONG&gt;&lt;/U&gt; currently planned for Jan'19. We haven't passed Phase 2 so the feature is not yet committed by engineering.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Apr 2018 06:17:53 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139275#M11851</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-04-01T06:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139426#M11857</link>
      <description>&lt;P&gt;and VSC 6.2.1 is in March' 19 &lt;STRONG&gt;EOS&lt;/STRONG&gt; right?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 14:59:01 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139426#M11857</guid>
      <dc:creator>Fabian1993</dc:creator>
      <dc:date>2018-04-06T14:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139442#M11858</link>
      <description>&lt;P&gt;That is correct. VSC 6.2.x will go End of Version Support (or go in self-service support model) beginning 1-Mar-2019. Details can be accessed from here: &lt;A href="https://mysupport.netapp.com/info/web/ECMP1147223.html?access=a" target="_blank"&gt;https://mysupport.netapp.com/info/web/ECMP1147223.html?access=a&lt;/A&gt; under &lt;STRONG&gt;&lt;FONT color="#454545"&gt;General Software End of Version Support Table&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Apr 2018 05:28:19 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139442#M11858</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-04-09T05:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139945#M11882</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I represnt the Product Management team and have a query on this particular ask.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Since customers anyway need this functionality (locating the latest snapshot via _recent tag) &lt;U&gt;&lt;STRONG&gt;to script&lt;/STRONG&gt;&lt;/U&gt; dumping the snapshot to NDMP or tapes, will customers be ok using &lt;U&gt;&lt;STRONG&gt;just&lt;/STRONG&gt;&lt;/U&gt; the REST API to locate the latest snapshot?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;OR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You would like to see the latest snapshot with _recent tag in the SCV GUI itself, something what VSC 6.x used to provide?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Basically, the ask is how many customers would be ok scripting this Vs actually looking for a configurable option in SCV GUI?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Ashish&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 12:21:36 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139945#M11882</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-04-30T12:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139946#M11883</link>
      <description>&lt;P&gt;I'd like to see this functionality in the GUI. When i was using SMVI it was in the GUI. Why would you replace a product and not keep existing functionality??? I can see adding more but never removing.&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 12:30:48 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139946#M11883</guid>
      <dc:creator>bhirsch</dc:creator>
      <dc:date>2018-04-30T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139948#M11884</link>
      <description>&lt;P&gt;In the GUI please.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Maybe a question that should have been asked before removing it from the client.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 13:08:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139948#M11884</guid>
      <dc:creator>smeijboom</dc:creator>
      <dc:date>2018-04-30T13:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139949#M11885</link>
      <description>&lt;P&gt;The most Customer needed this function again in the GUI, hardly any overrun api..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks a lot for pushing the Function!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 13:24:24 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139949#M11885</guid>
      <dc:creator>Fabian1993</dc:creator>
      <dc:date>2018-04-30T13:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139962#M11886</link>
      <description>&lt;P&gt;We also need it in the GUI. The software that manages our NDMP to tape backups does not support a scripting solution.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 20:12:46 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/139962#M11886</guid>
      <dc:creator>tbernhardson</dc:creator>
      <dc:date>2018-04-30T20:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140428#M11915</link>
      <description>&lt;P&gt;So are we going to see this capability soon? Would love to be able to differentiate my backups.&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 14:58:47 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140428#M11915</guid>
      <dc:creator>bhirsch</dc:creator>
      <dc:date>2018-05-22T14:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140429#M11916</link>
      <description>&lt;P&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/11638"&gt;@bhirsch&lt;/a&gt;, we are currently planning to support _recent naming in SCV plug-in for SnapCenter 4.2 release planned for Jan'19 release. The idea is to get this live before VSC 6.2.x goes End of Version Support in Mar'19.&lt;/P&gt;</description>
      <pubDate>Tue, 22 May 2018 15:06:28 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140429#M11916</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-05-22T15:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140912#M11931</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm from support, and I found that the vSphere Plugin does support pre- and postscripting as documented on page 31.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the scripts get the snapshot names in the environment variables, why didn't anyone consider to create a post-script&lt;/P&gt;
&lt;P&gt;that adjusts the backup script to use that particular snapshot name ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it because the path for each backup would be different ?&lt;/P&gt;
&lt;P&gt;Or that the tape backup has to be started through a script ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Olaf Leimann.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 12:04:02 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140912#M11931</guid>
      <dc:creator>olaf</dc:creator>
      <dc:date>2018-06-14T12:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140921#M11932</link>
      <description>&lt;P&gt;This would not work in our environment. While we can execute an existing job definition through a script, backup jobs can only be defined via a GUI. There is no command line or scripting interface to define or modify a backup job definition.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jun 2018 15:11:42 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/140921#M11932</guid>
      <dc:creator>tbernhardson</dc:creator>
      <dc:date>2018-06-14T15:11:42Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/144741#M12186</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it now confirmed that the _recent snapshot facility will be a feature in version 4.2 for NDMP backup? I have a requirement for this for a project early next year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Simon&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 11:20:58 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/144741#M12186</guid>
      <dc:creator>spwilkinson</dc:creator>
      <dc:date>2018-11-19T11:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Snapcenter plug in for VMWare _recent name</title>
      <link>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/144760#M12187</link>
      <description>&lt;P&gt;Unfortunately, _recent functionality is not part of the SC 4.2 roadmap. It was initially planned but dropped later due to lack of engineering bandwidth and change in business priorities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 04:25:09 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Data-Protection/Snapcenter-plug-in-for-VMWare-recent-name/m-p/144760#M12187</guid>
      <dc:creator>AshishGupta</dc:creator>
      <dc:date>2018-11-20T04:25:09Z</dc:date>
    </item>
  </channel>
</rss>

