Lenovo ThinkPad R500 Manuale d'uso - Pagina 23

Sfoglia online o scarica il pdf Manuale d'uso per Desktop Lenovo ThinkPad R500. Lenovo ThinkPad R500 36. Bios windows management instrumentation interface
Anche per Lenovo ThinkPad R500: Poster di impostazione (2 pagine), Manuale di configurazione iniziale (2 pagine), Opuscolo (4 pagine), Specifiche tecniche (4 pagine), Manuale d'uso (44 pagine), Avviso (24 pagine), Avviso (1 pagine), Manuale d'uso (40 pagine), Manuale d'uso (28 pagine)

Lenovo ThinkPad R500 Manuale d'uso
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