六扇门风云易经筋获得:关于CmdlineExt03.dll的问题

来源:百度文库 编辑:中科新闻网 时间:2024/05/03 02:39:09
用金山木马专杀查的时候列这个文件为可以文件
网上搜寻了资料后也没有具体的解决办法啊 不知何故 大家有没遇到过呀

CmdLineExt03.dll不被任何杀毒软件检测到。

本信息在microsoft.public.scripting.wsh.中发现。

CmdLineExt03.dll虽然不被任何杀毒软件检测出来,但会制造麻烦。

用下列的代码可以修复(用记事本建立下列代码,存成Detect.VBS)

dim fso,wso,path,arr,i,f,virus,bad
set fso = createObject("scripting.fileSystemObject")
set wso = createObject("wScript.shell")
path = wso.expandEnvironmentStrings("%path%")
path = fso.getAbsolutePathName(void) & ";" & path
arr = split(path,chr(59))
for i = 0 to uBound(arr)
if not(arr(i) = empty)then
f = arr(i) & "\" & "CmdLineExt03.dll"
if(fso.fileExists(f))then
virus = true
msgBox"Found:" & vbNewLine & f,, "Detected CmdLineExt03.dll :-("
if(vbYes=msgBox("Do you want me to delete it ?", vbYesNo, "?"))_
then
fso.deleteFile(f)
if(fso.fileExists(f))then
exit for
else
virus = false
end if
else
exit for
end if
end if
end if
next

if not(virus)then
if(vbYes=msgBox("Done. Do you also want me to" &_
" test your PATH ?", vbYesNoCancel, ":-)"))then
for i = 1 to uBound(arr)
if not(arr(i) = empty)then
f = arr(i) & "\nul"
if not(fso.fileExists(f))then
bad = true
msgBox "Wrong system PATH:" & vbCrLf & arr(i),, ":-("
exit for
end if
end if
next
end if
end if

if (bad or virus)then
msgBox "OOPS. You should fix a problem.",, ":-("
else
msgBox "No problems. All done.",, ":-)"
end if