Created
February 12, 2012 10:37
-
-
Save aont/1807804 to your computer and use it in GitHub Desktop.
Apple Script Shutdown
This file contains 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
#!/usr/bin/osascript | |
-- tell application "loginwindow" to «event aevtrrst» | |
tell application "loginwindow" to «event aevtrsdn» | |
tell application "System Events" | |
tell window 1 of process "loginwindow" | |
click checkbox 1 | |
-- click button 2 | |
end tell | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How about
tell app "System Events" to shut down
?