Skip to content

Instantly share code, notes, and snippets.

@talkingmoose
Created April 22, 2012 15:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save talkingmoose/2464583 to your computer and use it in GitHub Desktop.
Save talkingmoose/2464583 to your computer and use it in GitHub Desktop.
Sets selected Exchange calendar events to Private
tell application "Microsoft Outlook"
try
set theEvents to selection
repeat with anEvent in theEvents
set is private of anEvent to true
end repeat
end try
end tell
@talkingmoose
Copy link
Author

Instructions:

  1. Click the Download button above to download the compressed file.
  2. Locate and double-click the downloaded file to decompress it.
  3. In Outlook for Mac select AppleScript menu (to the right of the Help menu) --> About This Menu...
  4. Click the Open Folder button to open the Outlook Script Menu Items folder.
  5. Drag the Set Event to Private.scpt file into the Outlook Script Menu Items folder.

To use the script select one or more Exchange events and then select Set Event to Private from the AppleScript menu.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment