Skip to content

Instantly share code, notes, and snippets.

@willhoney7
Last active March 7, 2019 22:28
Show Gist options
  • Save willhoney7/7c041a09bfbe4cd2faddb37f944cce60 to your computer and use it in GitHub Desktop.
Save willhoney7/7c041a09bfbe4cd2faddb37f944cce60 to your computer and use it in GitHub Desktop.
AppleScript to Reopen Microsoft Teams every 15 minutes if not open
# OpenTeams.scpt
# To run automatically, see: https://apple.stackexchange.com/a/192654
repeat
if application "Microsoft Teams" is not running then
tell application "Microsoft Teams" to activate
end if
delay 60 * 15 # every 15 minutes
end repeat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment