Users Guide
Table Of Contents
- Dell Command | Monitor 版本 10.5 用户指南
- 目录
- Dell Command | Monitor 10.5 简介
- Windows SMM 安全气候变化表 (WSMT) 合规性
- 适用于 Dell Command | Monitor 10.5 的标准和协议
- 使用 Dell Command | Monitor 10.5 的使用案例场景
- 使用 Dell Command | Monitor 10.5
- 使用 Dell Command | Monitor 10.5 本地管理 Dell 客户端系统
- 使用 Dell Command | Monitor 10.5 远程管理 Dell 客户端系统
- 有关 Dell Command | Monitor 10.5 的常见问题
- 使用 Dell Command | Monitor 10.5 的故障处理步骤
- 您可能需要的其他说明文件
- 联系戴尔
使用 Dell Command | Monitor 10.5 本地管理
Dell 客户端系统
您可以使用以下方法本地管理 Dell 客户端系统:
● 对于运行 Windows 的系统,使用 PowerShell
● 对于运行 Linux 的系统,使用 OMICLI
主题:
• 使用 PowerShell 在本地管理 Windows 系统
• 使用 OMICLI 在本地管理 Linux 系统
使用 PowerShell 在本地管理 Windows 系统
您可以使用 PowerShell 命令管理在本地运行 Windows 的 Dell 客户端系统。
● 枚举 DCIM 类的实例
○ Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSEnumeration
○ Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSPassword
● 获取 BIOS 设置的属性
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSEnumeration | Where-Object
{$_.AttributeName -eq "Num Lock"}
● 更改 BIOS 设置
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSService | Invoke-CimMethod
-MethodName SetBIOSAttributes -Arguments @{AttributeName=@("Num
Lock");AttributeValue=@("1")}
● 修改非严重值
Get-CimInstance -Namespace root\dcim\sysman DCIM_NumericSensor | Where-Object {$_.DeviceID
-like "Root/MainSystemChassis/TemperatureObj:3"} | Set-CimInstance -Property
@{UpperThresholdNonCritical="10"}
● 订阅警报
$a = 0
$timespan = New-Object System.TimeSpan(0, 0, 1)
$scope = New-Object System.Management.ManagementScope("\\.\root\dcim\sysman")
$query = New-Object System.Management.WQLEventQuery("Select * from DCIM_AlertIndication")
$watcher = New-Object System.Management.ManagementEventWatcher($scope,$query)
[array]$alerts=@()
do{ $watcher.WaitForNextEvent() }
while ($a -ne 1)
● 从 WMI 获取用户同意的命令:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_ImprovementProgramConsent
● 从 WMI 设置用户同意的命令:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_ImprovementProgramConsent |
Invoke-CimMethod -MethodName Over
rideImprovementProgramConsent -Arguments @{NewValue="1"}
注: 改进计划仅适用于 DCM 10.5 x64 位版本。
6
使用 Dell Command | Monitor 10.5 本地管理 Dell 客户端系统 21