Users Guide
Table Of Contents
- Dell Command | Monitor バージョン10.5 ユーザーズガイド
- 目次
- Dell Command | Monitor 10.5の概要
- Windows SMM Security Mitigations Table(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へのお問い合わせ
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"}
6
Dell Command | Monitor 10.5 をローカルで使用した Dell クライアント システムの管理 21