NetApp Community Update
This site will enter Read Only mode on July 23 as we prepare to move to a new platform. You will still be able to view content, but posting and replying will be temporarily disabled.
We're excited to launch our new Community experience on July 30 and more information will follow soon.
Stay connected during the transition - Join our Discord community today.

ONTAP Discussions

Script for Delete latest Snapshot

HUD
NetApp
3,447 Views

Hi All,

 

I need to find how to delete latest snapshot  using Yaml script or Shell Script? Does anyone have the example script.

 

or it is possible to use script for cgsnapshot retention?

 

Regards,

Hudan

2 REPLIES 2

donny_lang
3,399 Views

How about PowerShell?

 

Connect-NcController <controller hostname> 
Get-NcSnapshot <volume name> | Sort-Object -Property Created -Descending | Select -First 1 | Remove-NcSnapshot

HUD
NetApp
3,392 Views

Hi Donny, thanks for your respond,  I need bash shell script or Yaml, if you know,  please share

Public