Queste finestre sono mostrate dal processo UserNotificationCenter, quindi puoi focalizzarle aprendo UserNotificationCenter con Alfred o Launchbar.
È anche possibile disabilitare completamente le finestre di dialogo del rapporto di arresto anomalo:
defaults write com.apple.CrashReporter DialogType none
Questo script può anche essere usato per focalizzare altre finestre mostrate dai processi in background:
tell application "System Events"
repeat with p in {"UserNotificationCenter", "SecurityAgent", "CoreServicesUIAgent"}
if exists process p then
tell process p
if windows is not {} then
set frontmost to true
exit repeat
end if
end tell
end if
end repeat
end tell
SecurityAgent mostra le finestre di dialogo della password e CoreServicesUIAgent mostra le finestre di dialogo Gatekeeper e di quarantena.