Lenovo ThinkPad R400 Manuale d'uso - Pagina 25

Sfoglia online o scarica il pdf Manuale d'uso per Desktop Lenovo ThinkPad R400. Lenovo ThinkPad R400 36. (bulgarian) setup guide
Anche per Lenovo ThinkPad R400: Impostazione iniziale (2 pagine), Manuale di configurazione (2 pagine), Opuscolo (4 pagine), Specifiche tecniche (4 pagine), Manuale d'uso (44 pagine), Opuscolo (4 pagine), Avviso (24 pagine), Avviso (1 pagine), Manuale d'uso (40 pagine), Manuale d'uso (28 pagine), (Spagnolo) Poster di allestimento (2 pagine), (Portoghese) Poster di allestimento (2 pagine), (Portoghese) Poster di allestimento (2 pagine), (Poster di allestimento (2 pagine), (Tedesco) Poster di allestimento (2 pagine), (Olandese) Poster di allestimento (2 pagine), (Finlandese) Poster di allestimento (2 pagine), (Danese) Poster di allestimento (2 pagine), (Danese) Poster di allestimento (2 pagine), (Russo) Poster di allestimento (2 pagine), (Rumeno) Poster di allestimento (2 pagine), Poster di impostazione (2 pagine), Poster di impostazione (2 pagine), Poster di impostazione (2 pagine), Poster di impostazione (2 pagine), Poster di impostazione (2 pagine)

Lenovo ThinkPad R400 Manuale d'uso
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
Set a single BIOS setting on a remote computer when a supervisor
password exists
Use the sample scripts in the ZIP file as templates to set a single BIOS setting on a
remote computer when a supervisor password exists.
Syntax: cscript.exe SetConfigPasswordRemote.vbs [Item] [Value]
[Password + Encoding] [Hostname]
Example: cscript.exe SetConfigPasswordRemote.vbs WakeOnLAN
Disable pass,ascii,us mattdev-c5
'
' Set specific BIOS Setting
'
On Error Resume Next
Dim colItems
If WScript.Arguments.Count <> 4 Then
End If
strRequest = WScript.Arguments(0) + "," + WScript.Arguments(1) + "," +
strComputer = WScript.Arguments(3)
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
ObjItem.SetBiosSetting strRequest, strReturn
WScript.Quit
ObjItem.SaveBiosSettings ";", strReturn
WScript.Echo "SetConfigPasswordRemote.vbs [setting] [value]
[password + encoding] [hostname]"
WScript.Quit
WScript.Arguments(2) + ";"
&"{ImpersonationLevel=Impersonate," _
&"authenticationLevel=pktPrivacy}!\\" _
& strComputer & "\root\wmi")
ObjItem.SetBiosSetting strRequest, strReturn
Appendix A. Sample Visual Basic scripts for configuring BIOS settings
17