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

Navegue en línea o descargue pdf Manual de implantación para Escritorio Lenovo ThinkPad R400. Lenovo ThinkPad R400 36 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 (40 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
Appendix B. Sample PowerShell scripts for remote BIOS
management
The following PowerShell scripts are examples that can be used with management
servers.

Get all current BIOS settings

Use the following script as a template to display all current BIOS settings on the
local computer.
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi | ForEach-Object
{if ($_.CurrentSetting -ne "") {Write-Host $_.CurrentSetting.replace(","," = ")}}
To obtain the current BIOS settings from a remote computer on your network,
replace test-pc with the computer name of the target computer in the following
command. You will be prompted to enter the userid and password of the
administrator-level account for the remote computer.
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc
-credential
(get-credential) | ForEach-Object {if ($_.CurrentSetting -ne "")
{Write-Host $_.CurrentSetting.replace(","," = ")}}
<Sample output>
PS C:\> gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc
-credential (get-credential) | ForEach-Object {if ($_.CurrentSetting -ne "")
{Write-Host $_.CurrentSetting.replace(","," = ")}}
cmdlet get-credential at command pipeline position
1 Supply values for the following parameters:
Credential
WakeOnLAN = Enable
FlashOverLAN = Enable
EthernetLANOptionROM = Enable
HarddriveDMA = Enable
WirelessLANandWiMAXRadios = On
SerialPort = Disable
SerialPortIO = 3F8
SerialPortIRQ = 4
ParallelPort = Enable
ParallelPortMode = BiDirectional
ParallelPortIO = 3BC
ParallelPortIRQ = 7
ParallelPortDMA = 0
PCIINTA = 11
PCIINTB = 11
PCIINTC = 11
PCIINTD = 11
PCIINTE = 11
PCIINTF = 11
PCIINTG = 11
PCIINTH = 11
USBBIOSSupport = Enable
AlwaysOnUSB = Disable
TrackPoint = Automatic
TouchPad = Automatic
FnKeyLock = Disable
ThinkPadNumLock = Independent
© Copyright Lenovo 2008
21