I’ve made a winform application that allows you to kill processes and gives a notification for a new process that starts. I need to add functionality to allow/block i.e blacklist/whitelist a process, so that it won’t run while my application is running.
Any suggestions?
If I understand your question correctly – Here is a basic example of how to work with processes.
This is based on the assumption that you have a list of process names named
blackListand you want to kill any process which is on this list:This should help get you started in the right direction…