AppleScriptで全てのアプリを終了 - MAC


script editorを開く

new document

実装

tell application "System Events" to set quitapps to name of every application process whose visible is true and name is not "Finder"
repeat with closeall in quitapps
quit application closeall
end repeat

保存された

使う

クリックすると実行される