I want to get a list of processes running on a remote machine, and most of the time System.Diagnostics.Process.GetProcess("RemoteMachineName") works fine. But there is one server that only returns "Idle" as its sole process.
The user I'm running the program under has full login rights on that remote machine, and I can even be connected by RDC under the same login and see a full list of processes in Task Manager, but Process.GetProcess() can't see them.
Is there a permissions issue that I don't know about?