PowerCLI to Cleanup Snapshots

PowerCLI to Cleanup Snapshots

PowerCLI to Cleanup Snapshots

# Display Snapshots
Get-Snapshot -VM * -Name ‘PreUpdate*’ | Select VM,Name,Description
# Delete Snapshots
Get-Snapshot -VM * -Name ‘PreUpdate*’ | Remove-Snapshot -RunAsync
Comments are closed.