Users Guide
Table Of Contents
- Dell Command | Monitor Version 10.3 User's Guide
- Introduction to Dell Command | Monitor 10.3
- Windows SMM Security Mitigations Table (WSMT) Compliance
- Standards and protocols for Dell Command | Monitor 10.3
- Use case scenarios using Dell Command | Monitor 10.3
- Using Dell Command | Monitor 10.3
- Polling interval setting
- RAID status reporting
- Monitoring the Dell client systems
- Application log for Dell Command | Monitor for Linux
- Detecting advance format drives
- Boot configurations
- Changing the system settings
- Managing Dell client systems locally using Dell Command | Monitor 10.3
- Managing Dell client systems remotely using Dell Command | Monitor 10.3
- Frequently asked questions for Dell Command | Monitor 10.3
- Troubleshooting steps using Dell Command | Monitor 10.3
- Unable to remotely connect to Windows Management Instrumentation
- Installation failure on systems running Windows
- BIOS setting enumeration value appears as 1
- Hapi installation fails due to the dependency of libsmbios
- CIM resources not available
- Unable to execute the commands using DCM on the systems running Ubuntu Core 16
- Third-party licenses
- Other documents you may need
- Contacting Dell
DCIM_AssetWarrantyInformation
● To query the warranty status on endpoint device, run the following command:
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation
● To list the warranty entitlements in chronological order of WarrantyEndDate, run the following command:
Get-CimInstance -Namespace root/dcim/sysman -ClassName DCIM_AssetWarrantyInformation
| Sort-Object -Property WarrantyEndDate | Select Name, WarrantyEndDate,
WarrantyStartDate
● To disable the warranty feature and subsequent refresh calls, run the following command:
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation|
Where-Object{$_.InstanceID -eq "Root/MainSystemChassis/COOObject/COOWarranty:0"} |
Invoke-CimMethod -MethodName DisableWarranty
● To pull warranty information on-demand, run the following command:
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_AssetWarrantyInformation|
Where-Object{$_.InstanceID -eq "Root/MainSystemChassis/COOObject/COOWarranty:0"} |
Invoke-CimMethod -MethodName RefreshWarranty
NOTE: Set up for Proxy configuration -
● Default proxy – Dell Command | Monitor selects the default system proxy (set in IE)
● Custom proxy
DCIM_ApplicationProxySetting class is used to modify the proxy settings for Dell Command | Monitor as per the
proxy environment.
DCIM_BootConfigSetting
An instance of DCIM_BootConfigSetting represents a boot configuration that is used during the boot process. For example,
on client systems, there are two types of boot configurations — Legacy and UEFI. So, DCIM_BootConfigSetting has a
maximum of two instances to represent, one each for Legacy and UEFI.
You can determine if the DCIM_BootConfigSetting represents Legacy, using the following properties:
● InstanceID = "DCIM:BootConfigSetting:Next:1"
● ElementName = "Next Boot Configuration Setting : Boot List Type 1"
You can determine if the DCIM_BootConfigSetting represents UEFI, using the following properties:
● InstanceID = "DCIM:BootConfigSetting:Next:2"
● ElementName = "Next Boot Configuration Setting : Boot List Type 2"
DCIM_BootSourceSetting
This class represents the boot devices or sources. The ElementName, BIOSBootString, and StructuredBootString
properties contain a string that identifies the boot devices. For example, floppy, hard disk, CD/DVD, network, Personal
Computer Memory Card International Association (PCMCIA), Battery Electric Vehicle (BEV), or USB. Based on the boot list type
of the device, an instance of DCIM_BootSourceSetting is associated with one of the instances of
DCIM_BootConfigSetting.
DCIM_OrderedComponent
The DCIM_OrderedComponent association class is used to associate instances of DCIM_BootConfigSetting with instances
of DCIM_BootSourceSetting representing one of the boot list types (Legacy or UEFI) to which the boot devices belongs. The
GroupComponent property of DCIM_OrderedComponent refers to the DCIM_BootConfigSetting instance and the
PartComponent property refers to the DCIM_BootSourceSetting instance.
Using Dell Command | Monitor 10.3
15