17 lines
664 B
PowerShell
Executable File
17 lines
664 B
PowerShell
Executable File
#!/usr/bin/env pwsh
|
||
|
||
. /opt/idssys/powerwall/settings.ps1
|
||
|
||
Connect-VIServer -Server $VCENTERHOST -Protocol https -User $VCENTERUSER -Password $VCENTERPASS | Out-Null
|
||
|
||
write-host "\033[2K\e[0K\r" -NoNewline
|
||
write-host "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
|
||
|
||
Disconnect-VIServer -Server $VCENTERHOST -Force –Confirm:$false
|