Lenovo ThinkPad T400 Manual de implantación - Página 28

Navegue en línea o descargue pdf Manual de implantación para Escritorio Lenovo ThinkPad T400. Lenovo ThinkPad T400 40 páginas. (bulgarian) setup guide
También para Lenovo ThinkPad T400: Configuración inicial (2 páginas), Manual de instalación (2 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 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 T400 Manual de implantación
WScript.Echo strRequest
WScript.Echo " SaveBiosSettings: " + strReturn

List all BIOS settings on the remote computer

Use the sample scripts in the ZIP file as templates to list all BIOS settings and values on a remote computer.
Syntax: cscript.exe ListAllRemote.vbs [Hostname]Example: cscript.exe ListAllRemote.vbs mattdev-c5
'
' List all BIOS settings
'
On Error Resume Next
Dim colItems
If WScript.Arguments.Count <> 1 Then
WScript.Echo "ListAllRemote.vbs [hostname]"
WScript.Quit
End If
strComputer = WScript.Arguments(0)
Set objWMIService = GetObject("WinMgmts:" _
&"{ImpersonationLevel=Impersonate," _
&"authenticationLevel=pktPrivacy}!\\" _
& strComputer & "\root\wmi")
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_BiosSetting")
For Each objItem in colItems
If Len(objItem.CurrentSetting) > 0 Then
Setting = ObjItem.CurrentSetting
StrItem = Left(ObjItem.CurrentSetting, InStr(ObjItem.CurrentSetting, ",")
- 1)
StrValue = Mid(ObjItem.CurrentSetting, InStr(ObjItem.CurrentSetting, ",")
+ 1, 256)
WScript.Echo StrItem + " = " + StrValue
End If
Next

Set a single BIOS setting on a remote computer

Use the sample scripts in the ZIP file as templates to set a single BIOS setting on a remote computer.
Syntax: cscript.exe SetConfigRemote.vbs [Item] [Value] [Hostname]Example: cscript.exe
SetConfigRemote.vbs WakeOnLAN Disable mattdev-c5
'
' Set specific BIOS Setting
'
On Error Resume Next
Dim colItems
If WScript.Arguments.Count <> 3 Then
20
Lenovo BIOS Setup using Windows Management Instrumentation Deployment Guide