Archives

Exchange – List all e-mail addresses on domain

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]

Read More

View Members Dynamic E-mail Group – Exchange 2010

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]

Read More

Exchange 2010 ActiveSync Issue

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 […]

Read More

Exchange 2007 Active sync screen lock issue with iPhone

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 […]

Read More