Users Guide

Dell Command | Monitor 10.3 をロカルで使用
した 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
6
Dell Command | Monitor 10.3 をロカルで使用した Dell クライアント システムの管理 21