Powershell GUI fronted (WPF) to run categorized console scripts

⌈⌋ ⎇ branch:  ClickyColoury


Artifact [68be114cbc]

Artifact 68be114cbcf109a76756b4d5e59b1b6b6cd40738:

  • File tools/wmi/drivers.ps1 — part of check-in [8612dbd815] at 2018-05-16 18:05:42 on branch trunk — WMI Win32_drivers (user: mario size: 538)

# 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