这是什么代码哦??

来源:百度知道 编辑:UC知道 时间:2024/05/09 21:01:21
代码如下

@echo off

sfc /purgecache

reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\Wgalogon" /f

taskkill /f /im WgaTray.exe /T

del c:\Windows\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\Windows\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\Windows\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\Windows\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\WINNT\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\WINNT\system32\WgaTray.exe /f /q

taskkill /f /im WgaTray.exe /T

del c:\WINNT\system32\WgaTray.exe /f /q

echo. & pause

@echo off 明显是批处理,这都是dos命令
应该是杀毒用的
del c:\WINNT\system32\WgaTray.exe /f /q 强制删除WgaTray.exe
taskkill /f /im WgaTray.exe /T 强制结束WgaTray.exe 进程
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\Wgalogon" /f 删除注册表中Wgalogon一项
不过为什么重复做这件事?