windows 7 64 bit device driver developement

hii all have buit windows 7 64 bit driver in kmdf it is installed succussfully but it is not working when i connected to local kernal debugging error is occured
the error is shown bellow please help me to solve this problem

  1. first error
  • using the _NT_SYMBOL_PATH environment variable. *
  • using the -y <symbol_path> argument when starting the debugger. *
  • using .sympath and .sympath+ *

*** ERROR: Symbol file could not be found. Defaulted to export symbols for ntkrnlmp.exe -
Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x64
Product: WinNt, suite: TerminalServer SingleUserTS
Built by: 7601.24384.amd64fre.win7sp1_ldr_escrow.190220-1800
Machine Name:
Kernel base = 0xfffff80002c4b000 PsLoadedModuleList = 0xfffff80002e84c90
Debug session time: Tue Jul 28 16:39:09.518 2020 (UTC + 5:30)
System Uptime: 0 days 0:05:55.455
The call to LoadLibrary(ext) failed, Win32 error 0n2
“The system cannot find the file specified.”
Please check your debugger configuration and/or network access.
The call to LoadLibrary(exts) failed, Win32 error 0n2
“The system cannot find the file specified.”
Please check your debugger configuration and/or network access.
The call to LoadLibrary(kext) failed, Win32 error 0n2
“The system cannot find the file specified.”
Please check your debugger configuration and/or network access.
The call to LoadLibrary(kdexts) failed, Win32 error 0n2
“The system cannot find the file specified.”
Please check your debugger configuration and/or network access.

  1. second error (when i opened .sys i got this this error)

"commandLine: C:\Users\test - 1\Desktop\28-07-20\debug1\PCINO.sys
cannot execute ‘c:\Users\test - 1\Desktop\28-07-20\debug1\PCINO.sys’,win32 error on12
“The %1 application cannot be run in win32 mode.”

The most likely problem is that you built your driver as 32-bit. Unlike user mode, a kernel driver must match the operating system’s bit width.

The first error is simply that you haven’t configured symbols in the debugger.
The second error is wtf? You cannot run a .sys file from user mode.

You need to acquire some more clues about whatever it is you are actually trying to do.

And you need to acquire a sufficient clue about how to post in the right discussion area.

Moved…

Peter