Try our new Certificate Revocation List Check Tool
CRLcheck.exe is a tool developed to verify digital signatures of executable files. It collects files from known paths on your client, checks their signature, and checks Certificate Revocation Lists (CRL) and OCSP download. This helps avoid delays in launching files.
Category published:  Exchange 2007 Exchange 2010   Click on the Category button to get more articles regarding that product.

Exchange 2007 Restrict ActiveSync for only certain modell of phones

Posted by admin on 12.01.2011

Starting with Exchange 2007 SPX you can use the Set-CASMailbox with the ActiveSyncAllowedDeviceIDs parameter to lock down a certiain user to a specific device ID.

http://technet.microsoft.com/en-us/library/bb125264(EXCHG.80).aspx

Not that it helps you immediately, but Exch 2010 has included automatic quarantining/blocking of devices based on Device Model and Type with ActiveSyncDeviceAccessRule

http://howdouc.blogspot.com/2010/09/activesync-device-access-rules-in.html

 set-CASMailbox [-ActiveSyncAllowedDeviceIDs <MultiValuedProperty>] [-ActiveSyncDebugLogging <Nullable>] [-ActiveSyncEnabled <$true | $false>] [-ActiveSyncMailboxPolicy <MailboxPolicyIdParameter>]

ActiveSyncAllowedDeviceIDs

* Optional
* Microsoft.Exchange.Data.MultiValuedProperty
* This parameter accepts a list of device IDs that are allowed to synchronize with the mailbox.

Here you can see a sample user:

[PS] C:\>get-casmailbox -Identity scr | fl

ActiveSyncAllowedDeviceIDs              : {} < Array if devices which are allwoded.
ActiveSyncMailboxPolicy                    : Default
ActiveSyncMailboxPolicyIsDefaulted    : True
ActiveSyncDebugLogging                   :
ActiveSyncEnabled                                   : True
HasActiveSyncDevicePartnership         : False

Also read this Post in Germand about a good overview on how to block certain Activesync Handys:

https://www.butsch.ch/post/Absicherung-von-ActiveSync-Devices-mit-Exchange-2007-und-Exchange-2010.aspx

 Disabel Activesync for all Exchange Users on Exchange 2007/2010:

get-Mailbox | set-CASMailbox -ActiveSyncEnabled:$False

 



 Category published:  Exchange 2007 Exchange 2010   Click on the Category button to get more articles regarding that product.