LoginSignup
4
1

More than 3 years have passed since last update.

Apple ScriptでMacを終了・再起動する

Posted at

確認ダイヤログを表示しないでシャッタダウン

osascript -e 'tell app "System Events" to shut down'

確認ダイアログ(1分)を表示してシャットダウン

osascript -e 'tell app "loginwindow" to «event aevtrsdn»'

確認ダイヤログを表示しないで再起動

osascript -e 'tell app "System Events" to restart'

確認ダイアログ(1分)を表示して再起動

osascript -e 'tell app "loginwindow" to «event aevtrrst»'

確認ダイアログ(1分)を表示してログアウト

osascript -e 'tell app "System Events" to log out'
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1