欢迎来到代码驿站!

当前位置:首页 >

用批处理轻松清掉sxs.exe和autorun.inf的专杀工具

时间:2021-04-11 08:56:15|栏目:|点击:
保存为del.bat,运行即可,另一个是注册表文件,可以防止病毒修改注册表无法查看隐藏文件
复制代码 代码如下:

@echo off

@echo 脚本之家
@echo sxs.exe 专杀
@echo 开始
@echo 结束病毒进程sovhost
ntsd -c q -pn sovhost.exe

echo 修正注册表
regedit /s del.reg

echo 删除各盘病毒文件
cd\
c:
attrib sxs.exe -a -h -s 
del /s /q /f sxs.exe
attrib autorun.inf -a -h -s
del /s /q /f autorun.inf
D:
attrib sxs.exe -a -h -s
del /s /q /f sxs.exe
attrib autorun.inf -a -h -s
del /s /q /f autorun.inf
E:
attrib sxs.exe -a -h -s
del /s /q /f sxs.exe
attrib autorun.inf -a -h -s
del /s /q /f autorun.inf
F:
attrib sxs.exe -a -h -s
del /s /q /f sxs.exe
attrib autorun.inf -a -h -s
del /s /q /f autorun.inf
G:
attrib sxs.exe -a -h -s
del /s /q /f sxs.exe 
attrib autorun.inf -a -h -s
del /s /q /f autorun.inf
@echo on

保存为del.reg运行即可,提示确认
复制代码 代码如下:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL]
"CheckedValue"=dword:00000001

最好的办法是下载最新杀毒软件,基本上就可以了饿

上一篇:易语言选择夹宽度不足显示所有表头时允许多行表头显示

栏    目:

下一篇:Powershell小技巧之通过EventLog查看近期电脑开机和关机时间

本文标题:用批处理轻松清掉sxs.exe和autorun.inf的专杀工具

本文地址:http://www.codeinn.net/misctech/99031.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有