Hi, I am new to driver development. I am trying to learn using windbg. I installed win 7 32 free on VMware Player. I am using an example from DDK that can be found in src\general\ioctl\kmdf. I want to set a breakpoint at the Driver Entry. I set my symbol path as SRV*C:\WinDDK\7600.16385.0\symbol*http://msdl.microsoft.com/download/symbols; C:\WinDDK\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386. But, I can’t set the breakpoint because I get the message that correct symbola aren’t loaded. I used the !sym noisy and .reload /f and found somethnig interesting
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\intelide.pdb - file not found
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\sys\intelide.pdb - file not found
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\symbols\sys\intelide.pdb - file not found
DBGHELP: intelide.pdb - file not found
*** ERROR: Module load completed but symbols could not be loaded for intelide.sys
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\spldr.pdb - file not found
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\sys\spldr.pdb - file not found
DBGHELP: c:\winddk\7600.16385.0\src\general\ioctl\kmdf\sys\objfre_win7_x86\i386\symbols\sys\spldr.pdb - file not found
DBGHELP: spldr.pdb - file not found
*** ERROR: Module load completed but symbols could not be loaded for spldr.sys
How to solve the problem? Thank you all very much.