Users Guide
Table Of Contents
- Dell Command | Monitor 10.2.1 版 用户指南
- Dell Command | Monitor 10.2.1 简介
- Windows SMM 安全气候变化表 (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 的故障排除步骤
- 第三方许可证
- 您可能需要的其他说明文件
- 联系戴尔

使用 PowerShell 命令在运行 Windows 的系统中设置 BIOS 属性
您可以使用 SetBIOSAttributes 方法设置 BIOS 属性。下面以启用受信任的平台模块 (TPM) 任务为例,说明了步骤。
注: 确保清除 BIOS 中的 TPM 选项,然后再执行以下步骤来启用 TPM。
注: 使用管理员权限运行 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. 重新启动系统。
在运行 Linux 的系统中设置 BIOS 属性
您可以用以下任何方法设置 BIOS 属性:
● 使用 OMICLI
● 使用 WinRM
● 使用 WSMan
注: 确保 OMI 服务器已启动并且正在运行。
使用 OMICLI 设置 BIOS 属性
您可以使用 SetBIOSAttributes 方法设置 BIOS 属性。下面以启用受信任的平台模块 (TPM) 任务为例,说明了步骤。
注: 确保清除 BIOS 中的 TPM 选项,然后再执行以下步骤来启用 TPM。
要使用 OMICLI 命令设置 BIOS 属性,请执行以下操作:
1. 要在系统上设置 BIOS 密码(如果尚未设置),请运行
./omicli iv root/dcim/sysman { DCIM_BIOSService Name DCIM:BiosService
SystemCreationClassName DCIM_ComputerSystem SystemName <system name displayed in
DCIM_BIOSService class> CreationClassName DCIM_BIOSService } SetBIOSAttributes
{ AttributeName "AdminPwd" AttributeValue “<new Admin Password>” }
2. 要使用以下命令启用 TPM 安全保护,请运行
./omicli iv root/dcim/sysman { DCIM_BIOSService Name DCIM:BiosService
SystemCreationClassName DCIM_ComputerSystem SystemName <system name displayed in
DCIM_BIOSService class> CreationClassName DCIM_BIOSService } SetBIOSAttributes
{ AttributeName "Trusted Platform Module" AttributeValue “1” AuthorizationToken
“<password>”
3. 重新启动系统。
使用 Dell Command | Monitor 10.2.1 15