Skip to content

Instantly share code, notes, and snippets.

@SMSAgentSoftware
SMSAgentSoftware / Get-WindowsUpdateInstalledDriverDetails.ps1
Created July 7, 2023 14:37
Translates locally installed Windows update drivers to actual drivers
class Driver {
[string]$WUName
[datetime]$InstallDate
[string]$DeviceName
[string]$FriendlyName
[datetime]$DriverDate
[string]$DriverVersion
[string]$Manufacturer
}
$DriverList = [System.Collections.Generic.List[Driver]]::new()