how to make the fs filter work on win2k???

hello,

I wrote a fs filter on winxp and it works well,But on win2000, My filter driver can not be loaded.
The filter I wrote is based on sfilter(ifskit2600 sample).

I set the LoadOrderGroup as “Filter” on win2000 inf file, which is “FSFilter Activity Monitor” on winxp.
The enum key is correct , but my fs filter driver can not be load, Even that never goes into DriverEntry Routine,
why?

whether the code should be modify to make it work on win2000,or not?
whether the inf file should be modify or not ??

thanks a lot

ildee

> The enum key is correct , but my fs filter driver can not be load,

Even that never goes into DriverEntry Routine,
why?

This seems that you’ve built the driver with LIBs for Windows
XP. AFAIK these libs cause the driver to require some
exports that could not be found in the ntoskrnl.exe
for Windows 2000.

Try to use depends.exe against your driver binary
in Windows 2000 enviromnent. If it finds some unrevolved
exports, this is it.

L.