Report/Audit who has ActiveSync and OWA enabled?
Hello All, I have been asked to audit one of my companies Exchange servers (Exchange 2007 - Version: 08.01.0375.002) to show a list of user mailboxes that have ActiveSync and OWA enabled or disabled. This could either be 2 separate reports or 1 individual report for each. I have been finding some very good scripts and advice on this site but unfortunately they do not answer my query in full. I need a list of the users on my exchange to show me if ActiveSync and OWA are disabled or enabled for each user. I don’t know if I am over looking the obvious or looking in the wrong places… Can anybody help me with this query? Thank You
August 10th, 2010 3:23pm

Does this help? get-casmailbox -resultsize unlimited | select displayname,activesyncenabled,owaenabled | sort displayname | export-csv c:\somedir\user_settings.csv -notype [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
Free Windows Admin Tool Kit Click here and download it now
August 10th, 2010 3:39pm

Hi, try this command : get-casmailbox | select name, owaenabled |export-csv c:\file.csv for disabled user change to owadisabled & activesyncenabled or disabled for activesync Ripu Daman Mina | MCSE 2003 & MCSA Messaging
August 10th, 2010 3:43pm

It is easy to get this info, try the below script: get-casmailbox | ft displayname,activesyncenabled,owaenabled | out-file report.txt this will create a report.txt file in the same folder where you run the script , which will have the info u need. thanks ThiyaguThiyagu | MCTS/MCITP - Exchange 2007 | MCSE 2003[Messaging] | http://www.myExchangeWorld.com. This posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
August 10th, 2010 3:49pm

Hi Thiyagu14, Thank you for your response; I’m kicking me self here… This is exactly what I was after. Mjolinor and Ripu Daman: Thank you also for responding Regards Aaron
August 10th, 2010 5:26pm

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

Other recent topics Other recent topics