Check-in [8612dbd815]
Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | WMI Win32_drivers |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8612dbd8155ddbbb7ed66bdfef2dbe5a |
User & Date: | mario 2018-05-16 18:05:42 |
Context
2018-05-16
| ||
18:05 | WMI Win32_OS check-in: 6f53bccd86 user: mario tags: trunk | |
18:05 | WMI Win32_drivers check-in: 8612dbd815 user: mario tags: trunk | |
18:05 | Rewrite WMI output into GB. check-in: 20dd6899aa user: mario tags: trunk | |
Changes
Added tools/wmi/drivers.ps1.
> > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # api: multitool # version: 0.1 # title: Drivers # description: Win32_PnPSignedDriver # type: inline # category: wmi # hidden: 0 # key: w9|drivers # config: {} # src: http://windowsitpro.com/powershell/check-installed-driver-versions-using-powershell # # Generates a list of installed drivers Param($machine = (Read-Host "Machine")); Get-WmiObject Win32_PnPSignedDriver -computer $machine | select devicename,deviceid,description,driverprovidername,driverdate,driverversion # |FT -Auto -Wrap |Out-String -Width 200 |