[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[问题求助] [已解决]VBS如何获取本机计算机名?

我想在此脚本中添加一项可以获取本机计算机名,烦请各位老师帮忙,非常感谢!
  1. dim objFileSys
  2. dim objFile
  3. i = 1
  4. set objFileSys = wscript.Createobject("Scripting.FileSystemObject")
  5. set objFile = objFileSys.createTextFile("WKS_Info.txt",True)
  6. strComputer ="."
  7. Set oWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
  8. Set colComputerSystemItems = oWMIService.ExecQuery ("SELECT * FROM Win32_ComputerSystem",,48)
  9. Set colComputerSystemProductItems = oWMIService.ExecQuery ("SELECT * FROM Win32_ComputerSystemProduct",,48)
  10. Set colSMBIOSItems = oWMIService.ExecQuery( "Select * from Win32_BIOS where PrimaryBIOS = true", , 48 )
  11. Set colNetworkAdapterItems = oWMIService.ExecQuery("Select * from Win32_NetworkAdapterConfiguration where IPEnabled = 1",,48)
  12. ' On Error Resume Next
  13. For Each oComputerSystem In colComputerSystemItems
  14. objFile.Writeline("Made by: " & oComputerSystem.Manufacturer)
  15. objFile.Writeline("Model is: " & oComputerSystem.Model)
  16. objFile.Writeline()
  17. Next
  18. For Each oComputerSystemProduct In colComputerSystemProductItems
  19. objFile.writeline("UUID is: " & oComputerSystemProduct.UUID)
  20. objFile.Writeline()
  21. Next
  22. For Each oSMBIOS In colSMBIOSItems
  23. objFile.Writeline("BIOS version is: " & oSMBIOS.SMBIOSBIOSVersion)
  24. objFile.Writeline("Serial Number is: " & oSMBIOS.SerialNumber)
  25. objFile.Writeline()
  26. Next
  27.         objFile.Writeline("hostname is: " & hostname)
  28.    
  29. Next
  30. For Each NetworkAdapter in colNetworkAdapterItems  
  31.      
  32.     If i < 3 Then
  33.   
  34. objFile.Writeline("NIC " & i & " name is: " & NetworkAdapter.Description)
  35. objFile.writeline("MAC address is: " & NetworkAdapter.MACAddress)
  36. objFile.Writeline()
  37. i = i + 1
  38. End If
  39.   
  40. Next  
  41. wscript.echo "Workstation info dumping is finished!"
复制代码
1

评分人数

    • broly: 感谢给帖子标题标注[已解决]字样PB + 2

dim objFileSys
dim objFile
i = 1

set objFileSys = wscript.Createobject("Scripting.FileSystemObject")
set objFile = objFileSys.createTextFile("WKS_Info.txt",True)



strComputer ="."

Set oWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colComputerSystemItems = oWMIService.ExecQuery ("SELECT * FROM Win32_ComputerSystem",,48)
Set colComputerSystemProductItems = oWMIService.ExecQuery ("SELECT * FROM Win32_ComputerSystemProduct",,48)
Set colSMBIOSItems = oWMIService.ExecQuery( "Select * from Win32_BIOS where PrimaryBIOS = true", , 48 )
Set colNetworkAdapterItems = oWMIService.ExecQuery("Select * from Win32_NetworkAdapterConfiguration where IPEnabled = 1",,48)
set hostname = hostname

' On Error Resume Next
For Each oComputerSystem In colComputerSystemItems

        objFile.Writeline("Name is: " & oComputerSystem.Name)
        objFile.Writeline("Made by: " & oComputerSystem.Manufacturer)
        objFile.Writeline("Model is: " & oComputerSystem.Model)
        objFile.Writeline()
        
Next

For Each oComputerSystemProduct In colComputerSystemProductItems
        
        objFile.writeline("UUID is: " & oComputerSystemProduct.UUID)
        objFile.Writeline()
Next
        
For Each oSMBIOS In colSMBIOSItems
        
        objFile.Writeline("BIOS version is: " & oSMBIOS.SMBIOSBIOSVersion)
        objFile.Writeline("Serial Number is: " & oSMBIOS.SerialNumber)
        objFile.Writeline()
Next
        objFile.Writeline("hostname is: " & hostname)
   
Next

For Each NetworkAdapter in colNetworkAdapterItems  
                    
           If i < 3 Then
         
        objFile.Writeline("NIC " & i & " name is: " & NetworkAdapter.Description)
        objFile.writeline("MAC address is: " & NetworkAdapter.MACAddress)
        objFile.Writeline()

        i = i + 1
        
        End If

  
Next  

wscript.echo "Workstation info dumping is finished!"
---学无止境---

TOP

strComputer = "."  
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")  
Set colComputers = objWMIService.ExecQuery("Select * from Win32_ComputerSystem")  
For Each objComputer in colComputers  
Wscript.Echo objComputer.Name
Next

TOP

问题已经解决,,谢谢你们~~

TOP

返回列表