vsto - Outlook AddIn - change the GlobalAppointmentId -


is there way change globalappointmentid of appointment.

i found property schema:

var globalidpropertyschema = @"http://schemas.microsoft.com/mapi/id/{6ed8da90-450b-101b-98da-00aa003f1305}/00030102"; 

and set new value it:

item.propertyaccessor.setproperty(globalidpropertyschema, my_new_id); 

then when using item.propertyaccessor.getproperty i'm getting new id, item.globalappointmentid still original one.

i'm needing addin can sync appointments using ics files, our system sends ics files suffix in icalendar uid field. it's possible create appointments our system through outlook addin, ics file send uses globalappointmentid uid field in ics file. store it, needs have our suffix. tips?

you need release appointment make sure outlook reloads next time.

do see change after restart outlook?


Comments

Popular posts from this blog

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -