How To Manually Create Outlook Calendar Appointments
Here's a gem from David Goodhand, a Microsoft vet that arguably taught me everything I needed to know about giving technical presentations on how to manually create Outlook Calendar appointments.
Copy/Pasted from David's email
If you’re try to write an appt directly into someone’s Exchange-based calendar, then use the Exchange CDO object model.
If you are trying to generate an appt that the user can click on and add to their calendar, look into the .VCS (vCalendar) file format. For example, look up an item on ebay and click the click “Add to Calendar”. The server generates a .VCS file which the user then clicks on. As the user downloads or opens the .VCS file, Outlook snags it and makes an appt. out of it.
Here’s what an example VCS looks like:
BEGIN:VCALENDAR
BEGIN:VEVENT
SUMMARY:eBay Reminder: SONY DIRECTV ULTIMATETV W60 HU REMOTE V3.5
DESCRIPTION:The end time for eBay listing number 3061186172 is scheduled to end soon! Click here to go to the page: https://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=3061186172&sspagename=calrem
DTSTART:20031128T025334Z
DTEND:20031128T045334Z
END:VEVENT
END:VCALENDAR
Learn more about this file format at https://www.imc.org/pdi/ .
Comments
- Anonymous
February 08, 2006
You should also look at microformats - hCalendar and hCard
http://www.microformats.org/wiki/hcalendar
http://www.microformats.org/wiki/hcard - Anonymous
March 12, 2006
PingBack from http://krell.cellsandbytes.net/2006/03/12/creating-outlook-calendar-appointments/ - Anonymous
February 03, 2007
The comment has been removed - Anonymous
July 19, 2010
"... giving technical presentations on how to manually create Outlook Calendar appointments." Wow, I'm surprised there would be a demand for presentations on this. I would think a simple blog entry would suffice ;-)