卸载 windows 驱动程序时是否释放内存?

Is the memory freed when uninstall the windows driver?

如果我在我的DriverEntry函数中分配内存(ExAllocatePool)并设置Unload函数,当驱动程序卸载时,我分配的内存是否像在正常过程中一样自动释放?

不,它永远不会发布。

Windows 内核没有垃圾收集器,必须由分配它的模块释放。