1

你们在一个 VBScript 上帮助我做得很好,所以我将向你抛出另一个。也许你可以帮我消除皱纹。

我使用此脚本的目的是重命名 PC。计算机名称是提示文本(我提供的,比如位置代码)、连字符和从 WMIC 调用的计算机序列号的最后 10 位数字的组合。即 1275-XXXXXXXXXX

我的问题如下:

  1. 如果我的代码超过 10 个字符,就会出错。我想解决这个问题。我确信这只是我编码的方式,与从 WMIC 中提取无关。
  2. 如果从 WMIC 中提取序列号时出错,比如说因为没有价值,我想被提示在它的位置输入一些东西。然后在最后它将使用 Input1(位置代码)和 Input2(如果 SN 拉取失败,我提供的内容),在中间打一个连字符,然后应用它。
  3. 如果确实失败,我的错误将不起作用。我不知道为什么。

我找到了很多不同的解决方案来重命名 PC,无论是我输入的内容还是专门用于提取 SN,但不适用于我的具体情况。一如既往,我们将不胜感激任何帮助。:)

这是我的代码:

'Rename computer by serial # v1.0 November 2009
dim Bios, BiosSerial, objFSO, objTextFile
'Const ForReading = 1, ForWriting = 2, ForAppending = 8

'get PropertyID
strInput = UserInput( "Enter the BHMS Property ID:" )

Function UserInput( myPrompt )
' This function prompts the user for some input.
' When the script runs in CSCRIPT.EXE, StdIn is used,
' otherwise the VBScript InputBox( ) function is used.
' myPrompt is the the text used to prompt the user for input.
' The function returns the input typed either on StdIn or in InputBox( ).
' Written by Rob van der Woude
' http://www.robvanderwoude.com
' Check if the script runs in CSCRIPT.EXE
If UCase( Right( WScript.FullName, 12 ) ) = "\CSCRIPT.EXE" Then
    ' If so, use StdIn and StdOut
    WScript.StdOut.Write myPrompt & " "
    UserInput = WScript.StdIn.ReadLine
Else
    ' If not, use InputBox( )
    UserInput = InputBox( myPrompt )
End If
End Function

'Obtain Serial Number.
for each Bios in GetObject("winmgmts:").InstancesOf ("win32_bios")
BiosSerial = Bios.SerialNumber
exit for
next

strNewSN = BiosSerial

' If the SN is longer than 10 characters, truncate to the last 10.
If Len(strNewSN) < 9 Then
    strNewSN = Right(BiosSerial, 10)
    strNewPCName = strInput+"-"+strNewSN
End If

Set WshNetwork = WScript.CreateObject("WScript.Network")

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colComputers = objWMIService.ExecQuery _
("Select * from Win32_ComputerSystem")

For Each objComputer in colComputers
err = objComputer.Rename(strNewPCName)

if err <> 0 then
wscript.echo "There was an error renaming the PC. Please restart and try again, or rename it manually."
else
wscript.echo "PC successfully renamed: " & strNewPCName
end if

Next

2013 年 5 月 29 日编辑:我根据您的建议进行了一些更改,并且在第 36 行字符 1“预期语句”代码 800A0400 上出现错误。对我来说看起来不错,所以我错过了什么?这是我的代码的新粘贴,第 36 行注释。

dim Bios, BiosSerial, objFSO, objTextFile
'Const ForReading = 1, ForWriting = 2, ForAppending = 8

' Prompt for PropertyID
strInput = UserInput( "Enter the BHMS Property ID:" )

Function UserInput( myPrompt )
    ' Check if the script runs in CSCRIPT.EXE
    If UCase( Right( WScript.FullName, 12 ) ) = "\CSCRIPT.EXE" Then
        ' If so, use StdIn and StdOut
        WScript.StdOut.Write myPrompt & " "
        UserInput = WScript.StdIn.ReadLine
    Else
        ' If not, use InputBox( )
        UserInput = InputBox( myPrompt )
    End If
End Function

' Obtain Serial Number.
for each Bios in GetObject("winmgmts:").InstancesOf ("win32_bios")
BiosSerial = Bios.SerialNumber
exit for
next

strNewSN = BiosSerial

If IsEmpty(BiosSerial) Then
  strNewSN = UserInput("There is no serial number listed in the BIOS. Provide an alternative: ")
Else
  strNewSN = BiosSerial
End If

' If the SN is longer than 10 characters, truncate to the last 10.
If Len(strNewSN) > 10 Then strNewSN = Right(BiosSerial, 10)
strNewPCName = strInput & "-" & strNewSN
End If                                                           'LINE36'

Set WshNetwork = WScript.CreateObject("WScript.Network")

strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")

Set colComputers = objWMIService.ExecQuery _
("Select * from Win32_ComputerSystem")

For Each objComputer in colComputers
err = objComputer.Rename(strNewPCName)

On Error <> 0 Then
wscript.echo "There was an error renaming the PC. Please restart and try again, or rename it manually."
Else
wscript.echo "PC successfully renamed: " & strNewPCName
end if

    Next
4

1 回答 1

1

如果我的代码超过 10 个字符,就会出错。我想解决这个问题。我确信这只是我编码的方式,与从 WMIC 中提取无关。

' If the SN is longer than 10 characters, truncate to the last 10.
If Len(strNewSN) < 9 Then
  strNewSN = Right(BiosSerial, 10)
  strNewPCName = strInput+"-"+strNewSN
End If

您的评论说,如果序列号长于序列号,您希望使用序列号的最后 10 个字符,但仅当序列号短于9个字符时,您的代码才使用最后 10 个字符。将其更改为

If Len(strNewSN) > 10 Then strNewSN = Right(BiosSerial, 10)
strNewPCName = strInput & "-" & strNewSN

如果从 WMIC 中提取序列号时出错,比如说因为没有价值,我想被提示在它的位置输入一些东西。然后在最后它将使用 Input1(位置代码)和 Input2(如果 SN 拉取失败,我提供的内容),在中间打一个连字符,然后应用它。

您可以IsEmpty()用来检查BiosSerial变量是否有值:

If IsEmpty(BiosSerial) Then
  strNewSN = UserInput("Enter fake serial number:")
Else
  strNewSN = BiosSerial
End If

如果确实失败,我的错误将不起作用。我不知道为什么。

定义“不工作”。你得到什么结果,它与你期望的结果有什么不同?

顺便说一句,您不应该将err其用作变量的名称。Err是 VBScript 在处理终止错误的上下文中提供的内在对象。


编辑:End If在第 36 行有一个虚假的:

If Len(strNewSN) > 10 Then strNewSN = Right(BiosSerial, 10)
strNewPCName = strInput & "-" & strNewSN
End If

删除该行,错误将消失。

在 VBSCript 中,If语句可以有两种形式:

  • 关闭End If

    If condition Then
      instruction
    End If
    

    使用此表单时,instruction 不得Then与关键字在同一行。

  • 不关闭End If

    If condition Then instruction
    

    使用这种形式时,instruction 必须Then与关键字在同一行,并且后面不能End If.

在代码的第 34 行中,如果序列号长于 10 个字符,则将其截断为 10 个字符,然后无论是否必须截断序列号,都执行下一行(该行必须无条件执行,所以我删除了它从Then分支):

If Len(strNewSN) > 10 Then strNewSN = Right(BiosSerial, 10)
strNewPCName = strInput & "-" & strNewSN

这相当于:

If Len(strNewSN) > 10 Then
  strNewSN = Right(BiosSerial, 10)
End If
strNewPCName = strInput & "-" & strNewSN
于 2013-05-24T20:29:11.120 回答