Docks - dell/EUCTechHub GitHub Wiki

Useful information & examples around Dell docks.

Note: This article is applicable for WD19xx and newer docks. First generation of USB Typ-C / Thunderbolt docks like WD15, TB15, TB16 may have limited capabilities

Typical asks about Docking Stations is to query Service-Tag, Model and Firmware version.

With Dell Command Monitor

Dock data Dell Command Monitor mapping
Dock service tag DCIM_Chassis::Tag
Dock FW package version DCIM_Chassis::Version
Dock module type DCIM_Chassis::Model
Dock marketing name DCIM_Chassis::Name
Dock module serial DCIM_Chassis::SerialNumber

Script to capture a Service Tag from a Dell Dock

Note: This example requires Dell Command Monitor

$DockTag = Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_Chassis | Select-Object -Property Tag

Write-Output $DockTag[1]

Script to capture Firmwareversion from a Dell Dock

Note: This example requires Dell Command Monitor

Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_Chassis | Select-Object -Property Version


Author(s):

Mesut Kaptanoğlu