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

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

相关文章

C#读取本地网络配置信息全攻略分享

《C#读取本地网络配置信息全攻略分享》在当今数字化时代,网络已深度融入我们生活与工作的方方面面,对于软件开发而言,掌握本地计算机的网络配置信息显得尤为关键,而在C#编程的世界里,我们又该如何巧妙地读取... 目录一、引言二、C# 读取本地网络配置信息的基础准备2.1 引入关键命名空间2.2 理解核心类与方法

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下

Linux使用nohup命令在后台运行脚本

《Linux使用nohup命令在后台运行脚本》在Linux或类Unix系统中,后台运行脚本是一项非常实用的技能,尤其适用于需要长时间运行的任务或服务,本文我们来看看如何使用nohup命令在后台... 目录nohup 命令简介基本用法输出重定向& 符号的作用后台进程的特点注意事项实际应用场景长时间运行的任务服

如何安装 Ubuntu 24.04 LTS 桌面版或服务器? Ubuntu安装指南

《如何安装Ubuntu24.04LTS桌面版或服务器?Ubuntu安装指南》对于我们程序员来说,有一个好用的操作系统、好的编程环境也是很重要,如何安装Ubuntu24.04LTS桌面... Ubuntu 24.04 LTS,代号 Noble NumBAT,于 2024 年 4 月 25 日正式发布,引入了众

Ubuntu 怎么启用 Universe 和 Multiverse 软件源?

《Ubuntu怎么启用Universe和Multiverse软件源?》在Ubuntu中,软件源是用于获取和安装软件的服务器,通过设置和管理软件源,您可以确保系统能够从可靠的来源获取最新的软件... Ubuntu 是一款广受认可且声誉良好的开源操作系统,允许用户通过其庞大的软件包来定制和增强计算体验。这些软件

如何安装HWE内核? Ubuntu安装hwe内核解决硬件太新的问题

《如何安装HWE内核?Ubuntu安装hwe内核解决硬件太新的问题》今天的主角就是hwe内核(hardwareenablementkernel),一般安装的Ubuntu都是初始内核,不能很好地支... 对于追求系统稳定性,又想充分利用最新硬件特性的 Ubuntu 用户来说,HWEXBQgUbdlna(Har

python中poetry安装依赖

《python中poetry安装依赖》本文主要介绍了Poetry工具及其在Python项目中的安装和使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随... 目录前言1. 为什么pip install poetry 会造成依赖冲突1.1 全局环境依赖混淆:1

windows端python版本管理工具pyenv-win安装使用

《windows端python版本管理工具pyenv-win安装使用》:本文主要介绍如何通过git方式下载和配置pyenv-win,包括下载、克隆仓库、配置环境变量等步骤,同时还详细介绍了如何使用... 目录pyenv-win 下载配置环境变量使用 pyenv-win 管理 python 版本一、安装 和

python获取当前文件和目录路径的方法详解

《python获取当前文件和目录路径的方法详解》:本文主要介绍Python中获取当前文件路径和目录的方法,包括使用__file__关键字、os.path.abspath、os.path.realp... 目录1、获取当前文件路径2、获取当前文件所在目录3、os.path.abspath和os.path.re