实例介绍
最新版的windbg 适用于win10,自己安装wdk之后拷贝出来的。
【实例截图】
【核心代码】
Debuggers
├── x64
│ ├── 1394
│ │ ├── 1394dbg.cat
│ │ ├── 1394dbg.inf
│ │ └── 1394kdbg.sys
│ ├── adplus.doc
│ ├── adplus.exe
│ ├── adplusext.dll
│ ├── adplusmanager.exe
│ ├── adplusmanager.exe.config
│ ├── adplus_old.vbs
│ ├── agestore.exe
│ ├── api-ms-win-eventing-provider-l1-1-0.dll
│ ├── breakin.exe
│ ├── cdb.exe
│ ├── convertstore.exe
│ ├── dbengprx.exe
│ ├── dbgcore.dll
│ ├── dbgeng.dll
│ ├── dbghelp.chm
│ ├── dbghelp.dll
│ ├── DbgModel.dll
│ ├── dbgrpc.exe
│ ├── dbgsrv.exe
│ ├── dbh.exe
│ ├── debugger.chm
│ ├── dml.doc
│ ├── dumpchk.exe
│ ├── dumpexam.exe
│ ├── gflags.exe
│ ├── gflagsui.dll
│ ├── kd1394
│ │ └── kd1394.dll
│ ├── kdbgctrl.exe
│ ├── kd.exe
│ ├── kdnetdebugvm.ps1
│ ├── kdnet.exe
│ ├── kdsrv.exe
│ ├── Kernel_Debugging_Tutorial.doc
│ ├── KernelDumpDecrypt.exe
│ ├── kill.exe
│ ├── list.exe
│ ├── logger.exe
│ ├── logviewer.exe
│ ├── ntkd.exe
│ ├── ntsd.exe
│ ├── pdbcopy.exe
│ ├── plmdebug.exe
│ ├── remote.exe
│ ├── rtlist.exe
│ ├── sdk
│ │ └── samples
│ │ ├── adp_ext
│ │ │ ├── adp_ext.cpp
│ │ │ ├── adp_ext.def
│ │ │ ├── adp_ext.rc
│ │ │ ├── adp_ext.vcxproj
│ │ │ ├── dbgexts.cpp
│ │ │ ├── dbgexts.h
│ │ │ ├── makefile
│ │ │ └── sources
│ │ ├── analyze_continue
│ │ │ ├── continue_known.xml
│ │ │ └── continue_known.xsd
│ │ ├── assert
│ │ │ ├── assert.cpp
│ │ │ ├── assert.vcxproj
│ │ │ ├── makefile
│ │ │ ├── out.cpp
│ │ │ ├── out.hpp
│ │ │ └── sources
│ │ ├── dbgsdk.sln
│ │ ├── dirs
│ │ ├── dumpstk
│ │ │ ├── dumpstk.cpp
│ │ │ ├── dumpstk.vcxproj
│ │ │ ├── makefile
│ │ │ ├── out.cpp
│ │ │ ├── out.hpp
│ │ │ └── sources
│ │ ├── exdi
│ │ │ ├── ExdiGdbSrvSample
│ │ │ │ ├── dirs
│ │ │ │ ├── ExdiGdbSrvSample
│ │ │ │ │ ├── ArgumentHelpers.h
│ │ │ │ │ ├── BasicExdiBreakpoint.h
│ │ │ │ │ ├── ComHelpers.h
│ │ │ │ │ ├── commandLogger.h
│ │ │ │ │ ├── dbgeng_exdi_io.h
│ │ │ │ │ ├── dlldata.c
│ │ │ │ │ ├── dllmain.cpp
│ │ │ │ │ ├── dllmain.h
│ │ │ │ │ ├── exdi3.idl
│ │ │ │ │ ├── ExdiGdbSrvSample.aps
│ │ │ │ │ ├── ExdiGdbSrvSample.cpp
│ │ │ │ │ ├── ExdiGdbSrvSample.def
│ │ │ │ │ ├── ExdiGdbSrvSample.idl
│ │ │ │ │ ├── ExdiGdbSrvSample.rc
│ │ │ │ │ ├── ExdiGdbSrvSample.rgs
│ │ │ │ │ ├── ExdiGdbSrvSample.vcxproj
│ │ │ │ │ ├── InterfaceMarshalHelper.h
│ │ │ │ │ ├── LiveExdiGdbSrvSampleServer.cpp
│ │ │ │ │ ├── LiveExdiGdbSrvSampleServer.h
│ │ │ │ │ ├── LiveExdiGdbSrvSampleServer.rgs
│ │ │ │ │ ├── ReadMe.txt
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── sources
│ │ │ │ │ ├── stdafx.cpp
│ │ │ │ │ ├── stdafx.h
│ │ │ │ │ └── targetver.h
│ │ │ │ ├── ExdiGdbSrvSample.sln
│ │ │ │ ├── GdbSrvControllerLib
│ │ │ │ │ ├── AsynchronousGdbSrvController.cpp
│ │ │ │ │ ├── AsynchronousGdbSrvController.h
│ │ │ │ │ ├── BufferWrapper.h
│ │ │ │ │ ├── cfgExdiGdbSrvHelper.cpp
│ │ │ │ │ ├── cfgExdiGdbSrvHelper.h
│ │ │ │ │ ├── ExceptionHelpers.h
│ │ │ │ │ ├── exdiConfigData.xml
│ │ │ │ │ ├── GdbSrvControllerLib.cpp
│ │ │ │ │ ├── GdbSrvControllerLib.h
│ │ │ │ │ ├── GdbSrvControllerLib.vcxproj
│ │ │ │ │ ├── GdbSrvControllerLib.vcxproj.filters
│ │ │ │ │ ├── GdbSrvRspClient.cpp
│ │ │ │ │ ├── GdbSrvRspClient.h
│ │ │ │ │ ├── HandleHelpers.h
│ │ │ │ │ ├── sources
│ │ │ │ │ ├── stdafx.cpp
│ │ │ │ │ ├── stdafx.h
│ │ │ │ │ ├── targetver.h
│ │ │ │ │ ├── TcpConnectorStream.cpp
│ │ │ │ │ ├── TcpConnectorStream.h
│ │ │ │ │ └── textHelpers.h
│ │ │ │ └── Readme-EXDIGdbserverSample.xml
│ │ │ └── ExdiKdSample
│ │ │ ├── dirs
│ │ │ ├── ExdiKdSample
│ │ │ │ ├── ArgumentHelpers.h
│ │ │ │ ├── BasicExdiBreakpoint.h
│ │ │ │ ├── ComHelpers.h
│ │ │ │ ├── dbgeng_exdi_io.h
│ │ │ │ ├── dllmain.cpp
│ │ │ │ ├── dllmain.h
│ │ │ │ ├── exdi3.idl
│ │ │ │ ├── ExdiKdSample.cpp
│ │ │ │ ├── ExdiKdSample.def
│ │ │ │ ├── ExdiKdSample.idl
│ │ │ │ ├── ExdiKdSample.rc
│ │ │ │ ├── ExdiKdSample.rgs
│ │ │ │ ├── ExdiKdSample.vcxproj
│ │ │ │ ├── InterfaceMarshalHelper.h
│ │ │ │ ├── KDCommandLogger.h
│ │ │ │ ├── LiveExdiSampleServer.cpp
│ │ │ │ ├── LiveExdiSampleServer.h
│ │ │ │ ├── LiveExdiSampleServer.rgs
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── resource.h
│ │ │ │ ├── sources
│ │ │ │ ├── StaticExdiSampleServer.cpp
│ │ │ │ ├── StaticExdiSampleServer.h
│ │ │ │ ├── StaticExdiSampleServer.rgs
│ │ │ │ ├── stdafx.cpp
│ │ │ │ ├── stdafx.h
│ │ │ │ └── targetver.h
│ │ │ ├── ExdiKdSample.sln
│ │ │ ├── KdControllerLib
│ │ │ │ ├── AsynchronousKdController.cpp
│ │ │ │ ├── AsynchronousKDController.h
│ │ │ │ ├── BufferedStreamReader.cpp
│ │ │ │ ├── BufferedStreamReader.h
│ │ │ │ ├── BufferWrapper.h
│ │ │ │ ├── ExceptionHelpers.h
│ │ │ │ ├── HandleHelpers.h
│ │ │ │ ├── KDController.cpp
│ │ │ │ ├── KDController.h
│ │ │ │ ├── KdControllerLib.vcxproj
│ │ │ │ ├── KdControllerLib.vcxproj.filters
│ │ │ │ ├── sources
│ │ │ │ ├── stdafx.cpp
│ │ │ │ ├── stdafx.h
│ │ │ │ └── targetver.h
│ │ │ └── readme.docx
│ │ ├── extcpp
│ │ │ ├── extcpp.cpp
│ │ │ ├── extcpp.def
│ │ │ ├── extcpp.rc
│ │ │ ├── extcpp.vcxproj
│ │ │ ├── makefile
│ │ │ ├── readme.txt
│ │ │ └── sources
│ │ ├── exts
│ │ │ ├── dbgexts.cpp
│ │ │ ├── dbgexts.def
│ │ │ ├── dbgexts.h
│ │ │ ├── dbgexts.rc
│ │ │ ├── exts.cpp
│ │ │ ├── exts.vcxproj
│ │ │ ├── makefile
│ │ │ ├── readme.txt
│ │ │ └── sources
│ │ ├── healer
│ │ │ ├── healer.cpp
│ │ │ ├── healer.vcxproj
│ │ │ ├── makefile
│ │ │ └── sources
│ │ ├── remmon
│ │ │ ├── extr.cpp
│ │ │ ├── extr.hpp
│ │ │ ├── makefile
│ │ │ ├── out.cpp
│ │ │ ├── out.hpp
│ │ │ ├── remmon.cpp
│ │ │ ├── remmon.vcxproj
│ │ │ └── sources
│ │ └── simplext
│ │ ├── exts.c
│ │ ├── makefile
│ │ ├── readme.txt
│ │ ├── simple.c
│ │ ├── simple.def
│ │ ├── simple.h
│ │ ├── simple.rc
│ │ ├── simplext.vcxproj
│ │ └── sources
│ ├── srcsrv
│ │ ├── cv2http.cmd
│ │ ├── cv2http.pl
│ │ ├── cvsindex.cmd
│ │ ├── cvs.pm
│ │ ├── dbgcore.dll
│ │ ├── dbghelp.dll
│ │ ├── p4index.cmd
│ │ ├── p4.pm
│ │ ├── pdbstr.exe
│ │ ├── srcsrv.dll
│ │ ├── srcsrv.ini
│ │ ├── srctool.exe
│ │ ├── ssindex.cmd
│ │ ├── svnindex.cmd
│ │ ├── svn.pm
│ │ ├── tfsindex.cmd
│ │ ├── tfs.pm
│ │ ├── vssindex.cmd
│ │ ├── vss.pm
│ │ └── walk.cmd
│ ├── srcsrv.dll
│ ├── SymbolCheck.dll
│ ├── symchk.exe
│ ├── symproxy
│ │ ├── symproxy.dll
│ │ ├── symproxy.man
│ │ ├── symproxy.reg
│ │ └── symsrv.dll
│ ├── symsrv.dll
│ ├── symsrv.yes
│ ├── symstore.exe
│ ├── themes
│ │ ├── Multimon.reg
│ │ ├── Multimon.wew
│ │ ├── placehold1.c
│ │ ├── placehold2.c
│ │ ├── placehold3.c
│ │ ├── placehold4.c
│ │ ├── placehold5.c
│ │ ├── srcdisassemble.reg
│ │ ├── srcdisassemble.wew
│ │ ├── standard.reg
│ │ ├── standardvs.reg
│ │ ├── standardvs.wew
│ │ └── standard.wew
│ ├── tlist.exe
│ ├── triage
│ │ ├── pooltag.txt
│ │ └── triage.ini
│ ├── umdh.exe
│ ├── usb
│ │ ├── usb2dbg.cat
│ │ ├── usb2dbg.inf
│ │ ├── usb2dbg.sys
│ │ ├── usbnet.cat
│ │ ├── usbnet.inf
│ │ └── usbnet.sys
│ ├── usbview.exe
│ ├── usbview.exe.config
│ ├── VerifiedNICList.xml
│ ├── Visualizers
│ │ ├── atlmfc.natvis
│ │ ├── concurrency.natvis
│ │ ├── cpp_rest.natvis
│ │ ├── Kernel.natvis
│ │ ├── stl.natvis
│ │ ├── Windows.Data.Json.natvis
│ │ ├── Windows.Devices.Geolocation.natvis
│ │ ├── Windows.Devices.Sensors.natvis
│ │ ├── Windows.Media.natvis
│ │ ├── windows.natvis
│ │ └── winrt.natvis
│ ├── vmdemux.exe
│ ├── windbg.exe
│ ├── winext
│ │ ├── bthkd.dll
│ │ ├── ChakraCore.dll
│ │ ├── ext.dll
│ │ ├── gpiokd.dll
│ │ ├── hidkd.dll
│ │ ├── jscript9diagdump.dll
│ │ ├── JsProvider.dll
│ │ ├── kext.dll
│ │ ├── logexts.dll
│ │ ├── Logexts.ini
│ │ ├── LogManifest.lgm
│ │ ├── rcdrkd.dll
│ │ ├── storagekd.dll
│ │ ├── uext.dll
│ │ ├── usb3kd.dll
│ │ ├── usbkd.dll
│ │ └── wdfkd.dll
│ └── winxp
│ ├── acpikd.dll
│ ├── default.tmf
│ ├── exts.dll
│ ├── fltkd.dll
│ ├── kdexts.dll
│ ├── ks.dll
│ ├── minipkd.dll
│ ├── ndiskd.dll
│ ├── ntsdexts.dll
│ ├── nvkd.dll
│ ├── rpcexts.dll
│ ├── scsikd.dll
│ ├── system.tmf
│ ├── wmitrace.dll
│ ├── wow64exts.dll
│ └── wudfext.dll
└── x86
├── 1394
│ ├── 1394dbg.cat
│ ├── 1394dbg.inf
│ └── 1394kdbg.sys
├── adplus.doc
├── adplus.exe
├── adplusext.dll
├── adplusmanager.exe
├── adplusmanager.exe.config
├── adplus_old.vbs
├── agestore.exe
├── api-ms-win-eventing-provider-l1-1-0.dll
├── breakin.exe
├── cdb.exe
├── convertstore.exe
├── dbengprx.exe
├── dbgcore.dll
├── dbgeng.dll
├── dbghelp.chm
├── dbghelp.dll
├── DbgModel.dll
├── dbgrpc.exe
├── dbgsrv.exe
├── dbh.exe
├── debugger.chm
├── dml.doc
├── dumpchk.exe
├── dumpexam.exe
├── gflags.exe
├── gflagsui.dll
├── kd1394
│ └── kd1394.dll
├── kdbgctrl.exe
├── kd.exe
├── kdnetdebugvm.ps1
├── kdnet.exe
├── kdsrv.exe
├── Kernel_Debugging_Tutorial.doc
├── KernelDumpDecrypt.exe
├── kill.exe
├── list.exe
├── logger.exe
├── logviewer.exe
├── ntkd.exe
├── ntsd.exe
├── pdbcopy.exe
├── plmdebug.exe
├── remote.exe
├── rtlist.exe
├── sdk
│ └── samples
│ ├── adp_ext
│ │ ├── adp_ext.cpp
│ │ ├── adp_ext.def
│ │ ├── adp_ext.rc
│ │ ├── adp_ext.vcxproj
│ │ ├── dbgexts.cpp
│ │ ├── dbgexts.h
│ │ ├── makefile
│ │ └── sources
│ ├── analyze_continue
│ │ ├── continue_known.xml
│ │ └── continue_known.xsd
│ ├── assert
│ │ ├── assert.cpp
│ │ ├── assert.vcxproj
│ │ ├── makefile
│ │ ├── out.cpp
│ │ ├── out.hpp
│ │ └── sources
│ ├── dbgsdk.sln
│ ├── dirs
│ ├── dumpstk
│ │ ├── dumpstk.cpp
│ │ ├── dumpstk.vcxproj
│ │ ├── makefile
│ │ ├── out.cpp
│ │ ├── out.hpp
│ │ └── sources
│ ├── exdi
│ │ ├── ExdiGdbSrvSample
│ │ │ ├── dirs
│ │ │ ├── ExdiGdbSrvSample
│ │ │ │ ├── ArgumentHelpers.h
│ │ │ │ ├── BasicExdiBreakpoint.h
│ │ │ │ ├── ComHelpers.h
│ │ │ │ ├── commandLogger.h
│ │ │ │ ├── dbgeng_exdi_io.h
│ │ │ │ ├── dlldata.c
│ │ │ │ ├── dllmain.cpp
│ │ │ │ ├── dllmain.h
│ │ │ │ ├── exdi3.idl
│ │ │ │ ├── ExdiGdbSrvSample.aps
│ │ │ │ ├── ExdiGdbSrvSample.cpp
│ │ │ │ ├── ExdiGdbSrvSample.def
│ │ │ │ ├── ExdiGdbSrvSample.idl
│ │ │ │ ├── ExdiGdbSrvSample.rc
│ │ │ │ ├── ExdiGdbSrvSample.rgs
│ │ │ │ ├── ExdiGdbSrvSample.vcxproj
│ │ │ │ ├── InterfaceMarshalHelper.h
│ │ │ │ ├── LiveExdiGdbSrvSampleServer.cpp
│ │ │ │ ├── LiveExdiGdbSrvSampleServer.h
│ │ │ │ ├── LiveExdiGdbSrvSampleServer.rgs
│ │ │ │ ├── ReadMe.txt
│ │ │ │ ├── resource.h
│ │ │ │ ├── sources
│ │ │ │ ├── stdafx.cpp
│ │ │ │ ├── stdafx.h
│ │ │ │ └── targetver.h
│ │ │ ├── ExdiGdbSrvSample.sln
│ │ │ ├── GdbSrvControllerLib
│ │ │ │ ├── AsynchronousGdbSrvController.cpp
│ │ │ │ ├── AsynchronousGdbSrvController.h
│ │ │ │ ├── BufferWrapper.h
│ │ │ │ ├── cfgExdiGdbSrvHelper.cpp
│ │ │ │ ├── cfgExdiGdbSrvHelper.h
│ │ │ │ ├── ExceptionHelpers.h
│ │ │ │ ├── exdiConfigData.xml
│ │ │ │ ├── GdbSrvControllerLib.cpp
│ │ │ │ ├── GdbSrvControllerLib.h
│ │ │ │ ├── GdbSrvControllerLib.vcxproj
│ │ │ │ ├── GdbSrvControllerLib.vcxproj.filters
│ │ │ │ ├── GdbSrvRspClient.cpp
│ │ │ │ ├── GdbSrvRspClient.h
│ │ │ │ ├── HandleHelpers.h
│ │ │ │ ├── sources
│ │ │ │ ├── stdafx.cpp
│ │ │ │ ├── stdafx.h
│ │ │ │ ├── targetver.h
│ │ │ │ ├── TcpConnectorStream.cpp
│ │ │ │ ├── TcpConnectorStream.h
│ │ │ │ └── textHelpers.h
│ │ │ └── Readme-EXDIGdbserverSample.xml
│ │ └── ExdiKdSample
│ │ ├── dirs
│ │ ├── ExdiKdSample
│ │ │ ├── ArgumentHelpers.h
│ │ │ ├── BasicExdiBreakpoint.h
│ │ │ ├── ComHelpers.h
│ │ │ ├── dbgeng_exdi_io.h
│ │ │ ├── dllmain.cpp
│ │ │ ├── dllmain.h
│ │ │ ├── exdi3.idl
│ │ │ ├── ExdiKdSample.cpp
│ │ │ ├── ExdiKdSample.def
│ │ │ ├── ExdiKdSample.idl
│ │ │ ├── ExdiKdSample.rc
│ │ │ ├── ExdiKdSample.rgs
│ │ │ ├── ExdiKdSample.vcxproj
│ │ │ ├── InterfaceMarshalHelper.h
│ │ │ ├── KDCommandLogger.h
│ │ │ ├── LiveExdiSampleServer.cpp
│ │ │ ├── LiveExdiSampleServer.h
│ │ │ ├── LiveExdiSampleServer.rgs
│ │ │ ├── ReadMe.txt
│ │ │ ├── resource.h
│ │ │ ├── sources
│ │ │ ├── StaticExdiSampleServer.cpp
│ │ │ ├── StaticExdiSampleServer.h
│ │ │ ├── StaticExdiSampleServer.rgs
│ │ │ ├── stdafx.cpp
│ │ │ ├── stdafx.h
│ │ │ └── targetver.h
│ │ ├── ExdiKdSample.sln
│ │ ├── KdControllerLib
│ │ │ ├── AsynchronousKdController.cpp
│ │ │ ├── AsynchronousKDController.h
│ │ │ ├── BufferedStreamReader.cpp
│ │ │ ├── BufferedStreamReader.h
│ │ │ ├── BufferWrapper.h
│ │ │ ├── ExceptionHelpers.h
│ │ │ ├── HandleHelpers.h
│ │ │ ├── KDController.cpp
│ │ │ ├── KDController.h
│ │ │ ├── KdControllerLib.vcxproj
│ │ │ ├── KdControllerLib.vcxproj.filters
│ │ │ ├── sources
│ │ │ ├── stdafx.cpp
│ │ │ ├── stdafx.h
│ │ │ └── targetver.h
│ │ └── readme.docx
│ ├── extcpp
│ │ ├── extcpp.cpp
│ │ ├── extcpp.def
│ │ ├── extcpp.rc
│ │ ├── extcpp.vcxproj
│ │ ├── makefile
│ │ ├── readme.txt
│ │ └── sources
│ ├── exts
│ │ ├── dbgexts.cpp
│ │ ├── dbgexts.def
│ │ ├── dbgexts.h
│ │ ├── dbgexts.rc
│ │ ├── exts.cpp
│ │ ├── exts.vcxproj
│ │ ├── makefile
│ │ ├── readme.txt
│ │ └── sources
│ ├── healer
│ │ ├── healer.cpp
│ │ ├── healer.vcxproj
│ │ ├── makefile
│ │ └── sources
│ ├── remmon
│ │ ├── extr.cpp
│ │ ├── extr.hpp
│ │ ├── makefile
│ │ ├── out.cpp
│ │ ├── out.hpp
│ │ ├── remmon.cpp
│ │ ├── remmon.vcxproj
│ │ └── sources
│ └── simplext
│ ├── exts.c
│ ├── makefile
│ ├── readme.txt
│ ├── simple.c
│ ├── simple.def
│ ├── simple.h
│ ├── simple.rc
│ ├── simplext.vcxproj
│ └── sources
├── srcsrv
│ ├── cv2http.cmd
│ ├── cv2http.pl
│ ├── cvsindex.cmd
│ ├── cvs.pm
│ ├── dbgcore.dll
│ ├── dbghelp.dll
│ ├── p4index.cmd
│ ├── p4.pm
│ ├── pdbstr.exe
│ ├── srcsrv.dll
│ ├── srcsrv.ini
│ ├── srctool.exe
│ ├── ssindex.cmd
│ ├── svnindex.cmd
│ ├── svn.pm
│ ├── tfsindex.cmd
│ ├── tfs.pm
│ ├── vssdump.exe
│ ├── vssindex.cmd
│ ├── vss.pm
│ └── walk.cmd
├── srcsrv.dll
├── SymbolCheck.dll
├── symchk.exe
├── symproxy
│ ├── symproxy.dll
│ ├── symproxy.man
│ ├── symproxy.reg
│ └── symsrv.dll
├── symsrv.dll
├── symsrv.yes
├── symstore.exe
├── themes
│ ├── Multimon.reg
│ ├── Multimon.wew
│ ├── placehold1.c
│ ├── placehold2.c
│ ├── placehold3.c
│ ├── placehold4.c
│ ├── placehold5.c
│ ├── srcdisassemble.reg
│ ├── srcdisassemble.wew
│ ├── standard.reg
│ ├── standardvs.reg
│ ├── standardvs.wew
│ └── standard.wew
├── tlist.exe
├── triage
│ ├── pooltag.txt
│ └── triage.ini
├── umdh.exe
├── usb
│ ├── usb2dbg.cat
│ ├── usb2dbg.inf
│ ├── usb2dbg.sys
│ ├── usbnet.cat
│ ├── usbnet.inf
│ └── usbnet.sys
├── usbview.exe
├── usbview.exe.config
├── VerifiedNICList.xml
├── Visualizers
│ ├── atlmfc.natvis
│ ├── concurrency.natvis
│ ├── cpp_rest.natvis
│ ├── Kernel.natvis
│ ├── stl.natvis
│ ├── Windows.Data.Json.natvis
│ ├── Windows.Devices.Geolocation.natvis
│ ├── Windows.Devices.Sensors.natvis
│ ├── Windows.Media.natvis
│ ├── windows.natvis
│ └── winrt.natvis
├── vmdemux.exe
├── windbg.exe
├── winext
│ ├── bthkd.dll
│ ├── ChakraCore.dll
│ ├── ext.dll
│ ├── gpiokd.dll
│ ├── hidkd.dll
│ ├── jscript9diagdump.dll
│ ├── JsProvider.dll
│ ├── kext.dll
│ ├── logexts.dll
│ ├── Logexts.ini
│ ├── LogManifest.lgm
│ ├── rcdrkd.dll
│ ├── storagekd.dll
│ ├── uext.dll
│ ├── usb3kd.dll
│ ├── usbkd.dll
│ └── wdfkd.dll
└── winxp
├── acpikd.dll
├── default.tmf
├── exts.dll
├── fltkd.dll
├── kdexts.dll
├── ks.dll
├── minipkd.dll
├── ndiskd.dll
├── ntsdexts.dll
├── nvkd.dll
├── rpcexts.dll
├── scsikd.dll
├── system.tmf
├── vdmexts.dll
├── wmitrace.dll
├── wow64exts.dll
└── wudfext.dll
58 directories, 612 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论