Код:
BEGIN
ClearQuarantine;
TerminateProcessByName('c:\users\den\appdata\local\temp\890d.tmp.exe');
QuarantineFile('C:\Users\Den\appdata\local\temp\startpm.exe','');
QuarantineFile('C:\Users\Den\AppData\Local\SearchGo\searchgo.exe','');
QuarantineFile('C:\Users\Den\AppData\Local\svshost\svshost.exe','');
QuarantineFile('C:\Users\Den\AppData\Local\fupdate\fupdate.exe','');
DeleteFile('C:\Users\Den\AppData\Local\Temp\F13F1CE.sys','32');
DeleteFile('C:\Users\Den\AppData\Local\Temp\A3BEA1EC-66177B98-57A6DD9C-45AFB0F0\e77079a.sys','32');
DeleteFile('C:\Users\Den\AppData\Roaming\PBot\python\pythonw.exe','32');
DeleteFile('C:\Users\Den\AppData\Local\fupdate\fupdate.exe','32');
DeleteFile('C:\Windows\system32\Tasks\fupdate','64');
DeleteFile('C:\Users\Den\AppData\Local\svshost\svshost.exe','32');
DeleteFile('C:\Users\Den\AppData\Local\SearchGo\searchgo.exe','32');
DeleteFile('C:\Users\Den\appdata\local\temp\startpm.exe','32');
DeleteFileMask('C:\Users\Den\AppData\Roaming\PBot','*',true);
DeleteFileMask('C:\Users\Den\AppData\Local\svshost','*',true);
DeleteFileMask('C:\Users\Den\AppData\Local\SearchGo','*',true);
DeleteDirectory('C:\Users\Den\AppData\Roaming\PBot');
DeleteDirectory('C:\Users\Den\AppData\Local\svshost');
DeleteDirectory('C:\Users\Den\AppData\Local\SearchGo');
RegKeyParamDel('HKEY_CURRENT_USER','Software\Microsoft\Windows\CurrentVersion\Run','vfnlzdvptf');
RegKeyParamDel('HKEY_CURRENT_USER','Software\Microsoft\Windows\CurrentVersion\Run','PBot');
ExecuteFile('schtasks.exe', '/delete /TN "fupdate" /F', 0, 15000, true);
ExecuteFile('schtasks.exe', '/delete /TN "PBot" /F', 0, 15000, true);
ExecuteFile('schtasks.exe', '/delete /TN "PBot2" /F', 0, 15000, true);
ExecuteFile('schtasks.exe', '/delete /TN "SearchGo Task" /F', 0, 15000, true);
ExecuteFile('schtasks.exe', '/delete /TN "svshost" /F', 0, 15000, true);
ExecuteSysClean;
ExecuteWizard('TSW',2,2,true);
ExecuteWizard('SCU',2,2,false);
CreateQurantineArchive(GetAVZDirectory+'quarantine.zip');
RebootWindows(true);
END.