Lenovo ThinkPad R400 Manual de implantación - Página 35

Navegue en línea o descargue pdf Manual de implantación para Escritorio Lenovo ThinkPad R400. Lenovo ThinkPad R400 40 páginas. (bulgarian) setup guide
También para Lenovo ThinkPad R400: Configuración inicial (2 páginas), Manual de instalación (2 páginas), Folleto (4 páginas), Especificaciones (4 páginas), Manual de implantación (44 páginas), Folleto (4 páginas), Aviso (24 páginas), Aviso (1 páginas), Manual de implantación (36 páginas), Manual del usuario (28 páginas), (Español) Cartel de instalación (2 páginas), (Portugués) Cartel de instalación (2 páginas), (Portugués) Cartel de instalación (2 páginas), (italiano) Cartel de instalación (2 páginas), (alemán) Cartel de instalación (2 páginas), (Holandés) Cartel de instalación (2 páginas), (finés) Cartel de instalación (2 páginas), (danés) Cartel de instalación (2 páginas), (danés) Cartel de instalación (2 páginas), (Ruso) Cartel de instalación (2 páginas), (Rumano) Cartel de instalación (2 páginas), Póster de instalación (2 páginas), Póster de instalación (2 páginas), Póster de instalación (2 páginas), Póster de instalación (2 páginas), Póster de instalación (2 páginas)

Lenovo ThinkPad R400 Manual de implantación
<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