activesync

Is there a way to query who are activesync/bb users through Exchange PowerShell?

醉酒当歌 提交于 2020-01-04 13:46:54
问题 Is there a way to query against exchange 2007 to distinguish who is either an active sync or blackberry user using powershell exchange addin? 回答1: BBES typically uses a service account that has access to ALL mailboxes in order to do it's thing. you will want to look at the BBES server itself to find out which users are active, not AD or Exchange. Because BBES is backed by a database, just dig into the dbo.UserStats table to see what's there. 回答2: Try this one. Get-CASMailbox -resultsize

xml to wbxml conversion for activesync in iOS

∥☆過路亽.° 提交于 2019-12-24 09:00:01
问题 I have been trying to built an app which will communicate with MS-ActiveSync Exchange. I am stuck at the provisioning part. I need to send a post HTTP request with WBXML content in body. But I could not find anything anywhere to convert xml to wbxml for active sync. There are some C based libraries available like wbxml2, but can I use them for active sync. There are no code pages provided in the library as mentioned in MS-Activesync Exchange documentation. Please help!!! 回答1: Use libwbxml.

How can I programmatically prevent the PC connected to a handheld device from file syncing (grabbing files from the device)?

佐手、 提交于 2019-12-24 05:47:32
问题 As noted here, I added code to my handheld app to (attempt to) prevent certain types of files (by extension) from being synced to the PC. But this doesn't work if the user, on the PC, uses ActiveStync to enable file sharing. On doing so, regardless of handheld registry settings, it copies files from the handheld to the PC (from the handheld's \My Documents folder to the PC's C:\Users\clay\Documents\Documents on Clay's Device folder). Is there a way to programmatically prevent (on the handheld

How can I view/edit my registry settings on a Windows CE 6 device?

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-23 20:19:04
问题 In his second comment here, PaulH suggests changing registry settings, providing this link. I'm not sure editing the registry is really something I want to do, because copying files to the handheld was working fine until late yesterday, and I doubt any change was made to the registry to cause that problem to commence, so I'm not at all sure that changing the registry will fix the problem. At any rate, I wanted to compare the values I have in the registry with what is shown on that msdn page

Python Exchange ActiveSync Library

╄→尐↘猪︶ㄣ 提交于 2019-12-22 06:48:56
问题 Is anyone familiar with an Exchange ActiveSync library or open source client for python? I've done preliminary searching with little to no success. I've seen some examples for C#, but I figured I'd ask around here before my attempt to port anything over. In case you're curious. This would be an extension of an already existing linux based IMAP / POP3 client. Moving to Windows / C# this late in the game isn't really an option. 回答1: This is a Python ActiveSync client, built on Twisted: https:/

Utilizing OAuth2 for Office365, through Exchange ActiveSync (EAS)

心已入冬 提交于 2019-12-21 05:49:09
问题 The blog post: Announcing Exchange ActiveSync v16.1 states that: While not a part of EAS 16.1, we also want to note that both Office 365 and Outlook.com customers can now utilize the OAuth 2.0 protocol for authorization through EAS. My question is: which scope should I use in the oauth request? Is there an example, perhaps of the full request? Note : there was a similar question about using OAuth for Office365 with IMAP, but here I'm specifically asking about ActiveSync . I referenced this

Why is WMDC/ActiveSync so flaky?

笑着哭i 提交于 2019-12-20 02:33:05
问题 I'm developing a Windows Mobile app using the .NET Compact Framework 3.5 and VS2008, and for debugging using the Device Emulator V3, on Win7, and seem to have constant problems with Windows Mobile Device Centre (6.1) connecting. Using the Emulator Manager (9.0.21022.8) I cradle the device using DMA in WMDC. The problem is it's so flaky at actually connecting that it's becoming a pain. I find that when I turn my computer on, before I can get it to connect I have to open up WMDC, disable

How to get Windows Mobile Device Center To Connect to the Emulator

三世轮回 提交于 2019-12-18 12:16:22
问题 I have recently installed Windows 7 and I have come to a conclusion. While Active Sync was old and did not work great, it did work. I could connect to my devices and emulators after the proper rituals and incantations. The other conclusion I have come to is that Windows Mobile Device Center is worse that Active Sync was. I cannot get it to reliably connect to my emulator (yes, I have set the connection type to DMA) despite how many times I cradle and uncradle. (The emulator connects to the

Retrofit 2 - delayed response

被刻印的时光 ゝ 提交于 2019-12-13 13:35:34
问题 I have a problem with retrofit 2. I'm sending some data to Microsoft EAS server but a response is received after 20 sec. Why I know that this is a retrofit problem? Because without retrofit it is working correctly. my logs: D/OkHttp: --> POST https://{my_host}/Microsoft-Server-ActiveSync?Cmd=Provision&User={myuser}&DeviceId=837bc6c5690b40b98ab55f7a2231e50c&DeviceType={mydevicetype} http/1.1 D/OkHttp: Content-Type: application/vnd.ms-sync.wbxml D/OkHttp: Content-Length: 456 D/OkHttp:

How to get the new message id after a sync/delete request

人走茶凉 提交于 2019-12-12 02:04:22
问题 When a message is deleted, my application will send a Sync request with a Delete command within the Commands element. The application also sets the DeletesAsMoves option so that the message is not deleted permanently, but instead moved to the Deleted Items folder. This all works great. However, my challenge is to now move the message back out of the Deleted Items folder. This is failing because once the message is deleted in the Sync command, its message id changes. In the MoveItems request,