U盘病毒Global.exe专杀

该博客详细列举了针对Global.exe病毒的一系列清除步骤,包括使用attrib命令改变病毒文件属性,然后删除这些恶意文件,涉及系统目录及各驱动器的autorun.inf和MS-DOS.com文件。

AI 时代程序员必备技能

Codex、Claude Code、Cursor、Hermes Agent、OpenClaw等工程化实战专栏 ,讲透 AI 如何接管脏活累活

今天不小心中了个U盘病毒,比较顽固,花了我几个小时才搞定,网上虽然有一些现成的批处理文件来删除病毒文件,但是一运行注册表,病毒又会死灰复燃,我现在写的这个脚本不会出现这种情况! 把一下内容保存文bat文件运行就可以了,不过前提是要结束掉病毒进程,可以用360同时结束掉 相互保护的多个病毒进程,然后运行下面的批处理就可以了
 
  1. attrib -h -s -r %systemroot%/cursors/boom.vbs 
  2. attrib -h -s -r %systemroot%/system/keyboard.exe 
  3. attrib -h -s -r %systemroot%/system32/dllcache/default.exe 
  4. attrib -h -s -r %systemroot%/fonts/fonts.exe
  5. attrib -h -s -r %systemroot%/system32/drivers/drivers.cab.exe 
  6. attrib -h -s -r %systemroot%/system32/regedit
  7. attrib -h -s -r %systemroot%/fonts/fonts.exe 
  8. attrib -h -s -r %systemroot%/media/rndll32.pif 
  9. attrib -h -s -r %systemroot%/pchealth/helpctr/binaries/helphost.com 
  10. attrib -h -s -r %systemroot%/fonts/tskmgr.exe
  11. attrib -h -s -r %systemroot%/pchealth/Global.exe 
  12. attrib -h -s -r %systemroot%/system32/dllcache/autorun.inf 
  13. attrib -h -s -r %systemroot%/system32/dllcache/system.exe 
  14. attrib -h -s -r %systemroot%/system32/dllcache/svchost.exe 
  15. attrib -h -s -r %systemroot%/system32/dllcache/Global.exe 
  16. attrib -h -s -r %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/system.exe 
  17. attrib -h -s -r %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/svchost.exe 
  18. attrib -h -s -r %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/Global.exe 
  19. attrib -h -s -r C:autorun.inf
  20. attrib -h -s -r C:MS-DOS.com
  21. attrib -h -s -r d:autorun.inf
  22. attrib -h -s -r d:MS-DOS.com
  23. attrib -h -s -r e:autorun.inf
  24. attrib -h -s -r e:MS-DOS.com
  25. attrib -h -s -r f:autorun.inf
  26. attrib -h -s -r f:MS-DOS.com
  27. attrib -h -s -r g:autorun.inf
  28. attrib -h -s -r g:MS-DOS.com
  29. attrib -h -s -r h:autorun.inf
  30. attrib -h -s -r h:MS-DOS.com
  31. attrib -h -s -r i:autorun.inf
  32. attrib -h -s -r i:MS-DOS.com
  33. attrib -h -s -r j:autorun.inf
  34. attrib -h -s -r j:MS-DOS.com
  35. attrib -h -s -r k:autorun.inf
  36. attrib -h -s -r k:MS-DOS.com
  37. del %systemroot%/cursors/boom.vbs 
  38. del %systemroot%/system/keyboard.exe 
  39. del %systemroot%/system32/dllcache/default.exe 
  40. del %systemroot%/fonts/fonts.exe
  41. del %systemroot%/system32/drivers/drivers.cab.exe 
  42. del %systemroot%/system32/regedit
  43. del %systemroot%/fonts/fonts.exe 
  44. del %systemroot%/media/rndll32.pif 
  45. del %systemroot%/pchealth/helpctr/binaries/helphost.com 
  46. del %systemroot%/fonts/tskmgr.exe
  47. del %systemroot%/pchealth/Global.exe 
  48. del %systemroot%/system32/dllcache/autorun.inf 
  49. del %systemroot%/system32/dllcache/system.exe 
  50. del %systemroot%/system32/dllcache/svchost.exe 
  51. del %systemroot%/system32/dllcache/Global.exe 
  52. del %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/system.exe 
  53. del %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/svchost.exe 
  54. del %systemroot%/system32/dllcache/recycler.{645ff040-5081-101b-9f08-00aa002f954e}/Global.exe 
  55. del C:autorun.inf
  56. del C:MS-DOS.com
  57. del d:autorun.inf
  58. del d:MS-DOS.com
  59. del e:autorun.inf
  60. del e:MS-DOS.com
  61. del f:autorun.inf
  62. del f:MS-DOS.com
  63. del g:autorun.inf
  64. del g:MS-DOS.com
  65. del h:autorun.inf
  66. del h:MS-DOS.com
  67. del i:autorun.inf
  68. del i:MS-DOS.com
  69. del j:autorun.inf
  70. del j:MS-DOS.com
  71. del k:autorun.inf
  72. del k:MS-DOS.com

AI 时代程序员必备技能

Codex、Claude Code、Cursor、Hermes Agent、OpenClaw等工程化实战专栏 ,讲透 AI 如何接管脏活累活

评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值