Does anyone know how to get the serial number of a PAM card from Powershell? I've seen the cmdlet Get-NaFlashDevice and the help shows:
 C:\PS>Get-NaFlashDevice
 Gets a list of all the flash devices installed on the current controller.
 AverageEraseCycleCount : 21
 Capacity               : 274877906944
 FirmwareRevision       : 1:6
 LastChangeTime         : 0
 LastChangeTimeDT       :
 ModelName              : X1937A-R5
 PartNumber             : 111-00660
 PercentOnline          : 100
 SerialNumber           : 5000009783
 ServiceTime            : 11344
 ServiceTimeTS          : 472.16:00:00
 SlotNumber             : 2
 Status                 : online
 ThresholdProfile       : default
but when I run Get-NaFlashDevice it gives me tabular output without the serial number:
PS C:\> Get-NaFlashDevice
SlotNumber      ModelName FirmwareRevision   Status   Capacity  PercentOnline      ServiceTimeTS
----------      --------- ----------------   ------   --------  -------------      -------------
        13      X1971A-R5              2:2   online     512 GB           100%       101.17:00:00
Have I missed a switch?