Menu
  • HOME
  • TAGS

Microsoft EAS Sync Command

exchange-server,activesync,wbxml

In my case i was passing different DeviceId for foldersync & sync request. It was my mistake.

How can I determine which Registry setting gets updated when the user selects “Files - Sync Settings” in ActiveSync?

registry,windows-mobile-6,activesync,registrykey

The GuestOnly registry setting is for supressing the Setup Partnership Wizard that will come up for newly connected Windows CE based devices. If set, there will be no PartnerShip Wizard, if not set, the Partnership Wizard comes up. This setting is not to enable/disable any syncing options in ActiveSync/WMDC. If...

What should Connection Settings in Windows Mobile Device Center/Active Stync be when connecting to a handheld device?

usb,motorola,activesync,handheld,handhelddevice

For me, anyway, this is how the settings need to look: Note that the "Allow data connections on device when connected to PC" tickbox is not even visible...?!?...

ActiveSync “foldersync” command response

ios,activesync

I ended up by using third party c++ library to covert data from/to wbxml.

ActiveSync SendMail command using 12.1 protocol

office365,activesync

I finally solved the issue. It was due to in mime data. we need to add \n(new line) for each parameter we are passing.

Disable ActiveSync using C#

c#,powershell,exchange-server-2007,activesync

I don't have much experience with C# and PowerShell or the Exchange PS cmdlets for that matter, so I might be wrong here. AFAIK your sample would equal: Set-CASMailbox -Identity 'User1' -ActiveSyncAllowedDeviceIDs "BLOCKED" | Set-CASMailbox -Identity 'User1' -ActiveSyncEnabled $false You're not using the object (if any) that the first cmdlet...

Microsoft ActiveSync

ios,activesync

Okay finally i found the answer. I used cocoa pods and libxml libraries as mentioned in http://cocoapods.org/?q=libwbxml

EAS Protocol fetch unread mails only

exchange-server,activesync

Actually, when you call Sync, you get a new Sync key. So the next Sync should use the Sync key returned by the previous Sync. If you re-use the same Sync key over again, you should get the same messages back every time.

Activesync Protocol integration

ios,iphone,microsoft,activesync

Finally i used library from https://github.com/jasenhuang/ASWBXml-c which solve my problem. :)