Logon
How to check who and all are accessing particular mailbox in Exchang
April 16th, 2015 7:42am

Here is a good site that lays it all out for you:

http://www.msexchange.org/articles-tutorials/exchange-server-2010/compliance-policies-archiving/auditing-mailbox-access.html

Free Windows Admin Tool Kit Click here and download it now
April 16th, 2015 7:48am

Hi Charles

Thanks

But I am not looking for Audit

*Currently who and all accessing a particular mailbox is enough

April 16th, 2015 10:17am

Try this, just enter the mailbox you're looking at:

Get-Mailbox -identity "mailbox name here" | Get-MailboxPermission | where {$_.user.tostring() -ne "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false}

Free Windows Admin Tool Kit Click here and download it now
April 16th, 2015 10:57am

Here is a good site that lays it all out for you:

http://www.msexchange.org/articles-tutorials/exchange-server-2010/compliance-policies-archiving/auditing-mailbox-access.html

April 16th, 2015 11:46am

Here is a good site that lays it all out for you:

http://www.msexchange.org/articles-tutorials/exchange-server-2010/compliance-policies-archiving/auditing-mailbox-access.html

Free Windows Admin Tool Kit Click here and download it now
April 16th, 2015 11:46am

Hi,

We can use Get-MailboxPermission to check the users who have full access permission to this particular mailbox:

Get-MailboxPermission -Identity Particular | Where-Object {($_.IsInherited -eq $false) -and ($_.User -notlike 'NT Authority\Self')}

Additionally, the Get-MailboxFolderPermission can be used to check the folder permission for this particular mailbox:

Get-MailboxFolderPermission -Identity particular@domain.com:\Calendar | FL

Regards,

April 17th, 2015 5:29am

PLEASE NOTE:

I dont need who has access.

I need who is ****CURRENTLY**** accessing the mailbox

Free Windows Admin Tool Kit Click here and download it now
April 17th, 2015 10:04am

Mailbox audit logging:

https://technet.microsoft.com/en-us/library/ff459237(v=exchg.150).aspx

April 17th, 2015 10:08am

Do you literally want to see active connections to the mailbox?

This will show active connections:

http://blogs.technet.com/b/rmilne/archive/2014/12/17/powershell-script-to-get-active-cas-connections.aspx

I have not tried but maybe there is a way to see connections to a particular mailbox?

Not much out there about observing access to a mailbox in real time.

One radical solution would be to use WireShark and somehow filter by mailbox name and... try to find relevant information in the massive amount of connection data.

Free Windows Admin Tool Kit Click here and download it now
April 17th, 2015 12:03pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics