Posted on June 18, 2014 Leave a Comment
Listing all e-mail addresses for a domain on an Exchange server. It’s pretty easy from Powershell but it took me a while to figure out so I thought I would share it. [ps]get-recipient | where {$_.emailaddresses -match “<domain>”} | fl name,emailaddresses >> c:addresses.txt[/ps]
Posted on February 23, 2013 Leave a Comment
Always nice to be able to check who a dynamic group contains. Easy to do from the powershell with these two commands: [ps] $DynGroup = Get-DynamicDistributionGroup "{name of dynamic distribution group}" Get-Recipient -RecipientPreviewFilter $Dyn.RecipientFilter -OrganizationalUnit $DynGroup.RecipientContainer [/ps]
Posted on January 27, 2011 Leave a Comment
One user can sync his iPhone and not the other. How do you go about troubleshooting that? You can’t find any obvious difference between the two accounts. I was in that exact position last night with some two different accounts. The symptoms was strange. One account worked just fine and no issues connecting an sync […]
Posted on September 28, 2009 3 Comments
A while ago I updated an Exchange Server 2007 with the latest service pack for a client. The SP automatically added a new Exchange ActiveSync Mailbox Policy that required the connected devices to be password protected when the screen went dark. It’s a good idea for many security reasons but the users didn’t like it […]