Answer the question
In order to leave comments, you need to log in
How can I check if a process is a system process?
Let's say I have this code:
for proc in psutil.process_iter():
try:
processName = proc.name()
processID = proc.pid
print(processName , ' ::: ', processID)
except (psutil.NoSuchProcess, psutil.AccessDenied, psutil.ZombieProcess):
pass
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question