CmdLineExt03.dll
发布网友
发布时间:2022-05-12 10:58
我来回答
共1个回答
热心网友
时间:2023-07-30 14:55
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
在送你个答案CmdLineExt03.dll 病毒的查杀办法 http://www.itwx.cn/Article/dnzs/200611/344.html