https://github.com/mohawk2/win32-driverquery
https://github.com/mohawk2/win32-driverquery
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mohawk2/win32-driverquery
- Owner: mohawk2
- Created: 2015-02-21T18:20:26.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-22T04:13:38.000Z (over 11 years ago)
- Last Synced: 2025-03-30T03:43:06.875Z (about 1 year ago)
- Language: Perl
- Size: 117 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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.