NSRunningApplication can't recognize PID of Window Server?

529 Views Asked by At

In my Cocoa app I am detecting visible windows and getting PID of their owners. Then for ever PID I create NSRunningApplication object (using runningApplicationWithProcessIdentifier:) to get additional info (localized name, path, attributes etc.)

Everything works fine until I try to create NSRunningApplication with PID 88 which belongs (in my case) to Window Server. It just do not create that object and in accordance with Apple manual it returns nil - in other words: There is no process with that PID.

How is it possible? If it wouldn't exist I would't be able to get its PID and ps would't show it.

Any advice?

2

There are 2 best solutions below

3
On BEST ANSWER

From the documentation (emphasis added):

Overview
NSRunningApplication is a class to manipulate and provide information for a single instance of an application. Only user applications are tracked; this does not provide information about every process on the system.

3
On

The window server is not a user process. If it does not work with admin privileges then you won't be able to do so at all.