El proceso de UserNotificationCenter muestra esas ventanas, por lo que puede enfocarlas abriendo UserNotificationCenter con Alfred o Launchbar.
También es posible deshabilitar completamente los cuadros de diálogo del informe de errores:
defaults write com.apple.CrashReporter DialogType none
Este script también se puede usar para enfocar otras ventanas mostradas por procesos en segundo plano:
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 muestra los diálogos de contraseña y CoreServicesUIAgent muestra los diálogos de Gatekeeper y cuarentena.