Mac Error -600 — Process Not Found (procNotFound)
Warningsystem
Overview
Mac error -600 occurs when the system tries to communicate with a process that no longer exists, common with crashing apps and Apple Event failures.
Key Details
- Error -600 maps to procNotFound — the target process for an Apple Event cannot be found
- Apple Events are the inter-process communication mechanism in macOS
- Occurs when an app crashes or quits while another app tries to communicate with it
- Common with AppleScript, Automator, and apps that use inter-app communication
- Launch Services database corruption can cause persistent -600 errors
Common Causes
- Target application crashed or was force-quit during Apple Event delivery
- Launch Services database out of sync — app registered but not running
- AppleScript trying to communicate with an app that is not open
- Sandboxing restrictions blocking inter-process communication
- Corrupted application bundle preventing proper process registration
Steps
- 1Open the target application manually before running the AppleScript or automation
- 2Rebuild Launch Services database: /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
- 3Restart the Mac to clear stale process references
- 4Check Console.app for crash logs related to the target application
- 5Reinstall the application if crash logs show consistent failures
Tags
macerror-600process-not-foundapple-eventsapplescript
More in System
windows-C000021A-status-system-process-terminatedWindows Error 0xC000021A — STATUS SYSTEM PROCESS TERMINATED
Criticalwindows-C0000225-boot-configuration-errorWindows Error 0xC0000225 — Boot Configuration Error
Criticalwindows-C000000F-boot-selection-failedWindows Error 0xC000000F — Boot Selection Failed
Criticalwindows-80004005-unspecified-errorWindows Error 0x80004005 — Unspecified Error
Warningwindows-80070570-file-or-directory-corruptedWindows Error 0x80070570 — File or Directory Corrupted
Errorwindows-system-0xc0000185Windows Error 0xC0000185 — Boot Device Inaccessible
CriticalFrequently Asked Questions
Apple Events are macOS's inter-process communication system. They allow apps to send commands to each other, enabling automation and scripting.