Users Guide
Table Of Contents
- Dell Command | Monitor 版本 10.4 使用者指南
- Dell Command | Monitor 10.4 簡介
- Windows SMM 安全防護功能表格 (WSMT) 規格
- Dell Command | Monitor 10.4 的標準及通訊協定
- 使用 Dell Command | Monitor 10.4 的使用案例情境
- 使用 Dell Command | Monitor 10.4
- 使用 Dell Command | Monitor 10.4 在本機管理 Dell 用戶端系統
- 使用 Dell Command | Monitor 10.4 遠端管理 Dell 用戶端系統
- Dell Command | Monitor 10.4 常見問題
- 使用 Dell Command | Monitor 10.4 的疑難排解步驟
- 其他您可能需要的文件
- 聯絡 Dell
● Get-CimInstance -Namespace root\dcim\sysman DCIM_SmartAttributeInfo -Filter "AttributeID like '<Attribute ID Value>'" | Invoke-
CimMethod -MethodName "SetCustomThreshold" -Arguments @{CustomThresholdValue="<custom threshold value to be set>"}
DCIM_ThermalInformation
DCIM_ThermalInformation 管理散熱組態設定,例如熱模式、AAC 模式和風扇故障模式。
● 要查詢裝置的散熱資料,請運行以下指令:
Get-CimInstance -Namespace root/DCIM/SYSMAN -ClassName DCIM_ThermalInformation
● 要設定熱模式的值,請運行以下指令:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_ThermalInformation |Where-
Object {$_.AttributeName -eq "Thermal Mode"} | Invoke-CimMethod -MethodName
ChangeThermalMode -Arguments @{AttributeName=@("Thermal Mode");AttributeValue=@("2")}
更改系統設定
在 Dell Command | Monitor 中,使用以下方法來更改系統設定和本機或遠端系統的狀態:
● SetBIOSAttributes — 變更 BIOS 設定
備註: 適用於 Linux 的 Dell Command | Monitor 目前僅支援 SetBIOSAttributes 方法。
● ChangeBootOrder — 變更開機的組態
● RequestStateChange — 關閉及重新啟動系統
● ManageTime — 顯示系統時間
在適用於 Windows 的 Dell Command | Monitor 中,您可以使用 winrm、VB 指令碼、PowerShell 指令、wmic 和 WMI wbemtest 以運行
這些方法。
使用 PowerShell 指令在運行 Windows 的系統上設定 BIOS 屬性
使用 SetBIOSAttributes 方式來設定 BIOS 屬性:下面說明使用啟用可信任平台模組 (Trusted Platform Module, TPM) 的程序為範例。
備註: 按照下列程序啟用 TPM 之前,請確定 TPM 選項已在 BIOS 中清除。
備註: 使用具有管理員權限的 PowerShell。
啟用 TPM,
1. 設定系統的 BIOS 密碼。若尚未設定,使用下列的 PowerShell 指令:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSService | Invoke-CimMethod -
MethodName SetBIOSAttributes -Arguments
@{AttributeName=@("AdminPwd");AttributeValue=@("<Admin password>")}
2. 使用以下指令確保 TPM 安全:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSService | Invoke-CimMethod -
MethodName SetBIOSAttributes -Arguments @{AttributeName=@("Trusted Platform Module
");AttributeValue=@("1");AuthorizationToken="<Admin password>"}
3. 重新啟動系統。
4. 使用以下指令啟用 TPM:
Get-CimInstance -Namespace root\dcim\sysman -ClassName DCIM_BIOSService | Invoke-CimMethod -
MethodName SetBIOSAttributes -Arguments @{AttributeName=@(" Trusted Platform Module
Activation");AttributeValue=@("2");AuthorizationToken="<Admin password>"}
5. 重新啟動系統。
16 使用 Dell Command | Monitor 10.4