Lenovo ThinkPad R400 Manuel de déploiement - Page 28

Parcourez en ligne ou téléchargez le pdf Manuel de déploiement pour {nom_de_la_catégorie} Lenovo ThinkPad R400. Lenovo ThinkPad R400 40 pages. (bulgarian) setup guide
Également pour Lenovo ThinkPad R400 : Configuration initiale (2 pages), Manuel de configuration (2 pages), Brochure (4 pages), Spécifications (4 pages), Manuel de déploiement (44 pages), Brochure (4 pages), Avis (24 pages), Avis (1 pages), Manuel de déploiement (36 pages), Manuel de l'utilisateur (28 pages), (espagnol) Affiche d'installation (2 pages), (portugais) Affiche d'installation (2 pages), (portugais) Affiche d'installation (2 pages), (Italien) Affiche d'installation (2 pages), (allemand) Setup Poster (2 pages), (néerlandais) Setup Poster (2 pages), (finnois) Affiche d'installation (2 pages), Affiche d'installation (danoise) (2 pages), Affiche d'installation (danoise) (2 pages), (russe) Setup Poster (2 pages), (roumain) Affiche d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages)

Lenovo ThinkPad R400 Manuel de déploiement
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.
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
WScript.Echo "ListAllRemote.vbs [hostname]"
WScript.Quit
End If
strComputer = WScript.Arguments(0)
Set objWMIService = GetObject("WinMgmts:" _
&"{ImpersonationLevel=Impersonate," _
&"authenticationLevel=pktPrivacy}!\\" _
& strComputer & "\root\wmi")
Set colItems = objWMIService.ExecQuery("Select * from Lenovo_BiosSetting")
For Each objItem in colItems
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
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
20
Lenovo BIOS Setup using Windows Management Instrumentation Deployment Guide