Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I get Outlook to process an event update?

I am trying to create, update and delete an event in Outlook 2007 (but optimally it would work for all versions). Creating and deleting the event is working fine. I followed several threads but for some reason the update action failed.

When I double click on the ICS file, Outlook opens a window and the only choice I have is to delete. But the event it wants to delete is not the old one but the new one (even if it's not created yet). So when I click delete the old event remains here.

The UID is the same, sequence has been increase by 1, DTSTAMP in newer.

First event:

BEGIN:VCALENDAR
PRODID:-//Blatant Media Corporation//Absorb LMS//EN
VERSION:2.0
METHOD:PUBLISH
BEGIN:VEVENT
CLASS:PUBLIC
DTSTART;VALUE=DATE-TIME:20101111T13000000Z
DTEND;VALUE=DATE-TIME:20101111T14000000Z
UID:AbsorbClass150180
DESCRIPTION:A nov session for demoing only\n\nVenue:\nBoardroom 123\n\nInstructor:\nMike Owens\n\nCourse Description:\nInstructor Led Training (ILT) topic: First Aid\n\n------------------\nAbsorb Anywhere\nhttp://www.absorbtraining.com
LOCATION:Boardroom 123
SUMMARY:First Aid: Nov
DTSTAMP:20101107T15353400Z
LAST-MODIFIED:20101107T15353400Z
STATUS:CONFIRMED
SEQUENCE:0
END:VEVENT
END:VCALENDAR

Updated event:

BEGIN:VCALENDAR
PRODID:-//Blatant Media Corporation//Absorb LMS//EN
VERSION:2.0
METHOd:REQUEST
BEGIN:VEVENT
CLASS:PUBLIC
DTSTART;VALUE=DATE-TIME:20101111T15000000Z
DTEND;VALUE=DATE-TIME:20101111T16000000Z
UID:AbsorbClass150180
DESCRIPTION:A nov session for demoing only\n\nVenue:\nBoardroom 123\n\nInstructor:\nMike Owens\n\nCourse Description:\nInstructor Led Training (ILT) topic: First Aid\n\n------------------\nAbsorb Anywhere\nhttp://www.absorbtraining.com
LOCATION:Boardroom 123
SUMMARY:First Aid: Nov
DTSTAMP:20101108T15353400Z
LAST-MODIFIED:20101108T15353400Z
ORGANIZER:Owens
SEQUENCE:1
END:VEVENT
END:VCALENDAR
like image 525
Regis Avatar asked Nov 09 '10 19:11

Regis


People also ask

How do I force my Outlook calendar to update?

For Outlook: according to Microsoft Support, the calendar will synchronize a couple of times a day. If you want to force the calendar to update, you can remove current subscription and then relink by subscribing to it again.

Why is my Outlook calendar not updating meetings?

Some of the most common reasons for Outlook Calendar not syncing include: An incorrect calendar is selected for synchronization. Your Outlook account is not connected. The third-party application is misconfigured.

How do I sync my Outlook calendar with events?

Navigate to your account within Settings. Then, tap Sync Calendars. Two-way calendar export is supported for Microsoft 365, Outlook.com, and hybrid modern authentication for on-premises mailboxes.


1 Answers

Add the following to both files:

ORGANIZER:[email protected]

not sure why, but you can't seem to update events without this.

like image 148
Alex Avatar answered Oct 14 '22 10:10

Alex