List Drivers in Windbg

dmccoy

Well-known member
Joined
Nov 27, 2017
Posts
237
How can I get a list of all non-Microsoft Drivers with the information similar to shown below within Windbg? Thank you

Code:
[COLOR=#666600]**************************[/COLOR][COLOR=#660066]Wed[/COLOR] [COLOR=#660066]Jun[/COLOR] [COLOR=#006666]22[/COLOR] [COLOR=#006666]05[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]00[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]12.084[/COLOR] [COLOR=#006666]2016[/COLOR] [COLOR=#666600]([/COLOR]UTC [COLOR=#666600]-[/COLOR] [COLOR=#006666]4[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]00[/COLOR][COLOR=#666600])**************************[/COLOR]
ASMMAP64[COLOR=#666600].[/COLOR]sys                [COLOR=#660066]Thu[/COLOR] [COLOR=#660066]Jul[/COLOR]  [COLOR=#006666]2[/COLOR] [COLOR=#006666]05[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]13[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]26[/COLOR] [COLOR=#006666]2009[/COLOR] [COLOR=#666600]([/COLOR][COLOR=#006666]4A4C7A36[/COLOR][COLOR=#666600])[/COLOR]
[COLOR=#660066]AiCharger[/COLOR][COLOR=#666600].[/COLOR]sys               [COLOR=#660066]Thu[/COLOR] [COLOR=#660066]Sep[/COLOR] [COLOR=#006666]22[/COLOR] [COLOR=#006666]22[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]04[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]40[/COLOR] [COLOR=#006666]2011[/COLOR] [COLOR=#666600]([/COLOR][COLOR=#006666]4E7BE938[/COLOR][COLOR=#666600])[/COLOR]
[COLOR=#660066]GEARAspiWDM[/COLOR][COLOR=#666600].[/COLOR]sys             [COLOR=#660066]Thu[/COLOR] [COLOR=#660066]May[/COLOR]  [COLOR=#006666]3[/COLOR] [COLOR=#006666]15[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]56[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]17[/COLOR] [COLOR=#006666]2012[/COLOR] [COLOR=#666600]([/COLOR][COLOR=#006666]4FA2E2E1[/COLOR][COLOR=#666600])[/COLOR]
btwl2cap[COLOR=#666600].[/COLOR]sys                [COLOR=#660066]Thu[/COLOR] [COLOR=#660066]Jul[/COLOR] [COLOR=#006666]26[/COLOR] [COLOR=#006666]11[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]14[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]41[/COLOR] [COLOR=#006666]2012[/COLOR] [COLOR=#666600]([/COLOR][COLOR=#006666]50115EE1[/COLOR][COLOR=#666600])[/COLOR]
klwfp[COLOR=#666600].[/COLOR]sys                   [COLOR=#660066]Wed[/COLOR] [COLOR=#660066]Feb[/COLOR] [COLOR=#006666]27[/COLOR] [COLOR=#006666]03[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]48[/COLOR][COLOR=#666600]:[/COLOR][COLOR=#006666]31[/COLOR] [COLOR=#006666]2013[/COLOR] [COLOR=#666600]([/COLOR][COLOR=#006666]512DC85F[/COLOR][COLOR=#666600])[/COLOR]
 
The lmsmt WinDbg command will produce similar output to the above, however, it will also list Microsoft drivers too unfortunately.
 
Thank you I am familiar with that command but did not know if there was a way to exclude Microsoft drivers.
 
I'm not personally aware of any native WinDbg extensions which exclude Microsoft drivers unfortunately, but you could consider writing a custom WinDbg extension and filtering out the common Microsoft drivers.
 

Has Sysnative Forums helped you? Please consider donating to help us support the site!

Back
Top