Skip to content

Instantly share code, notes, and snippets.

@davidnewhall
Created November 29, 2018 02:03
Show Gist options
  • Save davidnewhall/5b3e63685793fc142a136ef15db7222a to your computer and use it in GitHub Desktop.
Save davidnewhall/5b3e63685793fc142a136ef15db7222a to your computer and use it in GitHub Desktop.
Delete every conversation in Messages.app on Sierra using AppleScript
tell application "Messages"
activate
try
repeat (count of (get every chat)) times
delete item 1 of (get every chat)
tell application "System Events" to tell process "Messages" to keystroke return
end repeat
end try
close every window
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment