Lenovo ThinkPad R500 Manual de implantación - Página 23

Navegue en línea o descargue pdf Manual de implantación para Escritorio Lenovo ThinkPad R500. Lenovo ThinkPad R500 36 páginas. Bios windows management instrumentation interface
También para Lenovo ThinkPad R500: Póster de instalación (2 páginas), Manual de configuración inicial (2 páginas), Folleto (4 páginas), Especificaciones (4 páginas), Manual de implantación (44 páginas), Aviso (24 páginas), Aviso (1 páginas), Manual de implantación (40 páginas), Manual del usuario (28 páginas)

Lenovo ThinkPad R500 Manual de implantación
strReturn = "error"
For Each objItem in colItems
Next
WScript.Echo strRequest
WScript.Echo " SaveBiosSettings: " + strReturn
Set a single BIOS setting on the local computer if a supervisor
password exists
Use the sample scripts in the ZIP file as templates to set a single BIOS setting on
the local computer if a supervisor password exists.
Syntax: cscript.exe SetConfigPassword.vbs [Item] [Value]
[Password + Encoding]
Example: cscript.exe SetConfigPassword.vbs WakeOnLAN Disable pass,ascii,us
'
' Set specific BIOS Setting
'
On Error Resume Next
Dim colItems
If WScript.Arguments.Count <> 3 Then
End If
strRequest = WScript.Arguments(0) + "," + WScript.Arguments(1) + "," +
strComputer = "LOCALHOST"
Set objWMIService = GetObject("WinMgmts:" _
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_SetBiosSetting")
For Each objItem in colItems
Next
WScript.Echo strRequest
WScript.Echo " SetBiosSetting: " + strReturn
If strReturn <> "Success" Then
End If
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_SaveBiosSettings")
strReturn = "error"
For Each objItem in colItems
Next
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.
ObjItem.SaveBiosSettings ";", strReturn
WScript.Echo "SetConfigPassword.vbs [setting] [value] [password + encoding]"
WScript.Quit
WScript.Arguments(2) + ";"
&"{ImpersonationLevel=Impersonate}!\\" & strComputer & "\root\wmi")
ObjItem.SetBiosSetting strRequest, strReturn
WScript.Quit
ObjItem.SaveBiosSettings WScript.Arguments(2) + ";", strReturn
Appendix A. Sample Visual Basic scripts for configuring BIOS settings
' Change as needed.
15