I would like to import a Python generated ICS file (with ics 0.7) into Outlook. But unfortunately the status attribute is not used by Outlook. How can I set it so that when I import the ICS file into Outlook the event is set to Confirmed?
BEGIN:VCALENDAR
VERSION:2.0
PRODID:ics.py - http://git.io/lLljaA
BEGIN:VEVENT
DTEND:20220331T131500Z
LOCATION:2.013
DTSTART:20220331T114500Z
STATUS:CONFIRMED
SUMMARY:Your text here
END:VEVENT
END:VCALENDAR
I have tried to manually change the PRODID to: PRODID:-//Microsoft Corporation//Outlook 16.0 MIMEDIR//EN and then add the following attribute: X-MICROSOFT-CDO-BUSYSTATUS:BUSY but without success.