Start a Conversation

Unsolved

D

1 Rookie

 • 

2 Posts

41

April 10th, 2025 16:51

Dell Command Monitor Warranty Info

It's been sometime now. Will the Warranty information ever be restored to Dell Command Monitor? It's mentioned in the documentation, but you are no longer available to query class DCIM_AssetWarrantyInformation

1 Rookie

 • 

19 Posts

August 1st, 2025 11:43

# Get warranty info
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation

# Sort by WarrantyEndDate
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation |
  Sort-Object WarrantyEndDate |
  Select Name, WarrantyStartDate, WarrantyEndDate

# Force refresh manually
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation |
  Where-Object InstanceID -eq "Root/MainSystemChassis/COOObject/COOWarranty:0" |
  Invoke-CimMethod -MethodName RefreshWarranty

# Disable auto‑refresh
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation |
  Where-Object InstanceID -eq "Root/MainSystemChassis/COOObject/COOWarranty:0" |
  Invoke‑CimMethod -MethodName DisableWarranty

1 Rookie

 • 

2 Posts

August 1st, 2025 19:28

@YashSmith​ Thank you, yes, I am familiar with those commands. It's been broken for years.  Below is the output you receive

Caption           : 
Description       : 
ElementName       : DCIM:OEMAssetWarrantyInformation
ChangeableType    : 
ConfigurationName : 
InstanceID        : Root/MainSystemChassis/COOObject/COOWarranty:0
Family            : Please set the value
IdentifyingNumber : Please set the value
LastRefreshed     : 1/31/2024 2:15:27 PM
LastRefreshStatus : 1
Name              : Please set the value
SKUNumber         : 
Vendor            : 
Version           : 
WarrantyDuration  : 0
WarrantyEndDate   : 12/31/1969 7:00:00 PM
WarrantyStartDate : 12/31/1969 7:00:00 PM
PSComputerName    :

No Events found!

Top