View Single Post
  #2  
Old 06-13-2018, 14:48
Evilcry Evilcry is offline
Friend
 
Join Date: Jan 2009
Posts: 58
Rept. Given: 4
Rept. Rcvd 15 Times in 9 Posts
Thanks Given: 2
Thanks Rcvd at 41 Times in 18 Posts
Evilcry Reputation: 15
You need a mini-filter driver in this case, consider that writing a well rock-solid and performant FS-minifilter is not an easy task, my primary suggestion is to start learning the basics of FS Filtering and check Microsoft github for already written examples.

Let's discuss about distribution:
- One driver per each arch (32 and 64 bits)
- You can write a unique driver that works from Windows 7 to Windows 10
including server editions from Win2k8 R2 up to WinServer 2016


To deploy in production on Windows 10 you will also need an EV (Extended Validation) certificate that must be counter-signed by Microsoft.


Check this github, you can almost grab a big part of the filter and be sure that it works without BSODs

https://github.com/Microsoft/Windows-driver-samples/tree/master/filesys

Best Regards,
Evilcry
Reply With Quote
The Following 2 Users Say Thank You to Evilcry For This Useful Post:
nimaarek (06-13-2018), tonyweb (06-15-2018)