Microsoft Virtualization Discussions

Howto delete a snapshot without confirmation?

dietermann
4,622 Views

Hello,

I want to delete many snapshots with the same name on different volumes and filers.

My script works, but I have to Confirm each remove-Nasnapshot.

How can I disable the Confirmation?

The cmdlet i use in the inner loop is

"remove-NaSnapshot $volName $snapName"

Best regards

Matthias Dietermann

1 ACCEPTED SOLUTION

vinith
4,622 Views

Add -confirm:$false to suppress confirmation

PS C:\Windows\system32> Remove-NaSnapshot voltest test1 -Confirm:$false

View solution in original post

2 REPLIES 2

vinith
4,623 Views

Add -confirm:$false to suppress confirmation

PS C:\Windows\system32> Remove-NaSnapshot voltest test1 -Confirm:$false

dietermann
4,621 Views

Hello Vinith,

thanks for your quick response.

This was exactly the parameter I was looking for!

(get-help remove-NaSnapshot was a little short on that parameter.)

My script runs now without interverntion!

Best regards

Matthias

Public