PoshCode Archive  Artifact [e2abead97a]

Artifact e2abead97a75fc77d35a7a99037d63fe66f43eeb20e7036ff7e2106ef6331709:

  • File Get-DGMembershipRule.ps1 — part of check-in [5434f3d542] at 2018-06-10 13:50:44 on branch trunk — Query a dynamic group configured in Quest ActiveRoles and return an array of each membership rule. (user: vidrine size: 1759)

# encoding: ascii
# api: powershell
# title: Get-DGMembershipRule
# description: Query a dynamic group configured in Quest ActiveRoles and return an array of each membership rule.
# version: 2014.04.07
# type: function
# author: vidrine
# license: CC0
# function: Get-DGMembershipRule
# x-poshcode-id: 5140
# x-archived: 2014-05-05T02:31:03
# x-published: 2014-05-01T19:32:00
#
#
function Get-DGMembershipRule {

    param (
        $Identity
    )

    $group = Get-QADGroup -Identity $Identity
    $strGroupDN = $group.DN

    $objGroup = $null
    $objGroup = [ADSI] "EDMS://$strGroupDN"

    $objRuleCollection = $objGroup.MembershipRuleCollection

    $results = @()
    forEach ( $rule in $objRuleCollection ) {

        $results += $rule
    }

    return $results

<#
.SYNOPSIS
   Query a dynamic group configured in Quest ActiveRoles and return an array of each membership rule.

.DESCRIPTION
   Required:
   + Quest Active Roles cmdlets
   + Quest Active Roles Management Shell

   Query a dynamic group configured in Quest ActiveRoles and return an array of each membership rule.

   Rule _Type_ Codes:
   [1]  Include By Query
   [2]  Exclude By Query
   [3]  Include Explicitly
   [4]
   [5]
   [6]

.NOTES
   Author  : Vidrine
   Date    : 2014.04.07
   Contact : vidrine.dev@gmail.com

.PARAMETER Identity
   Specify the Identity of the target group.  Primarily, this will be the distinguishedName or
   sAMAccountName for the group object.

.EXAMPLE
   Get-DGMembershipRule -Identity $groupName
   
   Base       : EDMS://OU=foo,OU=com
   Filter     : %displays_the_LDAP_query%
   Type       : %see_description_for_list_of_values%
   BaseGuid   : 
   IsModified :
#>
}