Reputation:
I'm editing Outlook appointments programmatically, synchronizing them with "appointments" of another software.
Next time my interface runs and I get the changelog, I don't want to get the changes I made programmatically on an Outlook appointment. Is there a way to stop tracking these changes?
Upvotes: 1
Views: 146
Reputation: 1658
Have you read the Filtered synchronization section in Mailbox synchronization and EWS in Exchange? I think the only way to ignore the changes your programmatic changes is to do a sync of user changes immediately before running your programmatic changes, then run your program, then do a SyncFolderItems repeatedly and discard the changes (don't do anything with them). That way, the next time you sync changes, you'll only get user created changes that you need to process.
Upvotes: 1