一个获取计算机硬件信息和安装软件清单的脚本

2024-01-30 12:38

本文主要是介绍一个获取计算机硬件信息和安装软件清单的脚本,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

'==========================================================================
'
' Date:2009/3/19
' Name: 查询软件和硬件列表清单
' Comment: blogs.itecn.net/smileruner
' Author:Smileruner
' www.overmcse.com
' 不支持Win2000及WinNT
'
' 3/19,添加了网卡过滤。
'==========================================================================
'on error resume Nextconst HKEY_LOCAL_MACHINE = &H80000002 
const UNINSTALL_ROOT = "Software\Microsoft\Windows\CurrentVersion\Uninstall"
const REG_SZ = 1'Set wshshell=wscript.createobject("wscript.shell")
' wshshell.run ("%comspec% /c regsvr32 /s scrrun.dll"),0,true
' wshshell.run ("%comspec% /c sc config  winmgmt start= auto"),0,true
' wshshell.run ("%comspec% /c net start winmgmt"),0strComputer = Inputbox("请输入要查询的计算机名称",,"")If strComputer = "" thenWscript.Echo "未输入值或用户取消,查询退出。"Wscript.Quit
End IfSet objswbemlocator = createobject("wbemscripting.swbemlocator")
Set objswbemservices = objswbemlocator.connectserver(strComputer, "root\cimv2")
If Err.number <> 0 thenWscript.Echo "目标计算机无法连接。错误的计算机名,或目标计算机启用了防火墙,RPC服务不可用。"Err.number.clearWscript.Quit
End If'swbemservices.security_.impersonationleobjvel = 3Set fso=createobject("scripting.filesystemobject")
FileDate = Replace(date(), "/", "-")
resoultfilepath= strComputer & FileDate & ".html"
Set resultFile= fso.createtextfile(resoultfilepath,,true)HtmlWriteHead()
'Html文档开始TableHead strComputer,"硬件清单"
'Html表格开始OsWrite()        '写入操作系统信息
BoardWrite()'写入主板信息
CpuWrite()       '写入CPU信息
MemoryWrite()        '写入内存信息
HarddiskWrite()'写入硬盘信息
CdromWrite()'写入CDROM信息
VideoWrite()'写入显示卡信息
NetcardWrite()'写入网卡信息
TableEnd()'Html表格结尾
TableHead strComputer,"软件清单"'Html表格开头
Softlist()'写入软件信息
TableEnd()'Html表格结尾
HtmlWriteEnd()'Html文档结束ResultFile.close 
Wscript.Echo "查询完成!"'=========以下是函数列表==========Function OsWrite() '函数,写入操作系统信息Set colOs =objswbemservices.execquery("select * from win32_operatingsystem",,48)For Each Ositem In colOsoscaption = Ositem.captionOsVersion = oscaption & Ositem.versionWriteTable "操作系统",OsVersionNext
End Function Function BoardWrite()'函数,写入主板信息Set colBoard = objswbemservices.execquery("select * from win32_baseboard")For Each Bditem In colBoardboardname = Bditem.productWriteTable "主板",boardnameNext
End Function Function CpuWrite()'函数,写入CPU信息Set colCpu =objswbemservices.execquery("select * from win32_processor")For Each item in colCpucpuname =  (trim(item.name))WriteTable "中央处理器",cpunameNext
End Function Function MemoryWrite()'函数,写入内存信息
mtotal        = 0
num         = 0
mill         = 0Set colMemory = objswbemservices.execquery("select * from win32_physicalmemory",,48)For Each objitem In colMemorymill = objitem.capacity/1048576WriteTable "单根内存容量",mill & "M"mtotal = mtotal+millnum = num + 1NextWriteTable "总计内存",num & "条" & "一共" & mtotal & "M"
End Function Function HarddiskWrite()'函数,写入硬盘信息Set colDisk = objswbemservices.execquery("select * from win32_diskdrive", , 48)For Each objitem In colDiskdiskname= objitem.captiondisksize= fix(objitem.size/1073741824)WriteTable "硬盘",diskname & " 容量:" & disksize & "G"Next
End Function Function CdromWrite()'函数,写入CDROM信息Set colCdrom = objswbemservices.execquery("select * from win32_cdromdrive where scsitargetid=0")For Each objitem In colCdromcdname = objitem.nameWriteTable "光驱",cdnameNext
End FunctionFunction videoWrite()'函数,写入显示卡信息Set colVideo = objswbemservices.execquery("select * from win32_videocontroller", , 48)For Each objitem in colVideovideoname = (trim(objitem.caption) & (objitem.videomodedescription)) WriteTable "显示卡",videonameNext
End Function Function netcardWrite()'函数,查询网卡信息Set colNetcards = objswbemservices.execquery("select * from win32_networkadapter")For Each objNetcard in colNetcards                        If Not IsNull(objNetcard.NetConnectionID) ThenNetCardName         =  objNetcard.productnameWriteTable "网卡名称",NetCardNameIf objNetcard.NetConnectionStatus = 2 Then                         NetCardMac         =  objNetcard.macaddressWriteTable "网卡Mac",NetCardMacstrQueryIp ="select * from win32_networkadapterconfiguration" &_" where IPEnabled = true" &_" and macaddress = '" & objNetcard.macaddress & "'"Set colNetcardCfgs = objswbemservices.execquery(strQueryIp) For Each objNetcardCfg in colNetcardCfgs                For Each CfgAdrress in objNetcardCfg.IPAddressIpAdrress = CfgAdrressWriteTable "IP地址",IpAdrressNextNext        ElseNetCardMac = "网卡被禁用或未连接。"WriteTable "网卡Mac",NetCardMacIpAdrress = "网卡被禁用或未连接。"    WriteTable "IP地址",IpAdrress        End IfEnd ifNext
End Function Function softlist()'函数,写入软件信息
Set StdOut = WScript.StdOut 
Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_ 
strComputer & "\root\default:StdRegProv") strKeyPath = UNINSTALL_ROOT oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys For Each strSubKey In arrSubKeys If NotHotfix(strSubKey) Then                SoftNameAndVersion = getProgNameAndVersion(oReg,strKeyPath & "\" & strSubKey)If SoftNameAndVersion<>"0" Then WriteTable "软件",SoftNameAndVersion                End If End If
Next                 
End FunctionFunction NotHotfix(sSubKey)        If Left(sSubkey,2) = "KB" And len(sSubkey) = 8 ThenNotHotfix = 0Else NotHotfix = 1End if
End FunctionFunction getProgNameAndVersion(oReg,sKeyRoot)
Dim sKeyValuesAry, iKeyTypesAry, nCnt, sValue, sDisplayName, sDisplayVersion
oReg.EnumValues HKEY_LOCAL_MACHINE, sKeyRoot, sKeyValuesAry, iKeyTypesAryIf NOT IsArray(sKeyValuesAry) Then getProgNameAndVersion = 0Exit Function  End IfFor nCnt = 0 To UBound(sKeyValuesAry)If InStr(1, sKeyValuesAry(nCnt), "DisplayName", vbTextCompare) ThenIf iKeyTypesAry(nCnt) = REG_SZ ThenoReg.GetStringValue HKEY_LOCAL_MACHINE, sKeyRoot, sKeyValuesAry(nCnt), sValueIf sValue<>"" Then sDisplayName = sValue                                sDisplayName = Replace(sDisplayName, "[", "(")sDisplayName = Replace(sDisplayName, "]", ")")End IfEnd IfElseIf InStr(1, sKeyValuesAry(nCnt), "DisplayVersion", vbTextCompare) ThenIf iKeyTypesAry(nCnt) = REG_SZ ThenoReg.GetStringValue HKEY_LOCAL_MACHINE, sKeyRoot, sKeyValuesAry(nCnt), sValueIf sValue<>"" Then sDisplayVersion = sValueEnd IfEnd IfIf (sDisplayName<>"") AND (sDisplayVersion<>"") Then getProgNameAndVersion = sDisplayName & " --版本号: " & sDisplayVersionExit FunctionElse         getProgNameAndVersion = 0                        End IfNextIf sDisplayName<>"" Then getProgNameAndVersion = sDisplayNameExit Function                                        End If
End FunctionFunction WriteTable(caption,value)'函数,将数据写入HTML单元格
resultFile.Writeline "<tr>"
resultFile.Writeline "<td align=""left"" width=""30%"" height=""25"" bgcolor=""#ffffff"" scope=""row"">  " & caption & "</td>"
resultFile.Writeline "<td bgcolor=""#ffffff"">  " & value & "</td>"
resultFile.Writeline "</tr>"
End Function Function HtmlWriteHead()'函数,写入THML文件头
resultFile.Writeline "<html>" 
resultFile.Writeline "<head>" 
resultFile.Writeline "<title>软硬件配置清单</title>"
resultFile.Writeline "</head>" 
resultFile.Writeline "<body>" 
End Function Function HtmlWriteEnd()'函数,写入Html文件尾
resultFile.Writeline "</body>" 
resultFile.Writeline "</html>" 
End Function Function TableHead(pcname,str)'函数,写入Html表格结尾
resultFile.Writeline "<h3>" & pcname & str & " -- date:"&now()&" </h3>" & VbCrLf
resultFile.Writeline "<table width=""90%"" border=""0"" align=""center"" cellpadding=""0"" cellspacing=""1"" bgcolor=""#0000ff"">" 
resultFile.Writeline "<tr>" 
resultFile.Writeline "<th width=""30%"" height=""25"" bgcolor=""#ffffff"" scope=""col"">资产类型</th>"
resultFile.Writeline "<th bgcolor=""#ffffff"" scope=""col"">查询结果值</th>"
resultFile.Writeline "</tr>" 
strstyle = "<th width=""30%"" height=""25"" bgcolor=""#ffffff"" scope=""row"">"
End Function Function TableEnd()'函数,Html表格结尾
resultFile.Writeline "</table>" 
End Function 

这篇关于一个获取计算机硬件信息和安装软件清单的脚本的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/660267

相关文章

Linux系统中卸载与安装JDK的详细教程

《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1

Linux卸载自带jdk并安装新jdk版本的图文教程

《Linux卸载自带jdk并安装新jdk版本的图文教程》在Linux系统中,有时需要卸载预装的OpenJDK并安装特定版本的JDK,例如JDK1.8,所以本文给大家详细介绍了Linux卸载自带jdk并... 目录Ⅰ、卸载自带jdkⅡ、安装新版jdkⅠ、卸载自带jdk1、输入命令查看旧jdkrpm -qa

MySQL Workbench 安装教程(保姆级)

《MySQLWorkbench安装教程(保姆级)》MySQLWorkbench是一款强大的数据库设计和管理工具,本文主要介绍了MySQLWorkbench安装教程,文中通过图文介绍的非常详细,对大... 目录前言:详细步骤:一、检查安装的数据库版本二、在官网下载对应的mysql Workbench版本,要是

使用Python实现获取网页指定内容

《使用Python实现获取网页指定内容》在当今互联网时代,网页数据抓取是一项非常重要的技能,本文将带你从零开始学习如何使用Python获取网页中的指定内容,希望对大家有所帮助... 目录引言1. 网页抓取的基本概念2. python中的网页抓取库3. 安装必要的库4. 发送HTTP请求并获取网页内容5. 解

Linux安装MySQL的教程

《Linux安装MySQL的教程》:本文主要介绍Linux安装MySQL的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux安装mysql1.Mysql官网2.我的存放路径3.解压mysql文件到当前目录4.重命名一下5.创建mysql用户组和用户并修

pip无法安装osgeo失败的问题解决

《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

C++常见容器获取头元素的方法大全

《C++常见容器获取头元素的方法大全》在C++编程中,容器是存储和管理数据集合的重要工具,不同的容器提供了不同的接口来访问和操作其中的元素,获取容器的头元素(即第一个元素)是常见的操作之一,本文将详细... 目录一、std::vector二、std::list三、std::deque四、std::forwa

使用Python高效获取网络数据的操作指南

《使用Python高效获取网络数据的操作指南》网络爬虫是一种自动化程序,用于访问和提取网站上的数据,Python是进行网络爬虫开发的理想语言,拥有丰富的库和工具,使得编写和维护爬虫变得简单高效,本文将... 目录网络爬虫的基本概念常用库介绍安装库Requests和BeautifulSoup爬虫开发发送请求解

Android App安装列表获取方法(实践方案)

《AndroidApp安装列表获取方法(实践方案)》文章介绍了Android11及以上版本获取应用列表的方案调整,包括权限配置、白名单配置和action配置三种方式,并提供了相应的Java和Kotl... 目录前言实现方案         方案概述一、 androidManifest 三种配置方式

一文详解SQL Server如何跟踪自动统计信息更新

《一文详解SQLServer如何跟踪自动统计信息更新》SQLServer数据库中,我们都清楚统计信息对于优化器来说非常重要,所以本文就来和大家简单聊一聊SQLServer如何跟踪自动统计信息更新吧... SQL Server数据库中,我们都清楚统计信息对于优化器来说非常重要。一般情况下,我们会开启"自动更新