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

Blättern Sie online oder laden Sie pdf Handbuch für den Einsatz für Desktop Lenovo ThinkPad R400 herunter. Lenovo ThinkPad R400 36 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 (40 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
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