Skip to content

Instantly share code, notes, and snippets.

@talkingmoose
Created November 29, 2015 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingmoose/41bd5d57dccca501daa2 to your computer and use it in GitHub Desktop.
Save talkingmoose/41bd5d57dccca501daa2 to your computer and use it in GitHub Desktop.
Removes all categories from selected Outlook messages.
tell application "Microsoft Outlook"
set theMessages to selection
repeat with aMessage in theMessages
delete category of aMessage
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment