ramensoftware / windhawk

The customization marketplace for Windows programs: https://windhawk.net/
https://windhawk.net
GNU General Public License v3.0
1.79k stars 56 forks source link

Recursive process exclusion list #92

Open learn-more opened 1 year ago

learn-more commented 1 year ago

Currently there is a Process exclusion list that allows to exclude processes, however for my use-case I want to exclude msbuild.exe and all processes spawned by it (including indirectly):

image

Most of these processes can be added to the exclusion list, but for example conhost.exe cannot be added there because it can also be a child of another process.

My suggestion would be some syntax like this, to mean "exclude the process and it's children":

msbuild.exe,*
cl.exe,*
tracker.exe,*
link.exe,*