Find Drivers That Dont Have Associated Inf Files
Query
// Use Case: Identifying Windows drivers without an associated INF (Information) file in a system's database.
WindowsDriver
| where isnull(InfName)Explanation
This query is designed to identify Windows drivers on a system that do not have an associated INF (Information) file. In simple terms, it searches through a database of Windows drivers and filters out those entries where the INF file name is missing or not specified. The result will be a list of drivers that lack this important file, which is typically used for driver installation and configuration.
Details

Ugur Koc
Released: December 13, 2024
Tables
WindowsDriver
Keywords
WindowsDriverInfName
Operators
whereisnull