Groups/Get-GPPGroupMember.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
function Get-GPPGroupMember { [OutputType('GPPItemGroupMember')] Param ( [Parameter(ParameterSetName = 'ByNameGroupNameGPOName')] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOName')] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOName')] [Parameter(ParameterSetName = 'ByNameGroupNameGPOId')] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOId')] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOId')] [string]$Name, [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOId', Mandatory)] [string]$LiteralName, [Parameter(ParameterSetName = 'BySIDGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOId', Mandatory)] [System.Security.Principal.SecurityIdentifier]$SID, [Parameter(ParameterSetName = 'ByNameGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupNameGPOId', Mandatory)] [string]$GroupName, [Parameter(ParameterSetName = 'ByNameGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOId', Mandatory)] [System.Security.Principal.SecurityIdentifier]$GroupSID, [Parameter(ParameterSetName = 'ByNameGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOId', Mandatory)] [guid]$GroupUID, [Parameter(ParameterSetName = 'ByNameGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupNameGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOName', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOName', Mandatory)] [string]$GPOName, [Parameter(ParameterSetName = 'ByNameGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupNameGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOId', Mandatory)] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOId', Mandatory)] [guid]$GPOId, [Parameter(ParameterSetName = 'ByNameGroupNameGPOName')] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOName')] [Parameter(ParameterSetName = 'BySIDGroupNameGPOName')] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOName')] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOName')] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOName')] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOName')] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOName')] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOName')] [Parameter(ParameterSetName = 'ByNameGroupNameGPOId')] [Parameter(ParameterSetName = 'ByLiteralNameGroupNameGPOId')] [Parameter(ParameterSetName = 'BySIDGroupNameGPOId')] [Parameter(ParameterSetName = 'ByNameGroupSIDGPOId')] [Parameter(ParameterSetName = 'ByLiteralNameGroupSIDGPOId')] [Parameter(ParameterSetName = 'BySIDGroupSIDGPOId')] [Parameter(ParameterSetName = 'ByNameGroupUIDGPOId')] [Parameter(ParameterSetName = 'ByLiteralNameGroupUIDGPOId')] [Parameter(ParameterSetName = 'BySIDGroupUIDGPOId')] [GPPContext]$Context = $ModuleWideDefaultGPPContext ) $GetGPPGroupParameters = @{} if ($GroupUID) { $GetGPPGroupParameters.Add('UID', $GroupUID) } elseif ($GroupSID) { $GetGPPGroupParameters.Add('UID', $GroupUID) } else { $GetGPPGroupParameters.Add('LiteralName', $GroupName) } if ($GPOId) { $GetGPPGroupParameters.Add('GPOId', $GPOId) } else { $GetGPPGroupParameters.Add('GPOName', $GPOName) } $Groups = Get-GPPGroup @GetGPPGroupParameters $FilterScript = if ($SID) { {$_.sid -eq $SID} } elseif ($LiteralName) { {$_.name -eq $LiteralName} } else { $FilterName = if ($Name) { $Name } else { '*' } {$_.name -like $FilterName} } foreach ($Group in $Groups) { $Group.Properties.Members | Where-Object -FilterScript $FilterScript } } |