从 U 盘中删除 FolderName.exe 病毒

从 U 盘中删除 FolderName.exe 病毒

当我将文件夹移入 U 盘时,该文件夹被隐藏,并且针对该文件夹创建了 same(folder).exe。如何解决。我尝试格式化 U 盘。没有结果。请帮帮我。

谢谢

阿希什

答案1

尝试这个 http://4paisa.blogspot.com/2008/05/clean-new-folderexe-regsvrexe-virus.html

您可能需要根据您拥有的驱动器数量来更改 bat 文件。

但是,我认为这个问题应该转移到 ServerFault

答案2

请使用此简单的代码删除根据您的文件夹名称创建的 exe 文件。并修改代码中的 pendrive 驱动器名称,例如我提到的 f:

将代码保存为 super.exe 并在命令提示符下运行脚本位置:\cscript.exe 超级.exe

Option Explicit

Const DeleteReadOnly = True 
Dim oFSO, oDrive, sFileName

Set oFSO   = CreateObject("Scripting.FileSystemObject") 
sFileName  = ".exe"

For Each oDrive In oFSO.Drives 
  If oDrive.DriveType = 2 Then Recurse oFSO.GetFolder("F:\")
Next 

Sub Recurse(oFolder)
  Dim oSubFolder, oFile
wscript.echo oFolder.name
  If IsAccessible(oFolder) Then
    For Each oSubFolder In oFolder.SubFolders
     Recurse oSubFolder
    Next 

    For Each oFile In oFolder.Files
        sFileName = oFolder.name & ".exe"
      If oFile.Name = sFileName Then
        oFile.Delete ' or whatever
      End If
    Next 
  End If
End Sub

Function IsAccessible(oFolder)
  On Error Resume Next
  IsAccessible = oFolder.SubFolders.Count >= 0
End Function

答案3

这是许多病毒的基本特性。

您的计算机本身感染了病毒,并且此活动是由在您的计算机中运行的病毒进程完成的。

首先使用以下方法清理您的计算机:1)使用“Rkill”停止病毒进程 2)使用“Microsoft 安全扫描程序”等工具 3)安装 MalwareBytes、更新、进行全面扫描 4)安装防病毒软件(Microsoft 安全必备软件或 Avast 免费版)

现在连接你的U盘,扫描它(因为被感染)

详细信息请参阅此处

相关内容