Function to get the format views for a particular type.
format output\Get-FormatView.ps1
https://powershellone.wordpress.com/2015/03/09/powershell-format-table-views/
Get-FormatView [-TypeName] <Object>
Format views are defined inside the format.ps1xml files and represent named sets of properties per type which can be used with any of the Format- cmdlets. Retrieving the format views for a particular type can be accomplished by pulling out the information from the respective XML files using this function.
Get-Process | Get-FormatView | Format-Table -Auto
{{Fill TypeName Description}}
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: Falsehttps://powershellone.wordpress.com/2015/03/09/powershell-format-table-views/