Download EaseFilter Process Filter Driver SDK Setup File Download EaseFilter Process Filter Driver SDK Zip File
Easefilter process filter driver is a kernel-mode driver that filters process/thread creation and termination, it provides you an easy way to develop Windows application for the Windows process monitoring and protection.
Filter the process by process Id or wildcard process name, i.e. filter process name c:\test\*, it meant it will filter all processes which were launched from the folder c:\test.
if you want to get the notification of the new process creation, enable the flag "PROCESS_CREATION_NOTIFICATION", if you want to get the notification of the process termination, enable the flag "PROCESS_TERMINATION_NOTIFICATION", if you want to get the notification of the process handle was created or duplicated, enable the flag "PROCESS_HANDLE_OP_NOTIFICATION", if you want to get the notification of the new thread creation, enable the flag "THREAD_CREATION_NOTIFICATION", if you want to get the notification of the thread termination, enable the flag "THREAD_TERMINIATION_NOTIFICATION", if you want to get the notification of the thread handle was created or duplicated, enable the flag "THREAD_HANDLE_OP_NOTIFICATION".
Setup the specific file access rights to different file folders for the process. By default, set the least access rights for all files to the process, then if you want to allow the process to access some specific folders, add these folders with specific rights to the process as the below image, allow the process with read access to the folder c:\windows, allow full rights access to the folder c:\mysandbox.