Skip to content

Instantly share code, notes, and snippets.

@scottwils
scottwils / CopyCalendarEvents.scpt
Last active September 11, 2026 14:09
[MOVED to github.com/scottwils/CopyCalendarEvents] 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"