Skip to content

Instantly share code, notes, and snippets.

@zaskem
zaskem / IdentifyDellDockFirmwareVersion.md
Created April 11, 2023 14:33
One-liner to identify attached Dell dock firmware and model number from WMI when the Dell System Inventory Agent (DSIA) is installed on the host machine.

Get-WmiObject -Namespace root\dell\sysinv dell_softwareidentity -ErrorAction Stop | Select-Object VersionString, ElementName | Where-Object ElementName -like "WD19" | Sort-Object ElementName