Actually, the task is clear from the title, I need to display a list of open, named process descriptors (by PID), their type and name. All I could find on the Internet is NtQuerySystemInformation, but all the examples used some obsolete implementation that took on completely different parameters. Besides, as I understand it, this is an undocumented function, which is also not very cool. Is there any other way to do what I need?

  • NtQuerySystemInformation is generally described in MSDN - Vladimir Martyanov

0