Lenovo ThinkPad R400 Handbuch für den Einsatz - Seite 35

Blättern Sie online oder laden Sie pdf Handbuch für den Einsatz für Desktop Lenovo ThinkPad R400 herunter. Lenovo ThinkPad R400 40 Seiten. (bulgarian) setup guide
Auch für Lenovo ThinkPad R400: Erstmalige Einrichtung (2 seiten), Setup-Handbuch (2 seiten), Broschüre (4 seiten), Spezifikationen (4 seiten), Handbuch für den Einsatz (44 seiten), Broschüre (4 seiten), Hinweis (24 seiten), Hinweis (1 seiten), Handbuch für den Einsatz (36 seiten), Benutzerhandbuch (28 seiten), (Spanisch) Setup-Poster (2 seiten), (Portugiesisch) Setup-Poster (2 seiten), (Portugiesisch) Setup-Poster (2 seiten), (Italienisch) Setup-Poster (2 seiten), (Deutsch) Setup-Poster (2 seiten), (Niederländisch) Setup-Poster (2 seiten), (Finnisch) Setup-Poster (2 seiten), (Dänisch) Setup-Poster (2 seiten), (Dänisch) Setup-Poster (2 seiten), (Russisch) Setup-Poster (2 seiten), (Rumänisch) Setup-Poster (2 seiten), Poster einrichten (2 seiten), Poster einrichten (2 seiten), Poster einrichten (2 seiten), Poster einrichten (2 seiten), Poster einrichten (2 seiten)

Lenovo ThinkPad R400 Handbuch für den Einsatz
<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
: 2
__CLASS
: __PARAMETERS
__SUPERCLASS
:
__DYNASTY
: __PARAMETERS
__RELPATH
:
__PROPERTY_COUNT : 1
__DERIVATION
: {}
__SERVER
:
__NAMESPACE
:
__PATH
:
return
: Success
PS C:\> (gwmi -class Lenovo_SaveBiosSettings -namespace root\wmi).
SaveBiosSettings
MemberType
: Method
OverloadDefinitions : {System.Management.ManagementBaseObject
SaveBiosSettings(System.String parameter)}
TypeNameOfValue : System.Management.Automation.PSMethod
Value
: System.Management.ManagementBaseObject
SaveBiosSettings(System.String parameter)
Name
: SaveBiosSettings
27
Appendix B. Sample PowerShell scripts for remote BIOS management