Update get-snapshots.ps1

This commit is contained in:
2024-01-26 16:43:32 -06:00
parent 3b35808e1a
commit 405dce1250

View File

@@ -4,13 +4,13 @@
Connect-VIServer -Server $VCENTERHOST -Protocol https -User $VCENTERUSER -Password $VCENTERPASS | Out-Null
write-host "\033[2K\e[0K\r" -NoNewline
write-host "Gathering Snapshots ..."
echo -en "\033[2K\e[0K\r" -NoNewline
echo -en "Gathering Snapshots ..."
$snapshots = get-vm | get-snapshot | where {($_.vm -notlike '*_replica')} | select vm, name, description, created, sizegb
# get-vm | get-snapshot | where {($_.vm -notlike '*_replica')} | select vm, name, description, created, sizegb | ConvertTo-Json -Depth 1 -WarningAction:SilentlyContinue
write-host "\033[2K\e[0K\r" -NoNewline
write-host $snapshots
echo -en "\033[2K\e[0K\r"
echo -e "$snapshots"
Disconnect-VIServer -Server $VCENTERHOST -Force Confirm:$false