- ページ 31

デスクトップ Lenovo ThinkPad R400のPDF 配備マニュアルをオンラインで閲覧またはダウンロードできます。Lenovo ThinkPad R400 36 ページ。 (bulgarian) setup guide
Lenovo ThinkPad R400 にも: 初期設定 (2 ページ), セットアップマニュアル (2 ページ), パンフレット (4 ページ), 仕様 (4 ページ), 配備マニュアル (44 ページ), パンフレット (4 ページ), お知らせ (24 ページ), お知らせ (1 ページ), 配備マニュアル (40 ページ), ユーザーマニュアル (28 ページ), (スペイン語)セットアップ・ポスター (2 ページ), (ポルトガル語)セットアップ・ポスター (2 ページ), (ポルトガル語)セットアップ・ポスター (2 ページ), (イタリア語)セットアップポスター (2 ページ), (ドイツ語)セットアップ・ポスター (2 ページ), (オランダ語)セットアップポスター (2 ページ), (フィンランド語)セットアップポスター (2 ページ), (デンマーク)セットアップ・ポスター (2 ページ), (デンマーク)セットアップ・ポスター (2 ページ), (ロシア語)セットアップ・ポスター (2 ページ), (ルーマニア語)セットアップポスター (2 ページ), セットアップポスター (2 ページ), セットアップポスター (2 ページ), セットアップポスター (2 ページ), セットアップポスター (2 ページ), セットアップポスター (2 ページ)

Lenovo ThinkPad R400 配備マニュアル
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi | Where-Object
{$_.CurrentSetting.split(",",[StringSplitOptions]::RemoveEmptyEntries) -eq
"AlwaysOnUSB"}
| Format-List CurrentSetting
Remote computer:
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc -credential
(get-credential) | Where-Object {$_.CurrentSetting.split(",",[StringSplitOptions]
::RemoveEmptyEntries) -eq "AlwaysOnUSB"} | Format-List CurrentSetting
<Sample output>
PS C:\> gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc
-credential (get-credential) | Where-Object {$_.CurrentSetting.split(",",
[StringSplitOptions]::RemoveEmptyEntries) -eq "AlwaysOnUSB"}
| Format-List CurrentSetting
cmdlet get-credential at command pipeline position 1
Supply values for the following parameters:
Credential
CurrentSetting : AlwaysOnUSB,Disable

Setting a BIOS setting

Use the following script as a template to set the value of a setting. Replace
"WakeOnLAN,Disable" with the item and value of your choice.
Note: The setting string is case sensitive and should be in the format "<item,
<value>".
<Command>
(gwmi -class Lenovo_SetBiosSetting
-namespace root\wmi).SetBiosSetting ("WakeOnLAN,Disable")
__GENUS
__CLASS
__SUPERCLASS
__DYNASTY
__RELPATH
__PROPERTY_COUNT
__DERIVATION
__SERVER
__NAMESPACE
__PATH
return
PS C:\> (gwmi -class Lenovo_SaveBiosSettings -namespace root\wmi).
SaveBiosSettings
MemberType
OverloadDefinitions : {System.Management.ManagementBaseObject
TypeNameOfValue
Value
Name
IsInstance
PS C:\>
: 2
: __PARAMETERS
:
: __PARAMETERS
:
: 1
: {}
:
:
:
: Success
: Method
SaveBiosSettings(System.String parameter)}
: System.Management.Automation.PSMethod
: System.Management.ManagementBaseObject
SaveBiosSettings(System.String parameter)
: SaveBiosSettings
: True
Appendix B. Sample PowerShell scripts for remote BIOS management
23