(Pubblicando questa come una risposta separata da troppo tempo per inserirla in un commento)
Ringraziamo @MatthieuRiegler per la sceneggiatura originale.
Questo ha funzionato il 10.12.6 ed è una piccola modifica della sceneggiatura originale (visto il commento di @ CharlieGorichanaz dopo aver fatto le mie indagini):
set textToSearchForInProcessName to "Not Responding"
-- Run Activity Monitor
tell application "Activity Monitor" to activate
tell application "System Events" to tell process "Activity Monitor"
-- Wait for the Activity Monitor window to open
repeat until (exists window 1)
delay 1
end repeat
--display notification "Window appeared"
-- Wait for the Menubar to be present
repeat until (exists menu 1 of menu bar item "View" of menu bar 1)
delay 1
end repeat
--display notification "Menubar appeared"
-- Make sure View -> My Processes is selected
click menu item "My Processes" of menu 1 of menu bar item "View" of menu bar 1
-- Click the 'CPU View' button ( **1 )
click radio button 1 of radio group 1 ¬
of group 2 of toolbar 1 ¬
of window 1
-- Working with the list of processes
tell outline 1 of scroll area 1 of window 1
-- Looking for Not responding process
set notResponding to rows whose value of ¬
first static text contains textToSearchForInProcessName
repeat with aProcess in notResponding
-- For each non responding process retrieve the PID
set pid to value of text field 1 of aProcess -- ( **2 )
-- Kill that process using pid
if pid is not "" then do shell script ("kill -9 " & pid)
end repeat
end tell
end tell
** 1
in MacOS 10.12.x, la barra degli strumenti contiene un ulterioreun'icona grazie al quale la serie di pulsanti (CPU, memoria, energia, ecc) sono in group 2 of toolbar 1
invecegroup 1 of toolbar 1
. In assenza di quell'icona (non ho confermato nelle versioni precedenti di macOS), credo che i pulsanti CPU ecc. Sarebbero presentigroup 1 of toolbar 1
** 2
Questo vale se hai mai trascinato la colonna PID nella colonna Attività in una posizione diversa. Avevo trascinato la colonna PID nella posizione più a sinistra, quindi su questa riga ho dovuto modificare l'indice in1
:
set pid to value of text field 1 of aProcess
Le colonne sono numerate dall'estrema sinistra, a partire da 1. Quindi, se necessario, regola di conseguenza l'indice evidenziato nella riga sopra.