Hello,
Using powershell, I know how to copy/paste my snapshots to the clipboard
Get-NcVol dmz_vmware_t1_nfs11_dst | get-ncsnapshot | Select-Object Name | clip
Once I find the snapshot I want to delete it using powershell, but it fails
Get-NcVol dmz_vmware_t1_nfs11_dst | get-ncsnapshot | Select-Object "xxx-vc1 tier 1_11-29-2020_18.40.00.0426"| Remove-NcSnapshot
What am I doing wrong?
Should I do this instead?
Get-NcVol dmz_vmware_t1_nfs11_dst | get-ncsnapshot | | {$_.name -like "xxx-vc1 tier 1_11-29-2020_18.40.00.0426"} | remove-ncsnapshot -Confirm:$False
Thanks in advance