We have noticed on the Asset Inventory on the majority of our Dell workstations that the montior vendor and model is being pulled back by SAM as.. polling using WMI Monitor Manufacturer - (Standard monitor types) Monitor Model Numer - Generic PnP Monitor If we run the following powershell script on one of the machines it correctly pulls back the monitor info. gwmi WmiMonitorID -Namespace root\wmi | Select @{n="Model";e={[System.Text.Encoding]::ASCII.GetString($_.UserFriendlyName -ne 00)}} | Format-List What is SAM using to pull this info and why is it failing to correctly identify the model? Thanks Mike