- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章RGIS.vbs代码分享(获取远程或本地获取系统信息的脚本)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
******************************************************************************* RGIS v1.03 Remote Get Infomation Script, by zzzEVAzzz Welcome to visite www.isgrey.com & www.h4h4.com Usage: cscript rgis.vbs [/r targetIP username password] [/o filename] [/v] [/a] [/h] /r: remote get info. /o: output to file. /v: get more infomation. /a: get applications infomation. /h: show usage. ******************************************************************************* 描述:远程或本地获取系统信息的脚本。 特点:不依赖于目标的ipc$开放与否。 原理:直接访问目标的windows管理规范服务(WMI)。 支持平台:win2kpro win2kserver winxp 使用方法: 在命令行方式下使用windows自带的脚本宿主程序cscript.exe调用脚本,例如: c:\>cscript rgis.vbs [/r 目标IP 用户名 密码] [/o 输出文件] [/v] [/a] [/h] 参数都是可选的。 /r 用于远程获得信息。空密码用""表示。 /o 加输出文件路径和名字,如文件不存在则自动新建,如存在则添加信息在末尾。 /v 获取详细信息。 /a 获取应用程序信息。 /h 显示Usage。 不加参数则显示本地信息。 脚本访问的目标的135端口,如果目标135端口未开放,或者WMI服务关闭,那么脚本无法使用。 另外,网络不是很好时,可能会等待较多的时间。 有问题和建议请到 灰色轨迹论坛 或 H4网络安全论坛 发短消息给我。我的ID是zzzevazzz 最后更新:2002-12-7 更新记录: 1.03 增加获得应用程序信息的功能 1.02 增加获得HotFix和端口过滤简单信息的功能 1.01 增加输出到文件的功能 1.00 最初版本 。
复制代码 代码如下
if (lcase(right(wscript.fullname,11))="wscript.exe") then set objshell=wscript.createobject("wscript.shell") objshell.run("cmd.exe /k cscript //nologo "&chr(34)&wscript.scriptfullname&chr(34)) wscript.quit end if with wscript.arguments if .count>0 then ipaddress="." outfile="" username="" password="" viewtype=0 program=0 for arg=0 to .count-1 select case left(lcase(.item(arg)),2) case "/h","/?","\h","\?" usage() wscript.quit case "/r","\r" if arg+3<=.count-1 then ipaddress=.item(arg+1) username=.item(arg+2) password=.item(arg+3) else wscript.echo "Arguments Error!"&vbcrlf usage() wscript.quit end if case "/v","\v" viewtype=1 case "/o","\o" outfile=.item(arg+1) case "/a","\a" program=1 end select next end if end with on error resume next if outfile<>"" then set fs=createobject("scripting.filesystemobject") showerr() set of=fs.opentextfile(outfile,8,true) showerr() end if wscript.echo "Getting Infomation...."&vbcrlf set objlocator=createobject("wbemscripting.swbemlocator") showerr() set objswb=objlocator.connectserver(ipaddress,"root/cimv2",username,password) showerr() on error goto 0 set obj1=objget("win32_computersystem") set obj2=objget("win32_operatingsystem") set col3=objswb.instancesof("win32_processor") set obj4=objget("win32_logicalmemoryconfiguration") set obj5=objget("win32_bios") set obj6=objget("win32_displayconfiguration") set col7=objswb.instancesof("win32_diskdrive") set col8=objswb.instancesof("win32_logicaldisk") set col9=objswb.instancesof("win32_networkadapterconfiguration") set col10=objswb.instancesof("win32_quickfixengineering") if program=1 then set objswb1=objlocator.connectserver(ipaddress,"root/default",username,password) set obj11=objswb1.get("stdregprov") end if wnl "OS Info :" wnl " Computer Name : "&obj1.name wnl " User Name : "&obj1.username wnl " Domain : "&obj1.domain domainrole="" select case obj1.domainrole case 0 domainrole="Workstation" case 1 domainrole="Member Workstation" case 2 domainrole="Server" case 3 domainrole="Member Server" case 4 domainrole="Backup Domain Controller" case 5 domainrole="Main Domain Controller" end select with obj2 wnl " Domain Role : "&domainrole wnl " Caption : "&.caption wnl " Organization : "&.organization wnl " Registered User : "&.registereduser wnl " Install Date : "&timeformat(.installdate) wnl " Last BootUp Time : "&timeformat(.lastbootuptime) wnl " Windows Directory : "&.windowsdirectory if viewtype=1 then wnl " System Directory : "&.systemdirectory wnl " Boot Device : "&.bootdevice wnl " Country Code : "&.countrycode wnl " CSName : "&.csname wnl " Description : "&.description wnl " Manufacturer : "&.manufacturer wnl " Serial Number : "&.serialnumber wnl " Version : "&.version wnl " System Type : "&obj1.systemtype wnl " System Startup Delay : "&obj1.systemstartupdelay&"s" wnl " System Startup Options : "&obj1.systemstartupoptions(0) for i=1 to ubound(obj1.systemstartupoptions) wnl space(28)&obj1.systemstartupoptions(i) next end if end with wnl vbcrlf&"Processor Info :" wnl " Number Of Processors : "&obj1.numberofprocessors for each obj3 in col3 with obj3 wnl " Device ID : "&.deviceid wnl " Name : "&.name wnl " Current Clock Speed : "&.currentclockspeed&"MHz" wnl " Description : "&.description if viewtype=1 then wnl " Ext Clock : "&.extclock&"MHz" wnl " L2 Cache Size : "&.l2cachesize&"KB" wnl " L2 Cache Speed : "&.l2cachespeed&"MHz" wnl " Processor Id : "&.processorid wnl " Manufacturer : "&.manufacturer wnl " Socket Designation : "&.socketdesignation wnl " Address Width : "&.addresswidth&"Bit" wnl " Data Width : "&.datawidth&"Bit" end if end with next with obj4 wnl vbcrlf&"Memory Info :" wnl " Total Physical Memory : "&cint(.totalphysicalmemory/1024)&"MB" wnl " Free Physical Memory : "&cint(obj2.freephysicalmemory/1024)&"MB" if viewtype=1 then wnl " Total PageFile Space : "&cint(.totalpagefilespace/1024)&"MB" wnl " Total Virtual Memory : "&cint(.totalvirtualmemory/1024)&"MB" wnl " Available Virtual Memory : "&cint(.availablevirtualmemory/1024)&"MB" end if end with if viewtype=1 then wnl vbcrlf&"BIOS Info :" wnl " Description : "&obj5.description wnl " Current Language : "&obj5.currentlanguage wnl " Version : "&obj5.version wnl " Manufacturer : "&obj5.manufacturer end if with obj6 wnl vbcrlf&"Display Configuration :" wnl " Caption : "&.caption if viewtype=1 then wnl " Device Name : "&.devicename wnl " Driver Version : "&.driverversion end if wnl " Display Frequency : "&.displayfrequency&"Hz" wnl " Bits Per Pel : "&.bitsperpel&"Bit" wnl " Pels : "&.pelswidth&" x "&.pelsheight end with wnl vbcrlf&"Disk Info :" for each obj7 in col7 with obj7 wnl " DeviceID : "&.deviceid wnl " Caption : "&.caption wnl " Interface Type : "&.interfacetype if viewtype=1 then wnl " SCSI Bus : "&.scsibus wnl " SCSI Logical Unit : "&.scsilogicalunit wnl " SCSI Port : "&.scsiport wnl " SCSI TargetId : "&.scsitargetid wnl " Sectors Per Track : "&.sectorspertrack&"KB" end if wnl " Partitions : "&.partitions wnl " Size : "&sizeformat(.size) end with next str=" Volume"+space(2)+"Type"+space(8)+"Format"+space(4) str=str+"Size"+space(6)+"Free"+space(12)+"Label" wnl str for each obj8 in col8 with obj8 drivetype="" select case .drivetype case 0 drivetype="Unknow" case 1 drivetype="NoRootDir" case 2 drivetype="Removable" case 3 drivetype="Fixed" case 4 drivetype="Network" case 5 drivetype="CD-ROM" case 6 drivetype="RAM" end select strpercent="" if .size<>"" and .freespace<>"" then strpercent=" ("&formatpercent(.freespace/.size,0)&")" end if str=" "&wsp(.caption,8)&wsp(drivetype,12)&wsp(.filesystem,10)&wsp(sizeformat(.size),10) str=str&wsp(sizeformat(.freespace)&strpercent,16)&.volumename wnl str end with next wnl vbcrlf&"NIC Informaton :" for each obj9 in col9 with obj9 if .IPEnabled then wnl " Index : "&.index wnl " Description : "&.description if viewtype=1 then wnl " DHCP Enabled : "&.dhcpenabled wnl " DHCP Server : "&.dhcpserver wnl " DNS Host Name : "&.dnshostname wnl " DNS Server Search Order : "&wfl(.dnsserversearchorder) wnl " WINS Primary Server : "&.winsprimaryserver end if wnl " IP Address : "&wfl(.ipaddress) wnl " MAC Address : "&.macaddress wnl " Default IP Gateway : "&wfl(.defaultipgateway) wnl " IP Subnet : "&wfl(.ipsubnet) if viewtype=1 then wnl " IP Filter Security Enabled : "&.ipfiltersecurityenabled wnl " IPSec Permit IP Protocols : "&wfl(.ipsecpermitipprotocols) wnl " IPSec Permit TCP Ports : "&wfl(.ipsecpermittcpports) wnl " IPSec Permit UDP Ports : "&wfl(.ipsecpermitudpports) end if end if end with next if viewtype=1 then wnl vbcrlf&"Hot Fixes Info :" for each obj10 in col10 wnl " Hot Fix ID : "&obj10.hotfixid wnl " Fix Comments : "&obj10.fixcomments wnl " Install Date : "&obj10.installdate wnl " Service Pack In Effect : "&obj10.servicepackineffect next end if if program=1 then wnl vbcrlf&"Applications :" HKLM=&h80000002 keypath="SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" obj11.enumkey HKLM,keypath,keyarray redim str(ubound(keyarray)+1) j=0 for i=0 to ubound(keyarray) obj11.getstringvalue HKLM,keypath+keyarray(i),"displayname",strvalue if strvalue<>"" then str(j)=strvalue j=j+1 end if next if j>1 then for i=0 to j-1 for k=0 to j-i-1 if strcomp(str(k),str(k+1),1)=1 then strtemp=str(k+1) str(k+1)=str(k) str(k)=strtemp end if next next end if for i=0 to j-1 wnl " "&str(i) next end if sub showerr() if err.number then wscript.echo "Error 0x"&cstr(hex(err.number))&" ." if err.description<>"" then wscript.echo "Error description: "&err.description&"." end if wscript.quit end if end sub sub wnl(msg) wscript.echo msg if isobject(of) then on error resume next of.writeline msg showerror() on error goto 0 end if end sub function wfl(byref obj) str="" for i=0 to ubound(obj) str=str&obj(i)&" " next wfl=str end function function wsp(msg,num) if msg<>"" then msg=left(msg,num-1) wsp=msg&space(num-len(msg)) else wsp=space(num) end if end function function timeformat(msg) timeformat=left(msg,4)&"/"&mid(msg,5,2)&"/"&mid(msg,7,2)&" "&mid(msg,9,2)&":"&mid(msg,11,2)&":"&mid(msg,13,2) end function function sizeformat(msg) if msg<>"" then size=msg/1048576 if size>1024 then sizeformat=round(size/1024,2)&"GB" else sizeformat=round(size,1)&"MB" end if end if end function function objget(msg) set col=objswb.instancesof(msg) for each objx in col set obj=objx next set objget=obj end function function usage() wscript.echo string(79,"*") wscript.echo "RGIS v1.03" wscript.echo "Remote Get Infomation Script, by zzzEVAzzz" wscript.echo "Welcome to visite www.isgrey.com & www.h4h4.com" wscript.echo "Usage:" wscript.echo "cscript rgis.vbs [/r targetIP username password] [/o filename] [/v] [/a] [/h]" wscript.echo "/r: remote get info." wscript.echo "/o: output to file." wscript.echo "/v: get more infomation." wscript.echo "/a: get applications infomation." wscript.echo "/h: show usage." wscript.echo string(79,"*")&vbcrlf end function 。
最后此篇关于RGIS.vbs代码分享(获取远程或本地获取系统信息的脚本)的文章就讲到这里了,如果你想了解更多关于RGIS.vbs代码分享(获取远程或本地获取系统信息的脚本)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
03-25 05:52:15.329 8029-8042/com.mgh.radio W/MediaPlayerNative: info/warning (703, 0) 03-25 05:52:15
我一直在 Internet 上到处寻找关于 FrameworkElementFactory 类的适当文档,但我似乎找不到有关它的适当教程或有用信息。 请问对这个问题了解更多的人可以给我更多的信息吗?这
我需要知道一个线程在进入等待状态之前如何将其ID发送到另一个线程。我想传递一个带有其ID的变量,但我不知道该怎么做。 最佳答案 如果只有一个线程及其父线程,则可以使用全局变量,因为它们在所有线程之间共
我正在尝试制作一个程序,该程序可以读取命令行上的所有单词,然后将其打印在新行上,而我想要做的是这样的: Some text: hello 但是相反,我得到了这样的东西: Some text: Hell
我有一个连接到rabbitmq服务器的python程序。当该程序启动时,它连接良好。但是当rabbitmq服务器重新启动时,我的程序无法重新连接到它,并留下错误“Socket已关闭”(由kombu产生
我正在设置CI / CD管道。部署步骤运行以下命令: kubectl apply -f manifest.yml --namespace kubectl rollout status Deploym
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 4 年前。 Improve this ques
这是我在文件上运行 svn info 时输出的一部分: Last Changed Author: [user] Last Changed Rev: 269612 Last Changed Date:
所以我正在构建这个音乐应用程序,到目前为止它只扫描 SD 卡内的特定文件夹。这将返回路径,然后播放它们。 几个小时前我得知android系统中有一个媒体文件数据库所以 我想知道这个媒体文件数据库是否存
我正在绘制树形图,并且想知道如何绘制树类的相对百分比,即 A组=100 B地=30 C地=50 D 地 =20 然后,在图中,应该添加: A 组“50%” B 组“15%” 等在其“Group X”标
我正在构建一个社交网站,我想知道如何在用户首次登录时显示交互式教程和信息。比如只有在第一次登录时,用户才会被要求在他们的个人资料中填写更多信息。我怎样才能通过 php 和 mysql 实现这一点?例子
我是 java servlet 的新手。我研究了一些关于 servlet 的代码,但我真的很想知道更多基本的东西以及它是如何工作的。我只是想知道什么类型的 Material /内容可以从 java s
我想知道是否有办法为 user_id、sender_user_id 和 recipient_user_id 提供 name 信息来自 this fiddle 中的模式. 我现在唯一能想到的办法就是做这
这是我存储2个大学生信息的源代码。我想从输入中获取每个人的姓名、姓氏、ID 和 5 分,然后在输出中显示它们。我在输出中显示分数时遇到问题。 请帮忙 #include using namespace
假设我有一张带有条形图的图像,如下所示: 我想提取条形图和标签的值,除了训练 ML 模型之外,还有其他方法吗? 我有一堆图像,我为其生成了图表和一些描述。我目前正尝试仅从我能够做到的描述中提取信息,但
有没有办法从 GKTurnBasedParticipant 对象中检索玩家的名字?似乎除了根据类引用的难看的 playerID 之外,没有办法显示有关游戏玩家的相关信息。还是我遗漏了什么? 谢谢...
我有一个随机抛出“KeyNotFoundException”的 C# Silverlight 应用程序。我不知道找不到什么 key 。这让我想到了两个问题: KeyNotFoundException
本文实例为大家分享了ios获取本地音频文件的具体代码,供大家参考,具体内容如下 获取本地音频文件地址: ?
下面为大家介绍利用SQL查询语句获取Mysql数据库中表的表名,表描述、字段ID、字段名、数据类型、长度、精度、是否可以为null、默认值、是否自增、是否是主键、列描述 1、查询表信息(表名/表
问题 有没有办法获取代码中使用属性的位置,或声明成员变量的位置? 我不是在寻找解决此问题的方法,只是寻求一个简单的答案,无论这在技术上是否可行。 一些背景信息 我已经定义了一个属性,该属性使用提供给属
我是一名优秀的程序员,十分优秀!