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を使用したトラブルシューティング手順
- サードパーティライセンス
- その他の必要マニュアル
- デルへのお問い合わせ
起動順序の変更
起動順序を変更するには、次の手順に従います。
1. 次のコマンドを使用して、起動順序タイプ(レガシーまたは UEFI)をチェックします。
● WMIC コマンド:wmic /namespace:\\root\dcim\sysman path dcim_BootConfigSetting get
ElementName/format:list.
● PowerShell コマンド:gwmi -namespace root\dcim\sysman -class dcim_BootConfigSetting -Property
ElementName.
2. 次のコマンドを使用して、現在の起動順序タイプ(レガシーまたは UEFI)をチェックします。
● WMIC コマンド:wmic /namespace:\\root\dcim\sysman path dcim_ElementSettingData.IsCurrent=1
get SettingData /format:list .
● PowerShell コマンド:gwmi -namespace root\dcim\sysman -class dcim_elementSettingData -Filter
"IsCurrent=1" -Property SettingData.
3. 起動順序を変更するには、次のコマンドを使用します。
● WMIC コマンド:wmic /namespace:\\root\dcim\sysman path dcim_bootconfigsetting call
ChangeBootOrder /?:full .
● PowerShell コマンド:(gwmi -namespace root\dcim\sysman -class
dcim_bootconfigsetting).getmethodparameters("ChangeBootOrder") .
メモ: dcim_BootConfigSetting インスタンスは、変更する起動設定(タイプ 1(レガシー)またはタイプ 2(UEFI)
のいずれか)を表しています。
● 引数は次のとおりです。
○ Authorization Token - 管理者または起動パスワードです。
○ Source - dcim_OrderedComponent.PartComponent プロパティから取得した起動順序のリストです。新しい起動
順序は、ソースアレイの起動デバイスの順序によって決まります。
4. タイプ 1 起動リストの起動順序の PowerShell を使用した変更
a. タイプ 1 起動リストの現在の起動順序を取得するには、次のコマンドを実行します。$boLegacy = gwmi -namespace
root\dcim\sysman -class dcim_orderedcomponent | where {$_.partcomponent -match
'BootListType-1'} | select -expand partcomponent.
b. PowerShell 変数を定義して、$newboLegacy. を設定する起動順序を指定します。新しい起動順序をこれに割り当てます。
たとえば、次のように指定すると、現在の起動順序タイプが保持されます。
c. $newboLegacy = $boLegacy
d. タイプ 1 起動リストに対応する dcim_bootconfigsetting インスタンスを取得するには、次のコマンドを実行します。
$bcsLegacy = Gwmi -Namespace root\dcim\sysman -ClassName dcim_bootconfigsetting | where
{$_.ElementName -eq 'Next Boot Configuration Setting : Boot List Type 1'}.
e. 次のコマンドを実行して、メソッドを起動します。$ bcsLegacy.changebootorder($newboLegacy,
$AuthorizationToken).BIOS パスワードを渡すには $AuthorizationToken 変数を使用します。
5. タイプ 2 起動リストの起動順序の PowerShell を使用した変更
a. タイプ 2 起動リストの現在の起動順序を取得するには、次のコマンドを実行します。$boUefi = gwmi -namespace
root\dcim\sysman -class dcim_orderedcomponent | where {$_.partcomponent -match
'BootListType-2'} | select -expand partcomponent.
b. PowerShell 変数を定義して、$newboUefi を設定する起動順序を指定します。新しい起動順序をこれに割り当てます。たと
えば、次のように指定すると、現在の起動順序タイプが保持されます。
c. タイプ 2 起動リストに対応する dcim_bootconfigsetting インスタンスを取得するには、次のコマンドを実行します。
$bcsUefi = Gwmi -Namespace root\dcim\sysman -ClassName dcim_bootconfigsetting | where
{$_.ElementName -eq 'Next Boot Configuration Setting : Boot List Type 2'}.
d. 次のコマンドを実行して、メソッドを起動します。$ bcsUefi.changebootorder($newboUefi,
$AuthorizationToken).BIOS パスワードを渡すには $AuthorizationToken 変数を使用します。
リモートから Windows システムのシャットダウンと再起動
RequestStateChange メソッドを使用することで、Windows システムのリモートからのシャットダウンと再起動が行えます。
Dell Command | Monitor 10.2.1 の使用方法 19