我如何开始编写 Windows minifilter 驱动程序?

How do I start with writing Windows minifilter drivers ?

我想在我的项目中使用 windows miniFilter。
我看过微软的文档,但似乎很难理解。

我也阅读了 miniFilters 的 GitHub 示例,但它们并没有提供所有内容的解释,因为我想理解我写的内容,而不仅仅是复制和粘贴。有没有适合初学者的网站可以帮助我了解更多信息?

没有很多很好的入门资源 - 没有真正的教程或任何东西。最好的来源是 Windows driver samples. Start with a simple one like filesys\miniFilter\nullFilter and then move up to filesys\miniFilter\passThrough to get you started. OSROnline is also a really great resource. And (shameless plug here) I have written a short, 4-part blog post 关于编写一个非常基本的寄存器过滤器驱动程序的内容。