Mobile Device Report
Hello, is there a way that I can list via powershell or another method all of the mobile devices connecting to my exchange server. Exchange server 2007, clients include iPhone, Android, Blackberry (we don't have a BE server, blackberry connects via OWA
on the phone itself). We are trying pull a report so that we know all mobile devices that are connecting not just those that are showing up under the mobile options of the users mailbox. So in short, is there a way to show what all devices are connecting to
exchange, who the users are all in one report regardless of whether or not they're connecting via activesync or not?
September 20th, 2010 12:30pm
http://exchangepedia.com/2007/09/exchange-server-2007-how-to-get-a-list-of-exchange-activesync-users.html
http://www.simple-talk.com/sysadmin/exchange/identifying-exchange-activesync-users-with-powershell/
Free Windows Admin Tool Kit Click here and download it now
September 20th, 2010 2:30pm
THank you. Yes, I have already tried them and can't get them to work. When I use:
$mailboxes = get-mailbox -recipienttypedetails usermailbox -resultsize unlimited -filter {hiddenfromaddresslistsenabled -eq $false}
$devices = $mailboxes | %{get-activesyncdevicestatistics -mailbox $_.identity}
the result is a new command prompt line, no data. I've tried running those each individualy as well as together and can't get them to work.
September 20th, 2010 2:48pm
the result is a new command prompt line, no data. I've tried running those each individualy as well as together and can't get them to work.
Hi Tuck918,
After you run the second cmdlet, you should run the $devices to get the results(same as first cmdlet).
Or you can delete the $devices in the second comlet to get the results immediately.Frank Wang
Free Windows Admin Tool Kit Click here and download it now
September 21st, 2010 11:22pm
Oh wow. Okay thank you very much. Yeah, I just removed "$devices =" from the second command and then my shell window became populated with information. Again thank you!
September 28th, 2010 9:28am