jslate1980 Posted May 18, 2016 Posted May 18, 2016 Hi I am currently trying to enable auditing of mailboxes on all non-owner mailbox access. I know I have to run these powershell cmds:- $UserMailboxes = Get-mailbox -Filter {(RecipientTypeDetails -eq 'UserMailbox')} $UserMailboxes | ForEach {Set-Mailbox $_.Identity -AuditEnabled $true} I have over 1000 mailboxes to change so what do I need to change with the script for it to work? Regards Jon
lostsoul Posted May 18, 2016 Posted May 18, 2016 When I needed to do this I used this guide: https://www.cogmotive.com/blog/office-365-tips/enable-mailbox-auditing-for-office-365-users Remember to check what is audited by default, and customize if needed. You will also need to add a step to your account creation process, as accounts created in the future will have default settings. 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now