Is it possible to gather Access Template links through PowerShell?
The following script example will return Trustee and Access Template details linked to objects. This script by default queries all objects within the Active Roles management scope, but can be modified to suit your specific needs.
Connect-QADService -Proxy
$Object = Get-QADUser -DontUseDefaultIncludedProperties -IncludedProperties edsvaATLinksEffective
$EffectivePermissions = $Object.edsvaATLinksEffective
ForEach($EffectivePermission in $EffectivePermissions)
{
Get-QARSAccessTemplateLink -Identity $EffectivePermission -DontUseDefaultIncludedProperties -IncludedProperties AccessTemplate,Trustee| format-List DirectoryObject, AccessTemplate, Trustee
}
© 2025 One Identity LLC. ALL RIGHTS RESERVED. Términos de uso Privacidad Cookie Preference Center