Skip to content

Instantly share code, notes, and snippets.

@andik
Created April 21, 2015 04:30
Show Gist options
  • Save andik/b1b1ab204fe36b614edf to your computer and use it in GitHub Desktop.
Save andik/b1b1ab204fe36b614edf to your computer and use it in GitHub Desktop.
Wipe all Contact's Birthdays on Mac OS X
-- my previous phone miss-synced all my birthday entries to wrong dates
-- the first requirement to fix this is to have a white
-- canvas again. So removing all birthdays and ask people
-- and facebook for adding them again...
tell application "Contacts"
set peopleToChange to people
repeat with thePerson in peopleToChange
set the birth date of thePerson to missing value
end repeat
save
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment