Last active
March 7, 2019 22:28
-
-
Save willhoney7/7c041a09bfbe4cd2faddb37f944cce60 to your computer and use it in GitHub Desktop.
AppleScript to Reopen Microsoft Teams every 15 minutes if not open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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