(Bir yoruma sığmayacak kadar uzun zamandan beri bunu ayrı bir yanıt olarak yayınlamak)
Orijinal komut dosyası için @MatthieuRiegler'a teşekkür ederiz.
Bu 10.12.6 üzerinde çalıştı ve orijinal senaryoda küçük bir değişiklik yapıldı (kendi araştırmamı yaptıktan sonra @ CharlieGorichanaz'ın yorumunu gördüm):
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
macOS 10.12.x'te, araç çubuğundadüğme kümesi (CPU, Bellek, Enerji vb.)Yerine ek birsimge group 2 of toolbar 1
bulunurgroup 1 of toolbar 1
. Bu simgenin yokluğunda (eski macOS sürümlerinde onaylamadım), CPU vb düğmeleriningroup 1 of toolbar 1
** 2
Bu, Etkinlik sütunundaki PID sütununu farklı bir konuma sürüklediyseniz geçerlidir. PID sütununu en soldaki konuma sürükledim, bu yüzden bu satırda dizini değiştirmek zorunda kaldım1
:
set pid to value of text field 1 of aProcess
Sütunlar, 1'den başlayarak en soldan numaralandırılır. Bu nedenle, gerekirse yukarıdaki satırda vurgulanan dizini ayarlayın.