Lenovo ThinkPad R400 Manuale d'uso - Pagina 24

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
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
End If
strComputer = WScript.Arguments(0)
Set objWMIService = GetObject("WinMgmts:" _
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_BiosSetting")
For Each objItem in colItems
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
End If
strRequest = WScript.Arguments(0) + "," + WScript.Arguments(1) + ";"
strComputer = WScript.Arguments(2)
Set objWMIService = GetObject("WinMgmts:" _
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_SetBiosSetting")
16
Lenovo BIOS Windows Management Instrumentation Interface Deployment Guide
WScript.Echo "ListAllRemote.vbs [hostname]"
WScript.Quit
&"{ImpersonationLevel=Impersonate," _
&"authenticationLevel=pktPrivacy}!\\" _
& strComputer & "\root\wmi")
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
WScript.Echo "SetConfigRemote.vbs [setting] [value] [hostname]"
WScript.Quit
&"{ImpersonationLevel=Impersonate," _
&"authenticationLevel=pktPrivacy}!\\" _
& strComputer & "\root\wmi")