🖥️ Batch (CMD)

Get System Drivers Report (Batch)

Uses wmic to list System Drivers (Win32_SystemDriver) straight from the command line.

By WindowsScripting.com · 312 B
GetSystemDriverReport.bat
@echo off
:: ============================================================
:: GetSystemDriverReport.bat
::
:: Reports System Drivers via WMI (Win32_SystemDriver).
:: ============================================================

wmic path Win32_SystemDriver get Name,DisplayName,State,PathName /format:table

pause