Sujet : Re: Ouverture d'applis indésirable au démarrage
De : g4fleurot (at) *nospam* free.fr.invalid (Fleuger)
Groupes : fr.comp.os.mac-os.xDate : 16. Nov 2022, 17:33:48
Autres entêtes
Organisation : fuzi
Message-ID : <tl33dc$2d0ml$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11
User-Agent : MacCafe/2.10b8a (macOS 10.14.6 (18G9323) - iMac14,3)
Le 16 novembre 2022 à 13:36, Chris a écrit ceci :
Sinon pour quitter les apps avant extinction, une série de
Command-Tab Command Q fait aussi l'affaire.
J'ai aussi un Apple Script qui fait ça très bien.
--------
tell application "System Events"
set appList to bundle identifier of every application process ¬
whose background only is false and name is not "Finder"
end tell
repeat with cApp in appList
quit application id cApp
end repeat
---------
-- Gérard FLEUROT