欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

vb

當前位置:主頁 > 軟件編程 > vb >

用vbs列出機器上所有能調(diào)用的組件

來源:本站原創(chuàng)|時間:2020-01-10|欄目:vb|點擊: 次

'要用到regtool.ocx,請下載//www.jb51.net/jslib/regtool.ocx,用前請regsvr32   regtool.ocx 

set wshshell = CreateObject("WScript.Shell") 
set registry = CreateObject("regtool.tob") 
'獲取一個dictionary對象存儲鍵名 
set dict = CreateObject("Scripting.Dictionary") 
'列舉HKEY_CLASSES_ROOT中所有鍵 
set allkeys = registry.RegEnum("HKCR\") 
'排除所有鍵中鍵名有點的。 
for each key in allkeys 
'第1個點在哪兒(跳過初始點)? 
pos = Instr(2, key, ".") 
if pos>0 then 
'there's a dot. Is there another one? 
pos2 = Instr(pos+1, key, ".") 
if pos2>0 then 
'yes, so this name is version specific 
'check whether we already have a 
'version-independent progid! 
independent = left(key, pos2-1) 
if not dict.Exists(independent) then 
'no, store it 
dict.Add key, 0 
end if 
else 
'this one is version-independent. 
'do we already have a version-dependent 
'progID in store? 
vdpid = "" 
for each element in dict 
if len(element)>len(key) then 
if left(element, len(key)+1)=key & "." then 
'yes, return name 
vdpid = element 
exit for 
end if 
end if 
next 
'any version dependent progID found? 
if vdpid="" then 
'no, add to store 
dict.add key, 0 
else 
'yes, replace 
dict.Remove vdpid 
dict.add key, 0 
end if 
end if 
end if 
next 
MsgBox dict.Count & " Objects found!" 
for each key in dict 
list = list & key & vbCrlf 
next 
MsgBox list 
outputfile = "C:\OBJECT.TXT" 
set fs = CreateObject("Scripting.FileSystemObject") 
set output = fs.CreateTextFile(outputfile, true) 
print dict.Count & " Objects found!" 
Print list 
output.close 
wshshell.run outputfile 
sub Print(text) 
'寫信息到記錄文件 
output.WriteLine text 
end sub 

上一篇:vbs實現(xiàn)的eMule電驢自動關機腳本代碼

欄    目:vb

下一篇:高手必看的vbs的至尊境界

本文標題:用vbs列出機器上所有能調(diào)用的組件

本文地址:http://mengdiqiu.com.cn/a1/vb/7652.html

網(wǎng)頁制作CMS教程網(wǎng)絡編程軟件編程腳本語言數(shù)據(jù)庫服務器

如果侵犯了您的權利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權所有