For customization of the Product , please contact our Professional Services Organization.
1] Run the following SQL query in SQL Management Studio on the SQL server for Archive Manager to query all the disabled users and show related mailbox which has permission to access
Joinmailbox m
on m.MailBoxID = lm.MailBoxID
Join login L
onL.LoginID = m.OwnerLoginID
where l.Active <> 1 and l.OrganisationalUnit = 'CN=Users,DC=xxxx,DC=xxxx,DC=com' , where xxx indicates the actual domain
2] Run the following SQL query in SQL Management Studio on the SQL server for Archive Manager to delete access to disabled mailbox
DeleteloginMailbox
From Loginmailbox lm
Join mailbox m
on m.MailBoxID = lm.MailBoxID
Join login L
on L.LoginID = m.OwnerLoginID
where l.Active <> 1 and l.OrganisationalUnit = 'CN=Users,DC=xxx,DC=xxx,DC=com' , where xxx indicates the actual domain
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center