An open API service indexing awesome lists of open source software.

https://github.com/mohawk2/win32-driverquery


https://github.com/mohawk2/win32-driverquery

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

NAME
Win32::DriverQuery - query system for installed drivers and their
versions

SYNOPSIS
my @modules = Win32::DriverQuery->query;
print join(' :: ', $_->{FullPathName}, ($_->{version}//'undef'),
( -e $_->{FullPathName} ? "" : "no path" )), "\n" for @modules;

DESCRIPTION
The class method "query" returns a list of hashrefs with keys
"FullPathName" and "version", for each installed driver.

AUTHOR
Ed J took Daniel Dragan's excellent script and made it into a module.