Skip to content

Instantly share code, notes, and snippets.

@scottwils
scottwils / CopyCalendarEvents.scpt
Last active April 25, 2025 13:33
Apple script to Copy Exchange events to other calendar using Apple Calendar app
tell application "Calendar"
-- Define the source and destination calendars
set sourceCalendar to calendar "SourceCalendar"
set destCalendar to calendar "DestinationCalendar"
-- Set the log file path
set logFile to (path to desktop as text) & "calendar_copy_log.txt"
-- Script version
set scriptVersion to "1.4.1"