Retrieving current Protection Group Snapshot information

Microsoft Platform Guide

Audience
Public
Source Type
Documentation

$pgs = Get-PfaProtectionGroups -array $FlashArray | Select-Object Name
foreach ($pg in $pgs) {
    Get-PfaProtectionGroupSnapshots -array $FlashArray -Name $pg.name | Select-Object Name,created | Format-Table -AutoSize
}