Powershell Tip #86: List Security Filtering of a GPO By powershellgu | December 4, 2015 0 Comment Tip: You can list the groups defined in Security Filtering : PowerShell Get-GPPermission -Name 'FINANCE - Printers' -All | Where Permission -eq GpoApply 1 Get-GPPermission -Name 'FINANCE - Printers' -All | Where Permission -eq GpoApply Note 1 : Get-GPPermission requires GroupPolicy. Note 2 : Get-GPPermissions is an alias of Get-GPPermission.