Lenovo ThinkPad R500 Handbuch für den Einsatz - Seite 26

Blättern Sie online oder laden Sie pdf Handbuch für den Einsatz für Desktop Lenovo ThinkPad R500 herunter. Lenovo ThinkPad R500 36 Seiten. Bios windows management instrumentation interface
Auch für Lenovo ThinkPad R500: Poster einrichten (2 seiten), Ersteinrichtung Handbuch (2 seiten), Broschüre (4 seiten), Spezifikationen (4 seiten), Handbuch für den Einsatz (44 seiten), Hinweis (24 seiten), Hinweis (1 seiten), Handbuch für den Einsatz (40 seiten), Benutzerhandbuch (28 seiten)

Lenovo ThinkPad R500 Handbuch für den Einsatz
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
Set a supervisor password on the local computer when a supervisor
password exists
Use the sample scripts in the ZIP file as templates to set a supervisor password on
the local computer when a supervisor password exists.
Note: You cannot set a supervisor password if one does not already exist.
Syntax: cscript.exe SetSupervisorPassword.vbs [Old Password] [New Password]
[encoding]
Example: cscript.exe SetSupervisorPassword.vbs oldpass newpass ascii,us
'
' Update Admnistrator Password
'
On Error Resume Next
Dim colItems
If WScript.Arguments.Count <> 3 Then
[encoding]" WScript.Quit
End If
strRequest = "pap," + WScript.Arguments(0) + "," + WScript.Arguments(1) + "," +
strComputer = "LOCALHOST"
Set objWMIService = GetObject("WinMgmts:" _
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_SetBiosPassword")
strReturn = "error"
For Each objItem in colItems
Next
WScript.Echo " SetBiosPassword: "+ strReturn
Set a supervisor password on a remote computer when a supervisor
password exists
Use the sample scripts in the ZIP file as templates to set the supervisor password
on a remote computer when a supervisor password exists.
Note: You cannot set a supervisor password if one does not already exist.
Syntax: cscript.exe SetSupervisorPasswordRemote.vbs [Old Password]
[New Password] [encoding] [Hostname]
18
Lenovo BIOS Windows Management Instrumentation Interface Deployment Guide
WScript.Quit
ObjItem.SaveBiosSettings WScript.Arguments(2) + ";", strReturn
WScript.Echo "SetSupervisorPassword.vbs [old Password] [new Password]
WScript.Arguments(2) + ";"
&"{ImpersonationLevel=Impersonate}!\\" & strComputer & "\root\wmi")
ObjItem.SetBiosPassword strRequest, strReturn
' Change as needed.