代码一点没改,不管是用sfilterInstall.cmd,还是inf,还是用添加硬件的方式都不行呢。。
文件过滤驱动应该怎么安装呢?用EzDriverInstaller.exe需要个设备名,这个应该填什么啊?

解决方案 »

  1.   

    囧,直接用build命令编译的就可以加载……
      

  2.   

    解决了。。项目属性没设置对,Linker-System-Driver要设置为Driver。给个codeproject上看到的vs2008编译ddk的项目设置#Setup Visual Studio 2008.
    #Setup DDK (WDK).
    #Add to VS paths DDK include files, libs and bins.
    #Create new empty "Win32 project" and add source file (i.e. HelloWorld.c).
    #Configure project properties (All Configurations):   1. C\C++ - General - Debug Information Format = Program Database (/Zi)
       2. C\C++ - Preprocessor - Preprocessor Definitions = _X86_ [add also DBG for Debug config]
       3. C\C++ - Code Generation - Enable C++ Exceptions = No
       4. C\C++ - Code Generation - Basic Runtime Checks = Default
       5. C\C++ - Code Generation - Buffer Security Check = No (/GS-)
       6. C\C++ - Advanced - Calling Convention = __stdcall (/Gz)
       7. C\C++ - Advanced - Compile As = Compile as C Code (/TC) [if you are going to use plain C]
       8. Linker - General - Output File = $(OutDir)\$(ProjectName).sys
       9. Linker - General - Enable Incremental Linking = Default
      10. Linker - Input - Additional Dependencies = ntoskrnl.lib hal.lib $(NOINHERIT) [add needed libs here e.g. ntoskrnl.lib hal.lib]
      11. Linker - Input - Ignore All Default Libraries = Yes (/NODEFAULTLIB)
      12. Linker - Manifest File - Generate Manifest = No
      13. Linker - System - SubSystem = Native (/SUBSYSTEM:NATIVE)
      14. Linker - System - Driver = Driver (/DRIVER)
      15. Linker - Advanced - Entry Point = DriverEntry
      16. Linker - Advanced - Base Address = 0x10000
      17. Linker - Advanced - Randomized Base Address = Disable (/DYNAMICBASE:NO)
      18. Linker - Advanced - Data Execution Prevention (DEP) = Disable (/NXCOMPAT:NO)#OK. Done. Now you can test it with simple code, e.g.:
    第18点我这不行,必须设置为Default才能编译连接通过。。