Users Guide
Table Of Contents
- Dell Command | Monitor バージョン10.2.1 ユーザーズガイド
- Dell Command | Monitor 10.2.1の概要
- Windows SMM Security Mitigations Table(WSMT)準拠
- Dell Command | Monitor 10.2.1の標準およびプロトコル
- Dell Command | Monitor 10.2.1を使用したユース ケース シナリオ
- Dell Command | Monitor 10.2.1の使用方法
- Dell Command | Monitor 10.2.1を使用したDellクライアント システムのローカルでの管理
- Dell Command | Monitor 10.2.1を使用したDellクライアント システムのリモートでの管理
- Dell Command | Monitor 10.2.1に関するよくある質問
- Dell Command | Monitor 10.2.1を使用したトラブルシューティング手順
- サードパーティライセンス
- その他の必要マニュアル
- デルへのお問い合わせ
Dell Command | Monitor 10.2.1 を使用した 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"}
6
Dell Command | Monitor 10.2.1 を使用した Dell クライアント システムのローカルでの管理 21