标题: [转贴] 获取系统信息的几个VBScript脚本 [打印本页]
作者: find 时间: 2012-3-25 14:09 标题: 获取系统信息的几个VBScript脚本
用WMI对象列出系统所有进程:
----Instance.vbs----
- Dim WMI,objs
- Set WMI = GetObject("WinMgmts:")
- Set objs = WMI.InstancesOf("Win32_Process")
- For Each obj In objs
- Enum1 = Enum1 + obj.Description + Chr(13) + Chr(10)
- Next
- msgbox Enum1
复制代码
获得物理内存的容量:
-----physicalMemory.vbs-----
- strComputer = "."
-
- Set wbemServices = GetObject("winmgmts:\\" & strComputer)
- Set wbemObjectSet = wbemServices.InstancesOf("Win32_LogicalMemoryConfiguration")
-
- For Each wbemObject In wbemObjectSet
- WScript.Echo "物理内存 (MB): " & CInt(wbemObject.TotalPhysicalMemory/1024)
- Next
复制代码
取得系统所有服务及运行状态
----service.vbs----
- Set ServiceSet = GetObject("winmgmts:").InstancesOf("Win32_Service")
- Dim s,infor
- infor=""
- for each s in ServiceSet
- infor=infor+s.Description+" ==> "+s.State+chr(13)+chr(10)
- next
- msgbox infor
复制代码
CPU的序列号:
---CPUID.vbs---
- Dim cpuInfo
- cpuInfo = ""
- set moc = GetObject("Winmgmts:").InstancesOf("Win32_Processor")
- for each mo in moc
- cpuInfo = CStr(mo.ProcessorId)
- msgbox "CPU SerialNumber is : " & cpuInfo
- next
复制代码
硬盘型号:
---HDID.vbs---
- Dim HDid,moc
- set moc =GetObject("Winmgmts:").InstancesOf("Win32_DiskDrive")
- for each mo in moc
- HDid = mo.Model
- msgbox "硬盘型号为:" & HDid
- next
复制代码
网卡MAC物理地址:
---MACAddress.vbs---
- Dim mc
- set mc=GetObject("Winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration")
- for each mo in mc
- if mo.IPEnabled=true then
- msgbox "网卡MAC地址是: " & mo.MacAddress
- exit for
- end if
- next
复制代码
测试你的显卡:
- On Error Resume Next
- Dim ye
- Dim yexj00
- set yexj00=GetObject("winmgmts:{impersonationLevel=impersonate}").InstancesOf("Win32_VideoController")
- for each ye in yexj00
- msgbox "型 号: " & ye.VideoProcessor & vbCrLf & "厂 商: " & ye.AdapterCompatibility & vbCrLf & "名 称: " & ye.Name & vbCrLf & "状 态: " & ye.Status & vbCrLf & "显 存: " & (ye.AdapterRAM\1024000) & "MB" & vbCrLf & "驱 动(dll): " & ye.InstalledDisplayDrivers & vbCrLf & "驱 动(inf): " & ye.infFilename & vbCrLf & "版 本: " & ye.DriverVersion
- next
复制代码
http://xiaosu.blog.51cto.com/2914416/602516
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |