Recipe8.15.Enabling Support for


Recipe 8.15. Enabling Support for "Unsupported" Outlook Mobile Access Devices

Problem

Some of your users have mobile devices that aren't on the list of officially supported OMA devices, but you want to use them anyway.

Solution

Using a graphical user interface

  1. Open the Exchange System Manager (Exchange System Manager.msc).

  2. Open the Global Settings node, right-click on Mobile Services, and select Properties.

  3. Click the Enable unsupported devices and click OK.

Using VBScript
' ------ SCRIPT CONFIGURATION ------  strOrgName = "cn=<orgName> "        ' e.g., "Robichaux and Associates"  strOrgObj= strOrgName & ", cn=microsoft Exchange,cn=services,cn=configuration," &_     "dc=<domain>, dc=<TLD>"  strOMAObj = "cn=Outlook Mobile Access,cn=global settings," & strOrgObj  strDCName = "<serverName>"    ' e.g., BATMAN ' ------ END CONFIGURATION --------- ' get the global OMA settings object  Set objOrg = GetObject("LDAP://" & strDCName & "/" & strOMAObj) ' reset the flag value to zero, which enables OMA on the server and enables ' the unsupported device flag objOrg.Put "msExchOmaAdminWirelessEnable", "0" objOrg.SetInfo WScript.Echo "Enabled unsupported devices and OMA"

Discussion

OMA supports a fairly broad range of mobile devices, but they can't support every potential device. In general, phones or handhelds that implement the Openwave browser, Microsoft's Pocket Internet Explorer, or the Ericsson, Nokia, or Symbian browsers are supported. The canonical list of supported devices is located at http://www.asp.net/mobile/testeddevices.aspx?tabindex=6. Microsoft periodically releases update packages called device updates (DUs) that add support for additional devices; you can get the latest DU from the supported device page.

If you want to try using a device that you think should be compatible, you can toggle the Enable unsupported devices flag. When the setting is off, OMA will refuse to talk to any device not supported by the DU version on that server. When you turn it on, you can connect to OMA with any device you like, and if it's not supported, OMA will ask you to click OK on a confirmation page that reminds you that your device isn't supported.

See Also

MS KB 821835 (Overview of Mobile Devices That Are Supported by Outlook Mobile Access in Exchange Server 2003), Chapter 3 of the Exchange Server 2003 Client Access Guide (Microsoft), Chapter 8 of the Exchange Server 2003 Deployment Guide (Microsoft), and http://blogs.msdn.com/conrad/archive/2005/01/21.aspx (Disable OMA via Hosted Exchange)



Exchange Server Cookbook
Exchange Server Cookbook: For Exchange Server 2003 and Exchange 2000 Server
ISBN: 0596007175
EAN: 2147483647
Year: 2006
Pages: 235

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net