Removing access template links from formerly managed domains

Hello,

Does anyone have ways of removing AR configuration from domains that are no longer managed by an AR instance ?  We have some decommed domains that had accesses defined but are no longer needed. Is there a way to clean up those items from the config db that will no longer be applied?

Parents Reply
  • You could add a filter into your Get-QARSAccessTemplateLink, to add -LDAPFilter "(!(tTrustee=*))" along with -SizeLimit, which would get all ATL's where the Trustee is not present

    IE:

    $ATLinks = Get-QARSAccessTemplateLink -SearchRoot "CN=AT Links,CN=Configuration" -Predefined $false -LdapFilter "(!(Trustee=*))" -SizeLimit 0 -Proxy 

Children