Update get-snapshots.ps1

This commit is contained in:
2023-10-21 20:26:50 -05:00
parent 4fed9993c3
commit 7d0ef83d3f

View File

@@ -4,5 +4,5 @@
Connect-VIServer -Server $args[0] -Protocol https -User $ESXiUsername -Password $ESXiPassword | Out-Null
get-vm | get-snapshot | select vm, name, description, created, sizegb
get-vm | get-snapshot | where {($_.name -notlike '_replica')} | select vm, name, description, created, sizegb