Lenovo ThinkPad T400 배포 매뉴얼 - 페이지 28

{카테고리_이름} Lenovo ThinkPad T400에 대한 배포 매뉴얼을 온라인으로 검색하거나 PDF를 다운로드하세요. Lenovo ThinkPad T400 40 페이지. (bulgarian) setup guide
Lenovo ThinkPad T400에 대해서도 마찬가지입니다: 초기 설정 (2 페이지), 설정 매뉴얼 (2 페이지), 사양 (4 페이지), 배포 매뉴얼 (44 페이지), 브로셔 (4 페이지), 공지 사항 (24 페이지), 공지 사항 (1 페이지), 사용자 설명서 (28 페이지), (스페인어) 설치 포스터 (2 페이지), (포르투갈어) 설치 포스터 (2 페이지), (포르투갈어) 설치 포스터 (2 페이지), (이탈리아어) 설치 포스터 (2 페이지), (독일어) 설치 포스터 (2 페이지), (네덜란드어) 설치 포스터 (2 페이지), (핀란드어) 설치 포스터 (2 페이지), (덴마크어) 설치 포스터 (2 페이지), (덴마크어) 설치 포스터 (2 페이지), (러시아어) 설치 포스터 (2 페이지), (루마니아어) 설치 포스터 (2 페이지), 설정 포스터 (2 페이지), 설정 포스터 (2 페이지), 설정 포스터 (2 페이지), 설정 포스터 (2 페이지), 설정 포스터 (2 페이지)

Lenovo ThinkPad T400 배포 매뉴얼
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