Lenovo ThinkPad R400 배포 매뉴얼 - 페이지 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