Lenovo ThinkPad R400 Dağıtım Kılavuzu - Sayfa 33

Masaüstü Lenovo ThinkPad R400 için çevrimiçi göz atın veya pdf Dağıtım Kılavuzu indirin. Lenovo ThinkPad R400 40 sayfaları. (bulgarian) setup guide
Ayrıca Lenovo ThinkPad R400 için: İlk Kurulum (2 sayfalar), Kurulum Kılavuzu (2 sayfalar), Broşür (4 sayfalar), Teknik Özellikler (4 sayfalar), Dağıtım Kılavuzu (44 sayfalar), Broşür (4 sayfalar), Uyarı (24 sayfalar), Uyarı (1 sayfalar), Dağıtım Kılavuzu (36 sayfalar), Kullanıcı Kılavuzu (28 sayfalar), (İspanyolca) Kurulum Posteri (2 sayfalar), (Portekizce) Kurulum Posteri (2 sayfalar), (Portekizce) Kurulum Posteri (2 sayfalar), (İtalyanca) Kurulum Posteri (2 sayfalar), (Almanca) Kurulum Posteri (2 sayfalar), (Felemenkçe) Kurulum Posteri (2 sayfalar), (Fince) Kurulum Posteri (2 sayfalar), (Danca) Kurulum Posteri (2 sayfalar), (Danca) Kurulum Posteri (2 sayfalar), (Rusça) Kurulum Posteri (2 sayfalar), (Romence) Kurulum Posteri (2 sayfalar), Kurulum Posteri (2 sayfalar), Kurulum Posteri (2 sayfalar), Kurulum Posteri (2 sayfalar), Kurulum Posteri (2 sayfalar), Kurulum Posteri (2 sayfalar)

Lenovo ThinkPad R400 Dağıtım Kılavuzu
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
© Copyright Lenovo 2008, 2012
25