@ECHO OFF

REM Smitfraud Fix by S!Ri
REM http://siri.urz.free.fr/Fix/SmitfraudFix.zip

REM Thanks, Help: atribune, balltrap34, Beamerke, derek, Grinler, ipl_001, LonnyRJones, MAD,
REM               Malekal_morte, Marckie, moe31, ~Mark, Miekiemoes, Ruby, Roel, Sebdraluorg,
REM               sUBs, Suzi, tirol, TonyKlein, Vazkor,
REM               and all the ones I forgot who submit files, analyses, help users...
REM Miekiemoes' Shudder key fix added.
REM Process.exe by Craig.Peacock added (http://www.beyondlogic.org)
REM Reboot.exe by Shadowar/Option^Explicit added.
REM swreg.exe by SteelWerx (http://www.xs4all.nl/~fstaal01/commandline-us.html)
REM swsc.exe by SteelWerx (http://www.xs4all.nl/~fstaal01/commandline-us.html)
REM swxcacls.exe by SteelWerx (http://www.xs4all.nl/~fstaal01/commandline-us.html
REM restart.exe - SuperFast Shutdown (http://www.xp-smoker.com/freeware.html)
REM dumphive.exe - Markus Stephany (http://www.mirkes.de)
REM unzip.exe - info-zip (http://www.info-zip.org)
REM SmiUpdate.exe - Sebdraluorg
REM exit.exe - MAD - Malware Analysis and Diagnostic

set fixname=SmitFraudFix
set fixvers=v2.221

VER|find "Windows 95">NUL
IF NOT ERRORLEVEL 1 GOTO Win
VER|find "Windows 98">NUL
IF NOT ERRORLEVEL 1 GOTO Win
VER|find "Windows Millennium">NUL
IF NOT ERRORLEVEL 1 GOTO Win
VER|find "Windows XP">NUL
IF NOT ERRORLEVEL 1 GOTO NT
VER|find "Windows 2000">NUL
IF NOT ERRORLEVEL 1 GOTO NT
VER|find "Version 5.2.3790">NUL
IF NOT ERRORLEVEL 1 GOTO NT
VER|find "Version 6.0">NUL
IF NOT ERRORLEVEL 1 GOTO Win
VER|find "version 6.0">NUL
IF NOT ERRORLEVEL 1 GOTO Win
if %OS%==Windows_NT goto NT
color 47
echo %fixname% %fixvers%
echo.
echo Version non support^‚e.
echo Windows 2000 / XP requis !
echo.
echo Unsupported Version.
echo Windows 2000 / XP required !
echo.
pause
goto exit

:Win
color 47
echo %fixname% %fixvers%
echo.
echo Version non support^‚e.
echo Windows 2000 / XP requis !
echo.
echo Unsupported Version.
echo Windows 2000 / XP required !
echo.
pause
goto exit

:NT
set DoReboot=0
set DoRestart=0
set syspath=%windir%\system32

echo Option Explicit>GetPaths.vbs
echo.>>GetPaths.vbs
echo Dim Shell>>GetPaths.vbs
echo Dim KeyPath>>GetPaths.vbs
echo Dim ObjFileSystem>>GetPaths.vbs
echo Dim ObjOutputFile>>GetPaths.vbs
echo Dim ObjRegExp>>GetPaths.vbs
echo Dim File>>GetPaths.vbs
echo Dim TmpVar>>GetPaths.vbs
echo Dim Var>>GetPaths.vbs
echo Dim Accent>>GetPaths.vbs

echo.>>GetPaths.vbs
echo KeyPath = "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\">>GetPaths.vbs
echo File = "SetPaths.bat">>GetPaths.vbs
echo.>>GetPaths.vbs
echo Set Shell = WScript.CreateObject("WScript.Shell")>>GetPaths.vbs
echo Set ObjFileSystem = CreateObject("Scripting.fileSystemObject")>>GetPaths.vbs
echo Set ObjOutputFile = ObjFileSystem.CreateTextFile(File, TRUE)>>GetPaths.vbs
echo Set ObjRegExp = New RegExp>>GetPaths.vbs
echo.>>GetPaths.vbs

echo Function ShortFileName(Path)>>GetPaths.vbs
echo Dim f>>GetPaths.vbs
echo Set f = ObjFileSystem.GetFolder(Path)>>GetPaths.vbs
echo ShortFileName = f.ShortPath>>GetPaths.vbs
echo End Function>>GetPaths.vbs

echo Function Accents(Str)>>GetPaths.vbs
echo ObjRegExp.Pattern = "[^a-zA-Z_0-9\\: ]">>GetPaths.vbs
echo ObjRegExp.IgnoreCase = True>>GetPaths.vbs
echo ObjRegExp.Global = True>>GetPaths.vbs
echo Accents = ObjRegExp.Replace(Str, "?")>>GetPaths.vbs
echo End Function>>GetPaths.vbs

echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Desktop")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set desktop=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Favorites")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set favorites=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Programs")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set startprg=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Start Menu")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set startm=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Startup")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set startup=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs

echo KeyPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\">>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Common Desktop")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set audesktop=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Common Favorites")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set aufavorites=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Common Programs")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set austartprg=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Common Start Menu")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set austartm=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "Common Startup")>>GetPaths.vbs
echo TmpVar = ShortFileName(TmpVar)>>GetPaths.vbs
echo Var = "Set austartup=" ^& TmpVar>>GetPaths.vbs
echo ObjOutputFile.WriteLine(Var)>>GetPaths.vbs
echo.>>GetPaths.vbs
echo ObjOutputFile.Close>>GetPaths.vbs
echo Set objFileSystem = Nothing>>GetPaths.vbs
echo Set Shell = Nothing>>GetPaths.vbs
echo Set ObjRegExp = nothing>>GetPaths.vbs
echo.>>GetPaths.vbs
cscript //I //nologo GetPaths.vbs
del GetPaths.vbs
Call SetPaths.bat
del SetPaths.bat



if exist "%userprofile%\Bureau" (
set lang=fra
) else (
set lang=int
)

goto test

:test
if not exist Process.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier Process.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo Process.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist swreg.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier swreg.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo swreg.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist swsc.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier swsc.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo swsc.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist SrchSTS.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier SrchSTS.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo SrchSTS.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist Reboot.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier Reboot.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo Reboot.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist restart.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier restart.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo restart.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist GenericRenosFix.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier GenericRenosFix.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo GenericRenosFix.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist dumphive.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier dumphive.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo dumphive.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist unzip.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier unzip.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo unzip.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist SmiUpdate.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier SmiUpdate.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo SmiUpdate.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist swxcacls.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier swxcacls.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo swxcacls.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if not exist VCCLSID.exe (
color 47
echo %fixname% %fixvers%
echo.
echo Fichier VCCLSID.exe absent !
echo Dezippez la totalit^‚ de l'archive dans un dossier.
echo.
echo VCCLSID.exe file missing !
echo Unzip all the archive in a folder.
echo.
pause
goto exit
)

if exist Update.cmd del Update.cmd
if not exist %syspath%\Process.exe copy Process.exe %syspath%\Process.exe >NUL
if not exist %syspath%\swreg.exe copy swreg.exe %syspath%\swreg.exe >NUL
if not exist %syspath%\swsc.exe copy swsc.exe %syspath%\swsc.exe >NUL
if not exist %syspath%\SrchSTS.exe copy SrchSTS.exe %syspath%\SrchSTS.exe >NUL
if not exist %syspath%\dumphive.exe copy dumphive.exe %syspath%\dumphive.exe >NUL
if not exist %syspath%\swxcacls.exe copy swxcacls.exe %syspath%\swxcacls.exe >NUL
if not exist %syspath%\VCCLSID.exe copy VCCLSID.exe %syspath%\VCCLSID.exe >NUL

if exist tmp.txt del tmp.txt
if exist tmp2.txt del tmp2.txt
if exist tmp3.txt del tmp3.txt
chkntfs %systemdrive% | find /V "%systemdrive%">tmp.txt
type tmp.txt | find /i "NTFS">tmp2.txt
for /f "tokens=* delims=" %%a in (tmp2.txt) do echo %%a>tmp3.txt
if exist tmp3.txt set FSType=NTFS
if exist tmp3.txt del tmp3.txt
type tmp.txt | find /i "FAT32">tmp2.txt
for /f "tokens=* delims=" %%a in (tmp2.txt) do echo %%a>tmp3.txt
if exist tmp3.txt set FSType=FAT32
if exist tmp.txt del tmp.txt
if exist tmp2.txt del tmp2.txt
if exist tmp3.txt del tmp3.txt

goto notice

:notice
color 17
cls
if %lang%==fra (
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo                 joedanger n'est pas affili^‚ avec SmitfraudFix!
echo.
echo          Cet outil a ^‚t^‚ cr^‚^‚ par S!Ri pour une utilisation GRATUITE.
echo     Des dons seront accept^‚s par S!Ri, uniquement sur son site Web principal
echo                N'importe qui d'autre essayant d'en tirer profit
echo          ou qui sollicite de l'argent est impliqu^‚ dans une fraude.
echo.
echo.
echo                    Appuyez sur une touche pour continuer...
echo.
) else (
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo             joedanger is NOT involved with Smitfraudfix in any way!
echo.
echo            This tool was created by S!Ri, and is available for FREE.
echo     Voluntary donations will be accepted by S!Ri, at his main website only.
echo             Anyone, other than the creator, trying to make a profit
echo     or solicit money from its use would be involved in fraudulent activity.
echo.
echo.
echo                            Press a key to continue...
echo.
)
pause>NUL
goto menu

:menu
color 17
cls

if %lang%==fra (
set sChoice=Entrez votre choix
set sScanDate=Rapport fait à
set sRunFrom=Executé à partir de
set sFSType=Le type du système de fichiers est
set SafeMWarn=Fix executé en mode normal
set SafeMDisp=Fix executé en mode sans echec
set sSearch=Recherche
set sFound=PRESENT !
set sDel=supprimé
set sRen=Redemarrez et Executez SmitfraudFix option 2 encore une fois SVP.
set sInfect=infecté !
set sInfect2=infect^‚ !
set KDMess=détecté !
set sHOSTS=Fichier hosts corrompu !
set RKScan=utilisez un scanner de Rootkit
set xpdxMess=xpdx détecté, utilisez un scanner de Rootkit
set xpdtMess=xpdt détecté, utilisez un scanner de Rootkit
set pe386Mess=pe386 détecté, utilisez un scanner de Rootkit
set lzx32Mess=lzx32 détecté, utilisez un scanner de Rootkit
set huy32Mess=huy32 détecté, utilisez un scanner de Rootkit
set msguardMess=msguard détecté, utilisez un scanner de Rootkit
set DNSHJ=Votre ordinateur est certainement victime d'un détournement de DNS
set CleanDNS=Voules vous reconfigurer votre réseau avec des IP dynamiques -DHCP- ?
set CancelDNS=Configuration annulée. Vérifiez les paramètres de votre réseau.
set sWiniSearch=Recherche wininet.dll de remplacement
set sEnd=Fin
set sProcess=Arret des processus
set sError=Problème suppression
set sNotFound=non trouvé
set sTempFolder=Suppression Fichiers Temporaires
set sRegCleanQ=Voulez-vous nettoyer le registre ? ^(o/n^) 
set sRegClean=Nettoyage du registre
set sWininetQ=Corriger le fichier infect^‚ ? ^(o/n^) 
set sTrustQ=R^‚initialiser la liste des sites de confiance et sensibles ? ^(o/n^) 
set sTrustBackUp=Copie de sauvegarde
set sTrustDone=Sites de confiance et sensibles effac^‚s.
set sTrustError=*** Erreur : zone.reg non trouv^‚ ***


echo.
echo.
echo             %fixname%                                    %fixvers%
echo.
echo.
echo.
echo             1. Recherche
echo             2. Nettoyage ^( mode sans echec recommand^‚ ^)
echo             3. Effacer les sites de confiance et sensibles
echo             4. V^‚rifier les Mises ^… jour
echo             5. Recherche et suppression d^‚tournement DNS
echo             L. Langue Anglaise
echo             Q. Quitter
echo.
echo.
echo                           Fermez tous les programmes
echo                      un red^‚marrage peut-^ˆtre n^‚cessaire
echo.
echo.
echo.
) else (
set sChoice=Enter your choice
set sScanDate=Scan done at
set sRunFrom=Run from
set sFSType=The filesystem type is
set SafeMWarn=Fix run in normal mode
set SafeMDisp=Fix run in safe mode
set sSearch=Scanning
set sFound=FOUND !
set sDel=Deleted
set sRen=Please, Reboot and Run SmitfraudFix option 2 once again.
set sInfect=infected !
set sInfect2=infected !
set KDMess=detected !
set sHOSTS=hosts file corrupted !
set RKScan=use a Rootkit scanner
set xpdxMess=xpdx detected, use a Rootkit scanner
set xpdtMess=xpdt detected, use a Rootkit scanner
set pe386Mess=pe386 detected, use a Rootkit scanner
set lzx32Mess=lzx32 detected, use a Rootkit scanner
set huy32Mess=huy32 detected, use a Rootkit scanner
set msguardMess=msguard detected, use a Rootkit scanner
set DNSHJ=Your computer may be victim of a DNS Hijack
set CleanDNS=Do you want to set your network to dynamic -DHCP- Server ?
set CancelDNS=Configuration canceled. Check your network settings.
set sWiniSearch=Scanning for wininet.dll backup
set sEnd=End
set sProcess=Killing process
set sError=Problem while deleting
set sNotFound=not found
set sTempFolder=Deleting Temp Files
set sRegCleanQ=Do you want to clean the registry ? ^(y/n^) 
set sRegClean=Registry Cleaning
set sWininetQ=Replace infected file ? ^(y/n^) 
set sTrustQ=Restore Trusted Zone ? ^(y/n^) 
set sTrustBackUp=Saving BackUp
set sTrustDone=Trusted Zone deleted.
set sTrustError=*** Error : zone.reg not found ***

echo.
echo.
echo             %fixname%                                    %fixvers%
echo.
echo.
echo.
echo                1. Search
echo                2. Clean ^(safe mode recommended^)
echo                3. Delete Trusted zone
echo                4. Check for updates
echo                5. Search and clean DNS Hijack
echo                L. French Language
echo                Q. Quit
echo.
echo.
echo                             Close all applications    
echo                              Computer may reboot                
echo.
echo.
echo.
)
set ChoixMenu=''
set /p ChoixMenu=%sChoice% (1,2,3,4,5,L,Q) : 
if '%ChoixMenu%'=='l' GOTO SwappL
if '%ChoixMenu%'=='L' GOTO SwappL
if '%ChoixMenu%'=='q' GOTO exit
if '%ChoixMenu%'=='Q' GOTO exit
if '%ChoixMenu%'=='1' GOTO search
if '%ChoixMenu%'=='2' GOTO fix
if '%ChoixMenu%'=='3' GOTO zonefix
if '%ChoixMenu%'=='4' GOTO update
if '%ChoixMenu%'=='5' GOTO DNSSearchFix
goto menu

:SwappL
if '%lang%'=='fra' (
set lang=int
) else (
set lang=fra
)
goto notice


:search
cls
echo %fixname% %fixvers%
echo %fixname% %fixvers%>%systemdrive%\rapport.txt
echo.
echo.>>%systemdrive%\rapport.txt
echo %sScanDate% %time%, %date%>>%systemdrive%\rapport.txt
for /f "Tokens=*" %%i in ('cd') do set CurDir=%%i
echo %sRunFrom% %CurDir%>>%systemdrive%\rapport.txt
IF ERRORLEVEL 1 (
echo %sRunFrom% >>%systemdrive%\rapport.txt
cd >>%systemdrive%\rapport.txt
)
for /f "Tokens=*" %%i in ('ver') do set Version=%%i
echo OS: %Version% - %OS%>>%systemdrive%\rapport.txt
echo %sFSType% %FSType%>>%systemdrive%\rapport.txt
if not defined safeboot_option echo %SafeMWarn%>>%systemdrive%\rapport.txt
if defined safeboot_option echo %SafeMDisp%>>%systemdrive%\rapport.txt




echo.>>%systemdrive%\rapport.txt
echo %sSearch% Process...
echo »»»»»»»»»»»»»»»»»»»»»»»» Process>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



echo Option Explicit>ProcessList.vbs
echo.>>ProcessList.vbs
echo Dim File>>ProcessList.vbs
echo Dim ObjFileSystem>>ProcessList.vbs
echo Dim ObjOutputFile>>ProcessList.vbs
echo Dim objWMIService>>ProcessList.vbs
echo Dim oproc>>ProcessList.vbs
echo Dim Var>>ProcessList.vbs
echo.>>ProcessList.vbs
echo File = "Process.txt">>ProcessList.vbs
echo.>>ProcessList.vbs
echo Set ObjFileSystem = CreateObject("Scripting.fileSystemObject")>>ProcessList.vbs
echo Set ObjOutputFile = ObjFileSystem.CreateTextFile(File, TRUE)>>ProcessList.vbs
echo.>>ProcessList.vbs
echo Set objWMIService = GetObject("winmgmts:\root\cimv2")>>ProcessList.vbs
echo Set oproc = objWMIService.ExecQuery("Select * from Win32_Process",,48)>>ProcessList.vbs
echo.>>ProcessList.vbs
echo For Each oproc In oproc>>ProcessList.vbs
echo 	Var = oproc.ExecutablePath>>ProcessList.vbs
echo 	if Var ^<^> "" then>>ProcessList.vbs
		echo ObjOutputFile.WriteLine(Var)>>ProcessList.vbs
echo    End If>>ProcessList.vbs
echo Next>>ProcessList.vbs
echo.>>ProcessList.vbs
echo ObjOutputFile.Close>>ProcessList.vbs
echo Set objFileSystem = Nothing>>ProcessList.vbs
echo Set oproc = Nothing>>ProcessList.vbs
echo Set objWMIService = Nothing>>ProcessList.vbs
echo.>>ProcessList.vbs
cscript //I //nologo ProcessList.vbs
del ProcessList.vbs
type Process.txt | find /v "cscript.exe" >>%systemdrive%\rapport.txt
del Process.txt









echo.>>%systemdrive%\rapport.txt
echo %sSearch% hosts...
echo »»»»»»»»»»»»»»»»»»»»»»»» hosts>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt





if exist tmp.txt del tmp.txt
if exist tmp2.txt del tmp2.txt








type %syspath%\drivers\etc\hosts | find /i "arovax.com">tmp.txt
type %syspath%\drivers\etc\hosts | find /i "bleepingcomputer.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "boskak.za.net">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "bullguard.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "castlecops.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "compu-docs.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "computing.net">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "dell.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "depannetonpc.net">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "digitaltrends.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "ewido.net">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "geekstogo.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "greyknight17.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "idg.pl">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "infos-du-net.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "innovative-sol.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "lavasoftsupport.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "lockergnome.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "majorgeeks.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "microsoft.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "mytechsupport.ca">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "pandasoftware.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "prevx.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "siri.urz.free.fr">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "spybot.info">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "stevengould.org">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "sunbelt-software.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "spywareinfo.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "spywareinfo.dk">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "superantispyware.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "techguy.org">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "techsupportforum.com">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "tomcoyote.org">>tmp.txt
type %syspath%\drivers\etc\hosts | find /i "wilderssecurity.com">>tmp.txt

for /f "tokens=* delims=" %%a in (tmp.txt) do echo %%a>tmp2.txt
if exist tmp2.txt goto ScanHosts_Found
goto ScanHosts_End

:ScanHosts_Found
echo %sHOSTS%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
type tmp.txt>>%systemdrive%\rapport.txt

:ScanHosts_End
if exist tmp.txt del tmp.txt
if exist tmp2.txt del tmp2.txt






echo.>>%systemdrive%\rapport.txt
echo %sSearch% %HOMEDRIVE%\...
echo »»»»»»»»»»»»»»»»»»»»»»»» %HOMEDRIVE%\>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



pushd %HOMEDRIVE%\

if exist bsw.exe (echo %HOMEDRIVE%\bsw.exe %sFound%>>%systemdrive%\rapport.txt)
if exist config.sy_ (echo %HOMEDRIVE%\config.sy_ %sFound%>>%systemdrive%\rapport.txt)
if exist contextplus.exe (echo %HOMEDRIVE%\contextplus.exe %sFound%>>%systemdrive%\rapport.txt)
if exist country.exe (echo %HOMEDRIVE%\country.exe %sFound%>>%systemdrive%\rapport.txt)
if exist defender??.exe (echo %HOMEDRIVE%\defender??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dfndr.exe (echo %HOMEDRIVE%\dfndr.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dfndra.exe (echo %HOMEDRIVE%\dfndra.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dfndr?_?.exe (echo %HOMEDRIVE%\dfndr?_?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist drsmartload?.exe (echo %HOMEDRIVE%\drsmartload?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist drsmartload??.exe (echo %HOMEDRIVE%\drsmartload??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist drsmartload???.exe (echo %HOMEDRIVE%\drsmartload???.exe %sFound%>>%systemdrive%\rapport.txt)
if exist drsmartload????.exe (echo %HOMEDRIVE%\drsmartload????.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ecsiin.stub.exe (echo %HOMEDRIVE%\ecsiin.stub.exe %sFound%>>%systemdrive%\rapport.txt)
if exist exit (echo %HOMEDRIVE%\exit %sFound%>>%systemdrive%\rapport.txt) 
if exist gimmysmileys.exe (echo %HOMEDRIVE%\gimmysmileys.exe %sFound%>>%systemdrive%\rapport.txt)
if exist gimmysmileys?.exe (echo %HOMEDRIVE%\gimmysmileys?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard.exe (echo %HOMEDRIVE%\keyboard.exe %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard?.exe (echo %HOMEDRIVE%\keyboard?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard??.exe (echo %HOMEDRIVE%\keyboard??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kl1.exe (echo %HOMEDRIVE%\kl1.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kybrd.exe (echo %HOMEDRIVE%\kybrd.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kybrd_?.exe (echo %HOMEDRIVE%\kybrd_?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kybrd?_?.exe (echo %HOMEDRIVE%\kybrd?_?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist loader.exe (echo %HOMEDRIVE%\loader.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad.exe (echo %HOMEDRIVE%\mousepad.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad?.exe (echo %HOMEDRIVE%\mousepad?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad??.exe (echo %HOMEDRIVE%\mousepad??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist MTE3NDI6ODoxNg.exe (echo %HOMEDRIVE%\MTE3NDI6ODoxNg.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nwnm.exe (echo %HOMEDRIVE%\nwnm.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nwnm_?.exe (echo %HOMEDRIVE%\nwnm_?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nwnm?_?.exe (echo %HOMEDRIVE%\nwnm?_?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist newname?.exe (echo %HOMEDRIVE%\newname?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist newname??.exe (echo %HOMEDRIVE%\newname??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ntdetecd.exe (echo %HOMEDRIVE%\ntdetecd.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ntps.exe (echo %HOMEDRIVE%\ntps.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ntnc.exe (echo %HOMEDRIVE%\ntnc.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ms1.exe (echo %HOMEDRIVE%\ms1.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist r.exe (echo %HOMEDRIVE%\r.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist secure32.html (echo %HOMEDRIVE%\secure32.html %sFound%>>%systemdrive%\rapport.txt)
if exist stub_113_4_0_4_0.exe (echo %HOMEDRIVE%\stub_113_4_0_4_0.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist tool1.exe (echo %HOMEDRIVE%\tool1.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool2.exe (echo %HOMEDRIVE%\tool2.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool3.exe (echo %HOMEDRIVE%\tool3.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool4.exe (echo %HOMEDRIVE%\tool4.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool5.exe (echo %HOMEDRIVE%\tool5.exe %sFound%>>%systemdrive%\rapport.txt)
if exist toolbar.exe (echo %HOMEDRIVE%\toolbar.exe %sFound%>>%systemdrive%\rapport.txt)
if exist uniq (echo %HOMEDRIVE%\uniq %sFound%>>%systemdrive%\rapport.txt) 
if exist winstall.exe (echo %HOMEDRIVE%\winstall.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist wp.bmp (echo %HOMEDRIVE%\wp.bmp %sFound%>>%systemdrive%\rapport.txt) 
if exist wp.exe (echo %HOMEDRIVE%\wp.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist xxx.exe (echo %HOMEDRIVE%\xxx.exe %sFound%>>%systemdrive%\rapport.txt) 

if exist "%HOMEDRIVE%\spywarevanisher-free" echo %HOMEDRIVE%\spywarevanisher-free\ %sFound%>>%systemdrive%\rapport.txt

popd



echo.>>%systemdrive%\rapport.txt
echo %sSearch% %windir%\...
echo »»»»»»»»»»»»»»»»»»»»»»»» %windir%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



pushd %windir%

if exist ".protected" (echo %windir%\.protected %sFound%>>%systemdrive%\rapport.txt) 
if exist aapfr.exe (echo %windir%\aapfr.exe %sFound%>>%systemdrive%\rapport.txt)
if exist accesss.exe (echo %windir%\accesss.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ads.js (echo %windir%\ads.js %sFound%>>%systemdrive%\rapport.txt) 
if exist adsldpbc.dll (echo %windir%\adsldpbc.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist adsldpbd.dll (echo %windir%\adsldpbd.dll %sFound%>>%systemdrive%\rapport.txt)
if exist adsldpbe.dll (echo %windir%\adsldpbe.dll %sFound%>>%systemdrive%\rapport.txt)
if exist adsldpbf.dll (echo %windir%\adsldpbf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist adsldpbj.dll (echo %windir%\adsldpbj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist adtech2005.exe (echo %windir%\adtech2005.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist adtech2006a.exe (echo %windir%\adtech2006a.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist adw.htm (echo %windir%\adw.htm %sFound%>>%systemdrive%\rapport.txt) 
if exist "adware-sheriff-box.gif" (echo %windir%\adware-sheriff-box.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "adware-sheriff-header.gif" (echo %windir%\adware-sheriff-header.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist alexaie.dll (echo %windir%\alexaie.dll %sFound%>>%systemdrive%\rapport.txt)
if exist alxie328.dll (echo %windir%\alxie328.dll %sFound%>>%systemdrive%\rapport.txt)
if exist alxtb1.dll (echo %windir%\alxtb1.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "antispylab-logo.gif" (echo %windir%\antispylab-logo.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist about_spyware_bg.gif (echo %windir%\about_spyware_bg.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist about_spyware_bottom.gif (echo %windir%\about_spyware_bottom.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist as.gif (echo %windir%\as.gif %sFound%>>%systemdrive%\rapport.txt)
if exist as_header.gif (echo %windir%\as_header.gif %sFound%>>%systemdrive%\rapport.txt)
if exist astctl32.ocx (echo %windir%\astctl32.ocx %sFound%>>%systemdrive%\rapport.txt)
if exist avp.exe (echo %windir%\avp.exe %sFound%>>%systemdrive%\rapport.txt)
if exist avpcc.dll (echo %windir%\avpcc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist azesearch.bmp (echo %windir%\azesearch.bmp %sFound%>>%systemdrive%\rapport.txt) 
if exist back.gif (echo %windir%\back.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist bandserv.dll (echo %windir%\bandserv.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist batserv2.exe (echo %windir%\batserv2.exe %sFound%>>%systemdrive%\rapport.txt)
if exist bg.gif (echo %windir%\bg.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist bg_bg.gif (echo %windir%\bg_bg.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist big_red_x.gif (echo %windir%\big_red_x.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist blank.mht (echo %windir%\blank.mht %sFound%>>%systemdrive%\rapport.txt)
if exist "blue-bg.gif" (echo %windir%\blue-bg.gif %sFound%>>%systemdrive%\rapport.txt)
if exist box_1.gif (echo %windir%\box_1.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist box_2.gif (echo %windir%\box_2.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist box_3.gif (echo %windir%\box_3.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist browsers.dll (echo %windir%\browsers.dll %sFound%>>%systemdrive%\rapport.txt)
if exist BTGrab.dll (echo %windir%\BTGrab.dll %sFound%>>%systemdrive%\rapport.txt)
if exist button_buynow.gif (echo %windir%\button_buynow.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist button_freescan.gif (echo %windir%\button_freescan.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist buy.gif (echo %windir%\buy.gif %sFound%>>%systemdrive%\rapport.txt)
if exist buy_now.gif (echo %windir%\buy_now.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "buy-now-btn.gif" (echo %windir%\buy-now-btn.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist bxproxy.exe (echo %windir%\bxproxy.exe %sFound%>>%systemdrive%\rapport.txt)
if exist click_for_free_scan.gif (echo %windir%\click_for_free_scan.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist close_ico.gif (echo %windir%\close_ico.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "close-bar.gif" (echo %windir%\close-bar.gif %sFound%>>%systemdrive%\rapport.txt)
if exist clrssn.exe (echo %windir%\clrssn.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "corner-left.gif" (echo %windir%\corner-left.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "corner-right.gif" (echo %windir%\corner-right.gif %sFound%>>%systemdrive%\rapport.txt)
if exist country.exe (echo %windir%\country.exe %sFound%>>%systemdrive%\rapport.txt)
if exist cpan.dll (echo %windir%\cpan.dll %sFound%>>%systemdrive%\rapport.txt)
if exist d3dn32.exe (echo %windir%\d3dn32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist d3??.dll (echo %windir%\d3??.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist d3pb.exe (echo %windir%\d3pb.exe %sFound%>>%systemdrive%\rapport.txt)
if exist defender??.exe (echo %windir%\defender??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist desktop.html (echo %windir%\desktop.html %sFound%>>%systemdrive%\rapport.txt) 
if exist ddesupport.dll (echo %windir%\ddesupport.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dialup.exe (echo %windir%\dialup.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dxdiag.dll (echo %windir%\dxdiag.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dlmax.dll (echo %windir%\dlmax.dll %sFound%>>%systemdrive%\rapport.txt)
if exist download.gif (echo %windir%\download.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist download_box.gif (echo %windir%\download_box.gif %sFound%>>%systemdrive%\rapport.txt)
if exist download_product.gif (echo %windir%\download_product.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "download-btn.gif" (echo %windir%\download-btn.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist dr.exe (echo %windir%\dr.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist drsmartload.dat (echo %windir%\drsmartload.dat %sFound%>>%systemdrive%\rapport.txt)
if exist drsmartload2.dat (echo %windir%\drsmartload2.dat %sFound%>>%systemdrive%\rapport.txt) 
if exist drsmartload95a.exe (echo %windir%\drsmartload95a.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist drsmartloadb1.dat (echo %windir%\drsmartloadb1.dat %sFound%>>%systemdrive%\rapport.txt) 
if exist duocore.dll (echo %windir%\duocore.dll %sFound%>>%systemdrive%\rapport.txt)
if exist expro.dll (echo %windir%\expro.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "facts.gif" (echo %windir%\facts.gif %sFound%>>%systemdrive%\rapport.txt)
if exist features.gif (echo %windir%\features.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "footer.gif" (echo %windir%\footer.giff %sFound%>>%systemdrive%\rapport.txt)
if exist footer_back.gif (echo %windir%\footer_back.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist footer_back.jpg (echo %windir%\footer_back.jpg %sFound%>>%systemdrive%\rapport.txt) 
if exist free_scan_red_btn.gif (echo %windir%\free_scan_red_btn.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "free-scan-btn.gif" (echo %windir%\free-scan-btn.gif %sFound%>>%systemdrive%\rapport.txt)
if exist gimmygames.dat (echo %windir%\gimmygames.dat %sFound%>>%systemdrive%\rapport.txt)
if exist "h-line-gradient.gif" (echo %windir%\h-line-gradient.gif %sFound%>>%systemdrive%\rapport.txt)
if exist header_1.gif (echo %windir%\header_1.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist header_2.gif (echo %windir%\header_2.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist header_3.gif (echo %windir%\header_3.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist header_4.gif (echo %windir%\header_4.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "header-bg.gif" (echo %windir%\header-bg.gif %sFound%>>%systemdrive%\rapport.txt)
if exist icon_warning_big.gif (echo %windir%\icon_warning_big.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist icont.exe (echo %windir%\icont.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist iebrowser.dll (echo %windir%\iebrowser.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iecontext.dll (echo %windir%\iecontext.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iedebug.dll (echo %windir%\iedebug.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iedns.dll (echo %windir%\iedns.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iedrives.dll (echo %windir%\iedrives.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iedrv.exe (echo %windir%\iedrv.exe %sFound%>>%systemdrive%\rapport.txt)
if exist iedrvctrl.exe (echo %windir%\iedrvctrl.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ielocales.dll (echo %windir%\ielocales.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ieproxy.dll (echo %windir%\ieproxy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iereport.dll (echo %windir%\iereport.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iesettings.dll (echo %windir%\iesettings.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iesupport.dll (echo %windir%\iesupport.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iexploree.dll (echo %windir%\iexploree.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iexplorer.exe (echo %windir%\iexplorer.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ieyi.dll (echo %windir%\ieyi.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ieyi.exe (echo %windir%\ieyi.exe %sFound%>>%systemdrive%\rapport.txt)
if exist inetdctr.dll (echo %windir%\inetdctr.dll %sFound%>>%systemdrive%\rapport.txt)
if exist inetloader.dll (echo %windir%\inetloader.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "infected.gif" (echo %windir%\infected.gif %sFound%>>%systemdrive%\rapport.txt)
if exist infected_top_bg.gif (echo %windir%\infected_top_bg.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist "info.gif" (echo %windir%\info.gif %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard.exe (echo %windir%\keyboard.exe %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard?.exe (echo %windir%\keyboard?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard1.dat (echo %windir%\keyboard1.dat %sFound%>>%systemdrive%\rapport.txt)
if exist keyboard??.exe (echo %windir%\keyboard??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kl.exe (echo %windir%\kl.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist kl1.exe (echo %windir%\kl1.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist loader.exe (echo %windir%\loader.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist loadadv728.exe (echo %windir%\loadadv728.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist local.html (echo %windir%\local.html %sFound%>>%systemdrive%\rapport.txt)
if exist logo.gif (echo %windir%\logo.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist main_back.gif (echo %windir%\main_back.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist main_uninstaller.exe (echo %windir%\main_uninstaller.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mgrs.exe (echo %windir%\mgrs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad.exe (echo %windir%\mousepad.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad?.exe (echo %windir%\mousepad?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mousepad??.exe (echo %windir%\mousepad??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msddx.dll (echo %windir%\msddx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msdn.dll (echo %windir%\msdn.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msdns.dll (echo %windir%\msdns.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msdn32.dll (echo %windir%\msdn32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msdrv.exe (echo %windir%\msdrv.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msdrvctrl.exe (echo %windir%\msdrvctrl.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msie.dll (echo %windir%\msie.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mslog.exe (echo %windir%\mslog.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msole.dll (echo %windir%\msole.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msdde.dll (echo %windir%\msdde.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msmdev.dll (echo %windir%\msmdev.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msmhost.dll (echo %windir%\msmhost.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msqnx.dll (echo %windir%\msqnx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mssmart.dll (echo %windir%\mssmart.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mtwirl32.dll (echo %windir%\mtwirl32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mxd.exe (echo %windir%\mxd.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mxduo.dll (echo %windir%\mxduo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist navibar_bg.gif (echo %windir%\navibar_bg.gif %sFound%>>%systemdrive%\rapport.txt)
if exist navibar_corner_left.gif (echo %windir%\navibar_corner_left.gif %sFound%>>%systemdrive%\rapport.txt)
if exist navibar_corner_right.gif (echo %windir%\navibar_corner_right.gif %sFound%>>%systemdrive%\rapport.txt)
if exist newname.dat (echo %windir%\newname.dat %sFound%>>%systemdrive%\rapport.txt)
if exist newname?.exe (echo %windir%\newname?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist newname??.exe (echo %windir%\newname??.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ms1.exe (echo %windir%\ms1.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist "no-icon.gif" (echo %windir%\no-icon.gif %sFound%>>%systemdrive%\rapport.txt)
if exist notepad.com (echo %windir%\notepad.com %sFound%>>%systemdrive%\rapport.txt)
if exist notepad32.exe (echo %windir%\notepad32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nsduo.dll (echo %windir%\nsduo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist onlineshopping.ico (echo %windir%\onlineshopping.ico %sFound%>>%systemdrive%\rapport.txt) 
if exist olehelp.exe (echo %windir%\olehelp.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist osaupd.exe (echo %windir%\osaupd.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ossmart.dll (echo %windir%\ossmart.dll %sFound%>>%systemdrive%\rapport.txt)
if exist policies.dll (echo %windir%\policies.dll %sFound%>>%systemdrive%\rapport.txt)
if exist policyverifier.exe (echo %windir%\policyverifier.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist pop06ap2.exe (echo %windir%\pop06ap2.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist popuper.exe (echo %windir%\popuper.exe %sFound%>>%systemdrive%\rapport.txt)
if exist privacy_danger (echo %windir%\privacy_danger %sFound%>>%systemdrive%\rapport.txt)
if exist processes.txt (echo %windir%\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist product_box.gif (echo %windir%\product_box.gif %sFound%>>%systemdrive%\rapport.txt)
if exist psg.exe (echo %windir%\psg.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist pssms.dll (echo %windir%\pssms.dll %sFound%>>%systemdrive%\rapport.txt)
if exist Pynix.dll (echo %windir%\Pynix.dll %sFound%>>%systemdrive%\rapport.txt)
if exist qnxplugin.dll (echo %windir%\qnxplugin.dll %sFound%>>%systemdrive%\rapport.txt)
if exist q*_disk.dll (echo %windir%\q*_disk.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist red_warning_ico.gif (echo %windir%\red_warning_ico.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "reg-freeze-box.gif" (echo %windir%\reg-freeze-box.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "reg-freeze-header.gif" (echo %windir%\reg-freeze-header.gif %sFound%>>%systemdrive%\rapport.txt)
if exist remove_spyware_header.gif (echo %windir%\remove_spyware_header.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "remove-spyware-btn.gif" (echo %windir%\remove-spyware-btn.gif %sFound%>>%systemdrive%\rapport.txt)
if exist removeadware.ico (echo %windir%\removeadware.ico %sFound%>>%systemdrive%\rapport.txt)
if exist rf.gif (echo %windir%\rf.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist rf_header.gif (echo %windir%\rf_header.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist rzs.exe (echo %windir%\rzs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist runwin32.exe (echo %windir%\runwin32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist sachostx.exe (echo %windir%\sachostx.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist safe_and_trusted.gif (echo %windir%\safe_and_trusted.gif %sFound%>>%systemdrive%\rapport.txt)
if exist scan_btn.gif (echo %windir%\scan_btn.gif %sFound%>>%systemdrive%\rapport.txt) 
if exist sconf32.dll (echo %windir%\sconf32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist screen.html (echo %windir%\screen.html %sFound%>>%systemdrive%\rapport.txt) 
if exist se_spoof.dll (echo %windir%\se_spoof.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist sec.exe (echo %windir%\sec.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist "security-center-bg.gif" (echo %windir%\security-center-bg.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "security-center-logo.gif" (echo %windir%\security-center-logo.gif %sFound%>>%systemdrive%\rapport.txt)
if exist security_center_caption.gif (echo %windir%\security_center_caption.gif %sFound%>>%systemdrive%\rapport.txt)
if exist sep_hor.gif (echo %windir%\sep_hor.gif %sFound%>>%systemdrive%\rapport.txt)
if exist sep_vert.gif (echo %windir%\sep_vert.gif %sFound%>>%systemdrive%\rapport.txt)
if exist service.dll (echo %windir%\service.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist sexpersonals.ico (echo %windir%\sexpersonals.ico %sFound%>>%systemdrive%\rapport.txt)
if exist sdkcb.dll (echo %windir%\sdkcb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sdkqq.exe (echo %windir%\sdkqq.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist secure32.html (echo %windir%\secure32.html %sFound%>>%systemdrive%\rapport.txt)
if exist shell.exe (echo %windir%\shell.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sites.ini (echo %windir%\sites.ini %sFound%>>%systemdrive%\rapport.txt) 
if exist slassac.dll (echo %windir%\slassac.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sounddrv.dll (echo %windir%\sounddrv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist soundplugin.dll (echo %windir%\soundplugin.dll %sFound%>>%systemdrive%\rapport.txt)
if exist spp3.dll (echo %windir%\spp3.dll %sFound%>>%systemdrive%\rapport.txt)
if exist spacer.gif (echo %windir%\spacer.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "spacer.gif'" (echo %windir%\spacer.gif' %sFound%>>%systemdrive%\rapport.txt)
if exist spyware_detected.gif (echo %windir%\spyware_detected.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "spyware-detected.gif" (echo %windir%\spyware-detected.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "spyware-sheriff-header.gif" (echo %windir%\spyware-sheriff-header.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "spyware-sheriff-box.gif" (echo %windir%\spyware-sheriff-box.gif %sFound%>>%systemdrive%\rapport.txt)
if exist sss_main.ini (echo %windir%\sss_main.ini %sFound%>>%systemdrive%\rapport.txt) 
if exist "star.gif" (echo %windir%\star.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "star-grey.gif" (echo %windir%\star-grey.gif %sFound%>>%systemdrive%\rapport.txt)
if exist star_gray.gif (echo %windir%\star_gray.gif %sFound%>>%systemdrive%\rapport.txt)
if exist star_gray_small.gif (echo %windir%\star_gray_small.gif %sFound%>>%systemdrive%\rapport.txt)
if exist star_small.gif (echo %windir%\star_small.gif %sFound%>>%systemdrive%\rapport.txt)
if exist susp.exe (echo %windir%\susp.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist svchost.exe (echo %windir%\svchost.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist sysen.exe (echo %windir%\sysen.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist sysvx_.exe (echo %windir%\sysvx_.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist sysldr32.exe (echo %windir%\sysldr32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist systeem.exe (echo %windir%\systeem.exe %sFound%>>%systemdrive%\rapport.txt)
if exist System32fab.exe (echo %windir%\System32fab.exe %sFound%>>%systemdrive%\rapport.txt)
if exist systemcritical.exe (echo %windir%\systemcritical.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tctool.exe (echo %windir%\tctool.exe %sFound%>>%systemdrive%\rapport.txt)
if exist teller2.chk (echo %windir%\teller2.chk %sFound%>>%systemdrive%\rapport.txt) 
if exist temp.000.exe (echo %windir%\temp.000.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ticads.exe (echo %windir%\ticads.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist time.exe (echo %windir%\time.exe %sFound%>>%systemdrive%\rapport.txt)
if exist timessquare.exe (echo %windir%\timessquare.exe %sFound%>>%systemdrive%\rapport.txt)
if exist timessquare1.dat (echo %windir%\timessquare1.dat %sFound%>>%systemdrive%\rapport.txt) 
if exist tlhelp.dll (echo %windir%\tlhelp.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tlhelper.dll (echo %windir%\tlhelper.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tool1.exe (echo %windir%\tool1.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool2.exe (echo %windir%\tool2.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool3.exe (echo %windir%\tool3.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool4.exe (echo %windir%\tool4.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tool5.exe (echo %windir%\tool5.exe %sFound%>>%systemdrive%\rapport.txt)
if exist toolbar.exe (echo %windir%\toolbar.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tpopup.exe (echo %windir%\tpopup.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist "true-stories.gif" (echo %windir%\true-stories.gif %sFound%>>%systemdrive%\rapport.txt)
if exist trustinbar.exe (echo %windir%\trustinbar.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ts.gif (echo %windir%\ts.gif %sFound%>>%systemdrive%\rapport.txt)
if exist ts_header.gif (echo %windir%\ts_header.gif %sFound%>>%systemdrive%\rapport.txt)
if exist tse.exe (echo %windir%\tse.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist uninstDsk.exe (echo %windir%\uninstDsk.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist uninstIU.exe (echo %windir%\uninstIU.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist update13.js (echo %windir%\update13.js %sFound%>>%systemdrive%\rapport.txt)
if exist url.exe (echo %windir%\url.exe %sFound%>>%systemdrive%\rapport.txt)
if exist user32.exe (echo %windir%\user32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist users32.exe (echo %windir%\users32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist v.gif (echo %windir%\v.gif %sFound%>>%systemdrive%\rapport.txt)
if exist videoslots.ico (echo %windir%\videoslots.ico %sFound%>>%systemdrive%\rapport.txt)
if exist vpnconfig.dll (echo %windir%\vpnconfig.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist vpsnetwork.dll (echo %windir%\vpsnetwork.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vpssup.dll (echo %windir%\vpssup.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vsmart.dll (echo %windir%\vsmart.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist waol.exe (echo %windir%\waol.exe %sFound%>>%systemdrive%\rapport.txt)
if exist warnhp.html (echo %windir%\warnhp.html %sFound%>>%systemdrive%\rapport.txt)
if exist warning_icon.gif (echo %windir%\warning_icon.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "warning-bar-ico.gif" (echo %windir%\warning-bar-ico.gif %sFound%>>%systemdrive%\rapport.txt)
if exist win_logo.gif (echo %windir%\win_logo.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "win-sec-center-logo.gif" (echo %windir%\win-sec-center-logo.gif %sFound%>>%systemdrive%\rapport.txt)
if exist win32e.exe (echo %windir%\win32e.exe %sFound%>>%systemdrive%\rapport.txt)
if exist win64.exe (echo %windir%\win64.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winajbm.dll (echo %windir%\winajbm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wincom27.dll (echo %windir%\wincom27.dll %sFound%>>%systemdrive%\rapport.txt)
if exist window.exe (echo %windir%\window.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "windows-compatible.gif" (echo %windir%\windows-compatible.gif %sFound%>>%systemdrive%\rapport.txt)
if exist wininet32.exe (echo %windir%\wininet32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winmgnt.exe (echo %windir%\winmgnt.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winsysupd.exe (echo %windir%\winsysupd.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist winsysban.exe (echo %windir%\winsysban.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist winsysban8.exe (echo %windir%\winsysban8.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist windows.html (echo %windir%\windows.html %sFound%>>%systemdrive%\rapport.txt)
if exist wmpconf.dll (echo %windir%\wmpconf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wmpdev.dll (echo %windir%\wmpdev.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wmpenv.dll (echo %windir%\wmpenv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wmphost.dll (echo %windir%\wmphost.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wmplayer.dll (echo %windir%\wmplayer.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wmsound.dll (echo %windir%\wmsound.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wow.dll (echo %windir%\wow.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wowsupport.dll (echo %windir%\wowsupport.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wupdmgr.exe (echo %windir%\wupdmgr.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist x.exe (echo %windir%\x.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist x.gif (echo %windir%\x.gif %sFound%>>%systemdrive%\rapport.txt)
if exist xplugin.dll (echo %windir%\xplugin.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xvideo.dll (echo %windir%\xvideo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xpupdate.exe (echo %windir%\xpupdate.exe %sFound%>>%systemdrive%\rapport.txt)
if exist xxxvideo.hta (echo %windir%\xxxvideo.hta %sFound%>>%systemdrive%\rapport.txt)
if exist y.exe (echo %windir%\y.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist yellow_warning_ico.gif (echo %windir%\yellow_warning_ico.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "yes-icon.gif" (echo %windir%\yes-icon.gif %sFound%>>%systemdrive%\rapport.txt)
if exist "yod.htm" (echo %windir%\yod.htm %sFound%>>%systemdrive%\rapport.txt)
if exist zloader3.exe (echo %windir%\zloader3.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ZServ.dll (echo %windir%\ZServ.dll %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__popuper.exe (echo %windir%\__delete_on_reboot__popuper.exe %sFound%>>%systemdrive%\rapport.txt)

if exist "%windir%\muwq" echo %windir%\muwq\ %sFound%>>%systemdrive%\rapport.txt

if exist "%windir%\inet20001" echo %windir%\inet20001\ %sFound%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20010" echo %windir%\inet20010\ %sFound%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20066" echo %windir%\inet20066\ %sFound%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20099" echo %windir%\inet20099\ %sFound%>>%systemdrive%\rapport.txt

if exist "%windir%\Tasks\At?.job" echo %windir%\Tasks\At?.job %sFound%>>%systemdrive%\rapport.txt
if exist "%windir%\Tasks\At??.job" echo %windir%\Tasks\At??.job %sFound%>>%systemdrive%\rapport.txt

popd






echo.>>%systemdrive%\rapport.txt
echo %sSearch% %windir%\system...
echo »»»»»»»»»»»»»»»»»»»»»»»» %windir%\system>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



pushd %windir%\system

if exist csrss.exe (echo %windir%\system\csrss.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist eooyt.exe (echo %windir%\system\eooyt.exe %sFound%>>%systemdrive%\rapport.txt)
if exist processes.txt (echo %windir%\system\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist svchost.exe (echo %windir%\system\svchost.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist svchost.dll (echo %windir%\system\svchost.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist svwhost.exe (echo %windir%\system\svwhost.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist svwhost.dll (echo %windir%\system\svwhost.dll %sFound%>>%systemdrive%\rapport.txt) 

popd




echo.>>%systemdrive%\rapport.txt
echo %sSearch% %windir%\Web...
echo »»»»»»»»»»»»»»»»»»»»»»»» %windir%\Web>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



pushd %windir%\Web

if exist desktop.html (echo %windir%\Web\desktop.html %sFound%>>%systemdrive%\rapport.txt) 
if exist wallpaper.html (echo %windir%\Web\wallpaper.html %sFound%>>%systemdrive%\rapport.txt) 

popd



echo.>>%systemdrive%\rapport.txt
echo %sSearch% %syspath%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %syspath%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



pushd %syspath%

if exist ~update.exe (echo %syspath%\~update.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist 0mcamcap.exe (echo %syspath%\0mcamcap.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist 977efcdb.exe (echo %syspath%\977efcdb.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist a.exe (echo %syspath%\a.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ace16win.dll (echo %syspath%\ace16win.dll %sFound%>>%systemdrive%\rapport.txt)
if exist acvgxw.dll (echo %syspath%\acvgxw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist adobepnl.dll (echo %syspath%\adobepnl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Air Tickets.ico" (echo %syspath%\Air Tickets.ico %sFound%>>%systemdrive%\rapport.txt)
if exist AdService.dll (echo %syspath%\AdService.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist adsmart.exe (echo %syspath%\adsmart.exe %sFound%>>%systemdrive%\rapport.txt)
if exist afkvvy.dll (echo %syspath%\afkvvy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist afqgda.exe (echo %syspath%\afqgda.exe %sFound%>>%systemdrive%\rapport.txt)
if exist afzdbl.dll (echo %syspath%\afzdbl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist alxres.dll (echo %syspath%\alxres.dll %sFound%>>%systemdrive%\rapport.txt)
if exist anti_troj.exe (echo %syspath%\anti_troj.exe %sFound%>>%systemdrive%\rapport.txt)
if exist AntiSpy.exe (echo %syspath%\AntiSpy.exe %sFound%>>%systemdrive%\rapport.txt)
if exist antzozc.dll (echo %syspath%\antzozc.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist appmagr.dll (echo %syspath%\appmagr.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist asxbbx.dll (echo %syspath%\asxbbx.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist atmclk.exe (echo %syspath%\atmclk.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist atzrdada.exe (echo %syspath%\atzrdada.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist autodisc32.dll (echo %syspath%\autodisc32.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist autosys.exe (echo %syspath%\autosys.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist axlet.dll (echo %syspath%\axlet.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bhoimpl.dll (echo %syspath%\bhoimpl.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bhoSearchSpy.dll (echo %syspath%\bhoSearchSpy.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bikini.exe (echo %syspath%\bikini.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist bin29a.log (echo %syspath%\bin29a.log %sFound%>>%systemdrive%\rapport.txt)
if exist "Big Tits.ico" (echo %syspath%\Big Tits.ico %sFound%>>%systemdrive%\rapport.txt)
if exist birdihuy.dll (echo %syspath%\birdihuy.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist birdihuy32.dll (echo %syspath%\birdihuy32.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist Blackjack.ico (echo %syspath%\Blackjack.ico %sFound%>>%systemdrive%\rapport.txt)
if exist bnmsrv.exe (echo %syspath%\bnmsrv.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist bolnyz.dll (echo %syspath%\bolnyz.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bre.dll (echo %syspath%\bre.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bre32.dll (echo %syspath%\bre32.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bridge.dll (echo %syspath%\bridge.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist bpvcou.dll (echo %syspath%\bpvcou.dll %sFound%>>%systemdrive%\rapport.txt)
if exist browsela.dll (echo %syspath%\browsela.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Britney Spears.ico" (echo %syspath%\Britney Spears.ico %sFound%>>%systemdrive%\rapport.txt)
if exist bu.exe (echo %syspath%\bu.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist "Car Insurance.ico" (echo %syspath%\Car Insurance.ico %sFound%>>%systemdrive%\rapport.txt)
if exist casino.ico (echo %syspath%\casino.ico %sFound%>>%systemdrive%\rapport.txt)
if exist ccyszwl.dll (echo %syspath%\ccyszwl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist cdwvhbf.dll (echo %syspath%\cdwvhbf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist cefrjsh.dll (echo %syspath%\cefrjsh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist cfltygd.dll (echo %syspath%\cfltygd.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Cheap Cigarettes.ico" (echo %syspath%\Cheap Cigarettes.ico %sFound%>>%systemdrive%\rapport.txt)
if exist child.dll (echo %syspath%\child.dll %sFound%>>%systemdrive%\rapport.txt)
if exist chp.dll (echo %syspath%\chp.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist cmd32.exe (echo %syspath%\cmd32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist cmdtel.exe (echo %syspath%\cmdtel.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ckimzeb.dll (echo %syspath%\ckimzeb.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist cnymxw32.dll (echo %syspath%\cnymxw32.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist combo.exe (echo %syspath%\combo.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist comdlg64.dll (echo %syspath%\comdlg64.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist cqsfk.dll (echo %syspath%\cqsfk.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist ctpmon.exe (echo %syspath%\ctpmon.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist "Credit Card.ico" (echo %syspath%\Credit Card.ico %sFound%>>%systemdrive%\rapport.txt)
if exist Cruises.ico (echo %syspath%\Cruises.ico %sFound%>>%systemdrive%\rapport.txt)
if exist cthkpcv.dll (echo %syspath%\cthkpcv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Currency Trading.ico" (echo %syspath%\Currency Trading.ico %sFound%>>%systemdrive%\rapport.txt)
if exist cvnzie.dll (echo %syspath%\cvnzie.dll %sFound%>>%systemdrive%\rapport.txt)
if exist cvxh8jkdq?.exe (echo %syspath%\cvxh8jkdq?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist cwgppb.dll (echo %syspath%\cwgppb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist CWS_iestart.exe (echo %syspath%\CWS_iestart.exe %sFound%>>%systemdrive%\rapport.txt)
if exist czxtyx.dll (echo %syspath%\czxtyx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist date.ico (echo %syspath%\date.ico %sFound%>>%systemdrive%\rapport.txt)
if exist dailytoolbar.dll (echo %syspath%\dailytoolbar.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dbqlrij.dll (echo %syspath%\dbqlrij.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dcom_14.dll (echo %syspath%\dcom_14.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_15.dll (echo %syspath%\dcom_15.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_16.dll (echo %syspath%\dcom_16.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_18.dll (echo %syspath%\dcom_18.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_19.dll (echo %syspath%\dcom_19.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_20.dll (echo %syspath%\dcom_20.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcom_21.dll (echo %syspath%\dcom_21.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dcomcfg.exe (echo %syspath%\dcomcfg.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist dcvwaah.dll (echo %syspath%\dcvwaah.dll %sFound%>>%systemdrive%\rapport.txt)
if exist Delete_Me_Dummy_hadjajr.ini (echo %syspath%\Delete_Me_Dummy_hadjajr.ini %sFound%>>%systemdrive%\rapport.txt)
if exist Delete_Me_Dummy_hanonvt.ini (echo %syspath%\Delete_Me_Dummy_hanonvt.ini %sFound%>>%systemdrive%\rapport.txt)
if exist Delete_Me_Dummy_hrum.txt (echo %syspath%\Delete_Me_Dummy_hrum.txt %sFound%>>%systemdrive%\rapport.txt)
if exist Delete_Me_Dummy_hrum323.txt (echo %syspath%\Delete_Me_Dummy_hrum323.txt %sFound%>>%systemdrive%\rapport.txt)
if exist dtjby.dll (echo %syspath%\dtjby.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dial23.exe (echo %syspath%\dial23.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dload.exe (echo %syspath%\dload.exe %sFound%>>%systemdrive%\rapport.txt)
if exist dlh9jkdq?.exe (echo %syspath%\dlh9jkdq?.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist doser.exe (echo %syspath%\doser.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist dfrgsrv.exe (echo %syspath%\dfrgsrv.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist dnefhw.dll (echo %syspath%\dnefhw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dooep.dll (echo %syspath%\dooep.dll %sFound%>>%systemdrive%\rapport.txt)
if exist dpfwu.dll (echo %syspath%\dpfwu.dll %sFound%>>%systemdrive%\rapport.txt)
if exist drives (echo %syspath%\drives\ %sFound%>>%systemdrive%\rapport.txt)
if exist duxzj.dll (echo %syspath%\duxzj.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dvdcap.dll (echo %syspath%\dvdcap.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dxole32.exe (echo %syspath%\dxole32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist dxmpp.dll (echo %syspath%\dxmpp.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist dxovx.dll (echo %syspath%\dxovx.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist eeuydc.dll (echo %syspath%\eeuydc.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist efsdfgxg.exe (echo %syspath%\efsdfgxg.exe %sFound%>>%systemdrive%\rapport.txt)
if exist egzcqg.dll (echo %syspath%\egzcqg.dll %sFound%>>%systemdrive%\rapport.txt)
if exist eigbbb.dll (echo %syspath%\eigbbb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ekvrlfzz.exe (echo %syspath%\ekvrlfzz.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist eowygj.dll (echo %syspath%\eowygj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist erxbx.dll (echo %syspath%\erxbx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist exa32.exe (echo %syspath%\exa32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist exeha2.exe (echo %syspath%\exeha2.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist exeha3.exe (echo %syspath%\exeha3.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ext32inc.dll (echo %syspath%\ext32inc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist exuc32.tmp (echo %syspath%\exuc32.tmp %sFound%>>%systemdrive%\rapport.txt)
if exist fdpzgi.dll (echo %syspath%\fdpzgi.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fhmfes.dll (echo %syspath%\fhmfes.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ficqv.dll (echo %syspath%\ficqv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fjdcy.dll (echo %syspath%\fjdcy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fmrmhc.dll (echo %syspath%\fmrmhc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fqdqs.dll (echo %syspath%\fqdqs.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fshqaln.dll (echo %syspath%\fshqaln.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fwrkqfl.dll (echo %syspath%\fwrkqfl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fyhhxw.dll (echo %syspath%\fyhhxw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fyhwfc.dll (echo %syspath%\fyhwfc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist fyxkaah.dll (echo %syspath%\fyxkaah.dll %sFound%>>%systemdrive%\rapport.txt)
if exist games.ico (echo %syspath%\games.ico %sFound%>>%systemdrive%\rapport.txt)
if exist gbjkog.dll (echo %syspath%\gbjkog.dll %sFound%>>%systemdrive%\rapport.txt)
if exist geplxss.dll (echo %syspath%\geplxss.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ginuerep.dll (echo %syspath%\ginuerep.dll %sFound%>>%systemdrive%\rapport.txt)
if exist gopa.exe (echo %syspath%\gopa.exe %sFound%>>%systemdrive%\rapport.txt)
if exist gqagksr.dll (echo %syspath%\gqagksr.dll %sFound%>>%systemdrive%\rapport.txt)
if exist gsrnxgh.dll (echo %syspath%\gsrnxgh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist gtawclv.dll (echo %syspath%\gtawclv.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist gtpbx.dll (echo %syspath%\gtpbx.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist gunist.exe (echo %syspath%\gunist.exe %sFound%>>%systemdrive%\rapport.txt)
if exist gusur.dll (echo %syspath%\gusur.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist guxmhcd.dll (echo %syspath%\guxmhcd.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist guxxa.dll (echo %syspath%\guxxa.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist gwquvw.dll (echo %syspath%\gwquvw.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist hadjajr.ini (echo %syspath%\hadjajr.ini %sFound%>>%systemdrive%\rapport.txt)
if exist hanonvt.ini (echo %syspath%\hanonvt.ini %sFound%>>%systemdrive%\rapport.txt)
if exist helper.exe (echo %syspath%\helper.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist higehsg.dll (echo %syspath%\higehsg.dll %sFound%>>%systemdrive%\rapport.txt)
if exist higjxe.dll (echo %syspath%\higjxe.dll %sFound%>>%systemdrive%\rapport.txt)
if exist hjpprpu.dll (echo %syspath%\hjpprpu.dll %sFound%>>%systemdrive%\rapport.txt)
if exist hhk.dll (echo %syspath%\hhk.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist hookdump.exe (echo %syspath%\hookdump.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist hp???.tmp (echo %syspath%\hp???.tmp %sFound%>>%systemdrive%\rapport.txt) 
if exist hp????.tmp (echo %syspath%\hp????.tmp %sFound%>>%systemdrive%\rapport.txt) 
if exist hrum.txt (echo %syspath%\hrum.txt %sFound%>>%systemdrive%\rapport.txt)
if exist hrum323.txt (echo %syspath%\hrum323.txt %sFound%>>%systemdrive%\rapport.txt)
if exist htey.dll (echo %syspath%\htey.dll %sFound%>>%systemdrive%\rapport.txt)
if exist httge.dll (echo %syspath%\httge.dll %sFound%>>%systemdrive%\rapport.txt)
if exist hvcycg.dll (echo %syspath%\hvcycg.dll %sFound%>>%systemdrive%\rapport.txt)
if exist hvnwm.dll (echo %syspath%\hvnwm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist hzclqhc.dll (echo %syspath%\hzclqhc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iauoi.dll (echo %syspath%\iauoi.dll %sFound%>>%systemdrive%\rapport.txt)
if exist icima.dll (echo %syspath%\icima.dll %sFound%>>%systemdrive%\rapport.txt)
if exist IeHelperEx.dll (echo %syspath%\IeHelperEx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iewd.exe (echo %syspath%\iewd.exe %sFound%>>%systemdrive%\rapport.txt)
if exist igpfced.dll (echo %syspath%\igpfced.dll %sFound%>>%systemdrive%\rapport.txt)
if exist igzxwrl.dll (echo %syspath%\igzxwrl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ilmpjy.dll (echo %syspath%\ilmpjy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist imfdfcj.dll (echo %syspath%\imfdfcj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist impgsje.dll (echo %syspath%\impgsje.dll %sFound%>>%systemdrive%\rapport.txt)
if exist indwvm.dll (echo %syspath%\indwvm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist intel32.exe (echo %syspath%\intel32.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist intell321.exe (echo %syspath%\intell321.exe %sFound%>>%systemdrive%\rapport.txt)
if exist intell32.exe (echo %syspath%\intell32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist interf.tlb (echo %syspath%\interf.tlb %sFound%>>%systemdrive%\rapport.txt)
if exist intmon.exe (echo %syspath%\intmon.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist intmonp.exe (echo %syspath%\intmonp.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist intxt.exe (echo %syspath%\intxt.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ioctrl.dll (echo %syspath%\ioctrl.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist ipmon.exe (echo %syspath%\ipmon.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ipztub.dll (echo %syspath%\ipztub.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iqzv.dll (echo %syspath%\iqzv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ishost.exe (echo %syspath%\ishost.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ismini.exe (echo %syspath%\ismini.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ismon.exe (echo %syspath%\ismon.exe %sFound%>>%systemdrive%\rapport.txt)
if exist isnotify.exe (echo %syspath%\isnotify.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist issearch.exe (echo %syspath%\issearch.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist ixt?.dll (echo %syspath%\ixt?.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ixt??.dll (echo %syspath%\ixt??.dll %sFound%>>%systemdrive%\rapport.txt)
if exist iwwvh.dll (echo %syspath%\iwwvh.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist jao.dll (echo %syspath%\jao.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist jbtazy.dll (echo %syspath%\jbtazy.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist jevtxpg.dll (echo %syspath%\jevtxpg.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist jpqet.dll (echo %syspath%\jpqet.dll %sFound%>>%systemdrive%\rapport.txt)
if exist kernels8.exe (echo %syspath%\kernels8.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kernels32.exe (echo %syspath%\kernels32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kernels64.exe (echo %syspath%\kernels64.exe %sFound%>>%systemdrive%\rapport.txt)
if exist kfhrvq.dll (echo %syspath%\kfhrvq.dll %sFound%>>%systemdrive%\rapport.txt)
if exist kgkdbsk.dll (echo %syspath%\kgkdbsk.dll %sFound%>>%systemdrive%\rapport.txt)
if exist khtbpdl.dll (echo %syspath%\khtbpdl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist kkqfb.dll (echo %syspath%\kkqfb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ktrxe.dll (echo %syspath%\ktrxe.dll %sFound%>>%systemdrive%\rapport.txt)
if exist kuhmk.dll (echo %syspath%\kuhmk.dll %sFound%>>%systemdrive%\rapport.txt)
if exist kvfvw.dll (echo %syspath%\kvfvw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist lapmvzf.dll (echo %syspath%\lapmvzf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist latest.exe (echo %syspath%\latest.exe %sFound%>>%systemdrive%\rapport.txt)
if exist lcsrsrv.dll (echo %syspath%\lcsrsrv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Lesbian Sex.ico" (echo %syspath%\Lesbian Sex.ico %sFound%>>%systemdrive%\rapport.txt)
if exist ld???.tmp (echo %syspath%\ld???.tmp %sFound%>>%systemdrive%\rapport.txt)
if exist ld????.tmp (echo %syspath%\ld????.tmp %sFound%>>%systemdrive%\rapport.txt)
if exist lfd.dat (echo %syspath%\lfd.dat %sFound%>>%systemdrive%\rapport.txt)
if exist lich.exe (echo %syspath%\lich.exe %sFound%>>%systemdrive%\rapport.txt)
if exist links.exe (echo %syspath%\links.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ll.exe (echo %syspath%\ll.exe %sFound%>>%systemdrive%\rapport.txt)
if exist lrnjnzf.dll (echo %syspath%\lrnjnzf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist lwpfwjb.dll (echo %syspath%\lwpfwjb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist main.exe (echo %syspath%\main.exe %sFound%>>%systemdrive%\rapport.txt)
if exist maxd1.exe (echo %syspath%\maxd1.exe %sFound%>>%systemdrive%\rapport.txt)
if exist maxd64.exe (echo %syspath%\maxd64.exe %sFound%>>%systemdrive%\rapport.txt)
if exist migicons.exe (echo %syspath%\migicons.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mirarsearch_toolbar.exe (echo %syspath%\mirarsearch_toolbar.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mivmv.dll (echo %syspath%\mivmv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mlraakb.dll (echo %syspath%\mlraakb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mobile.ico (echo %syspath%\mobile.ico %sFound%>>%systemdrive%\rapport.txt)
if exist MP3.ico (echo %syspath%\MP3.ico %sFound%>>%systemdrive%\rapport.txt)
if exist mpsegment.exe (echo %syspath%\mpsegment.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msmapi32.exe (echo %syspath%\msmapi32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msmapi32.exe.MANIFEST (echo %syspath%\msmapi32.exe.MANIFEST %sFound%>>%systemdrive%\rapport.txt)
if exist msbe.dll (echo %syspath%\msbe.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mscornet.exe (echo %syspath%\mscornet.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msdrives (echo %syspath%\msdrives\ %sFound%>>%systemdrive%\rapport.txt)
if exist mshtml32.tdb (echo %syspath%\mshtml32.tdb %sFound%>>%systemdrive%\rapport.txt)
if exist mssearchnet.exe (echo %syspath%\mssearchnet.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mshlpp.exe (echo %syspath%\mshlpp.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msmsgs.exe (echo %syspath%\msmsgs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msmsn.exe (echo %syspath%\msmsn.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msnscps.dll (echo %syspath%\msnscps.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msole32.exe (echo %syspath%\msole32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mspostsp.exe.exe (echo %syspath%\mspostsp.exe.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msupdate32.dll (echo %syspath%\msupdate32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist msvcp.exe.exe (echo %syspath%\msvcp.exe.exe %sFound%>>%systemdrive%\rapport.txt)
if exist msvol.tlb (echo %syspath%\msvol.tlb %sFound%>>%systemdrive%\rapport.txt)
if exist mswinb32.dll (echo %syspath%\mswinb32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mswinb32.exe (echo %syspath%\mswinb32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mswinf32.dll (echo %syspath%\mswinf32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mswinf32.exe (echo %syspath%\mswinf32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist mswinup32.dll (echo %syspath%\mswinup32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mswinxml.dll (echo %syspath%\mswinxml.dll %sFound%>>%systemdrive%\rapport.txt)
if exist MTC.dll (echo %syspath%\MTC.dll %sFound%>>%systemdrive%\rapport.txt)
if exist MTC.ini (echo %syspath%\MTC.ini %sFound%>>%systemdrive%\rapport.txt)
if exist multitran.exe (echo %syspath%\multitran.exe %sFound%>>%systemdrive%\rapport.txt)
if exist muvdjo.dll (echo %syspath%\muvdjo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist myqlejy.dll (echo %syspath%\myqlejy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist mzoeut.dll (echo %syspath%\mzoeut.dll %sFound%>>%systemdrive%\rapport.txt)
if exist nbbrhbd.dll (echo %syspath%\nbbrhbd.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ncompat.tlb (echo %syspath%\ncompat.tlb %sFound%>>%systemdrive%\rapport.txt)
if exist netfilt4.exe (echo %syspath%\netfilt4.exe %sFound%>>%systemdrive%\rapport.txt)
if exist netstat2.exe (echo %syspath%\netstat2.exe %sFound%>>%systemdrive%\rapport.txt)
if exist network.ico (echo %syspath%\network.ico %sFound%>>%systemdrive%\rapport.txt)
if exist netwrap.dll (echo %syspath%\netwrap.dll %sFound%>>%systemdrive%\rapport.txt)
if exist nexpegp.dll (echo %syspath%\nexpegp.dll %sFound%>>%systemdrive%\rapport.txt)
if exist notepad.com (echo %syspath%\notepad.com %sFound%>>%systemdrive%\rapport.txt)
if exist notifysb.dll (echo %syspath%\notifysb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist NTCommLib3.exe (echo %syspath%\NTCommLib3.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nuclabdll.dll (echo %syspath%\nuclabdll.dll %sFound%>>%systemdrive%\rapport.txt)
if exist nuqjici.dll (echo %syspath%\nuqjici.dll %sFound%>>%systemdrive%\rapport.txt)
if exist nvctrl.exe (echo %syspath%\nvctrl.exe %sFound%>>%systemdrive%\rapport.txt)
if exist nvms.dll (echo %syspath%\nvms.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oebxpba.dll (echo %syspath%\oebxpba.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oerucu.dll (echo %syspath%\oerucu.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ofcukiz.dll (echo %syspath%\ofcukiz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist office_pnl.dll (echo %syspath%\office_pnl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist officescan.exe (echo %syspath%\officescan.exe %sFound%>>%systemdrive%\rapport.txt)
if exist oiso.bin (echo %syspath%\oiso.bin %sFound%>>%systemdrive%\rapport.txt)
if exist okkmtv.dll (echo %syspath%\okkmtv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oksrqqu.dll (echo %syspath%\oksrqqu.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ole32vbs.exe (echo %syspath%\ole32vbs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist oleadm.dll (echo %syspath%\oleadm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oleadm32.dll (echo %syspath%\oleadm32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oleext.dll (echo %syspath%\oleext.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oleext32.dll (echo %syspath%\oleext32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist olnohdw.dll (echo %syspath%\olnohdw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Betting.ico" (echo %syspath%\Online Betting.ico %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Gambling.ico" (echo %syspath%\Online Gambling.ico %sFound%>>%systemdrive%\rapport.txt)
if exist onljweo.dll (echo %syspath%\onljweo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist onofub.dll (echo %syspath%\onofub.dll %sFound%>>%systemdrive%\rapport.txt)
if exist onwtj.dll (echo %syspath%\onwtj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oqabf.dll (echo %syspath%\oqabf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oqipt.dll (echo %syspath%\oqipt.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Oral Sex.ico" (echo %syspath%\Oral Sex.ico %sFound%>>%systemdrive%\rapport.txt)
if exist ornzq.dll (echo %syspath%\ornzq.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ot.ico (echo %syspath%\ot.ico %sFound%>>%systemdrive%\rapport.txt)
if exist oybgrql.dll (echo %syspath%\oybgrql.dll %sFound%>>%systemdrive%\rapport.txt)
if exist oyopu.dll (echo %syspath%\oyopu.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ownyhr.dll (echo %syspath%\ownyhr.dll %sFound%>>%systemdrive%\rapport.txt)
if exist param32.dll (echo %syspath%\param32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist parad.raw.exe (echo %syspath%\parad.raw.exe %sFound%>>%systemdrive%\rapport.txt)
if exist paradise.raw.exe (echo %syspath%\paradise.raw.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "Party Poker.ico" (echo %syspath%\Party Poker.ico %sFound%>>%systemdrive%\rapport.txt)
if exist paytime.exe (echo %syspath%\paytime.exe %sFound%>>%systemdrive%\rapport.txt)
if exist pcf.pdf (echo %syspath%\pcf.pdf %sFound%>>%systemdrive%\rapport.txt)
if exist perfcii.ini (echo %syspath%\perfcii.ini %sFound%>>%systemdrive%\rapport.txt)
if exist perfont.exe (echo %syspath%\perfont.exe %sFound%>>%systemdrive%\rapport.txt)
if exist performent202.dll (echo %syspath%\performent202.dll %sFound%>>%systemdrive%\rapport.txt)
if exist performent217.dll (echo %syspath%\performent217.dll %sFound%>>%systemdrive%\rapport.txt)
if exist pharm.ico (echo %syspath%\pharm.ico %sFound%>>%systemdrive%\rapport.txt)
if exist pharm2.ico (echo %syspath%\pharm2.ico %sFound%>>%systemdrive%\rapport.txt)
if exist Pharmacy.ico (echo %syspath%\Pharmacy.ico %sFound%>>%systemdrive%\rapport.txt)
if exist Phentermine.ico (echo %syspath%\Phentermine.ico %sFound%>>%systemdrive%\rapport.txt)
if exist pigglett.exe (echo %syspath%\pigglett.exe %sFound%>>%systemdrive%\rapport.txt)
if exist qjrkvy.exe (echo %syspath%\qjrkvy.exe %sFound%>>%systemdrive%\rapport.txt)
if exist pjgerka.dll (echo %syspath%\pjgerka.dll %sFound%>>%systemdrive%\rapport.txt)
if exist pkgvyg.dll (echo %syspath%\pkgvyg.dll %sFound%>>%systemdrive%\rapport.txt)
if exist pkjcoxq.dll (echo %syspath%\pkjcoxq.dll %sFound%>>%systemdrive%\rapport.txt)
if exist pmnqguh.dll (echo %syspath%\pmnqguh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist policies (echo %syspath%\policies\ %sFound%>>%systemdrive%\rapport.txt)
if exist pop_up.dll (echo %syspath%\pop_up.dll %sFound%>>%systemdrive%\rapport.txt)
if exist POPCORN72.EXE (echo %syspath%\POPCORN72.EXE %sFound%>>%systemdrive%\rapport.txt)
if exist popspig (echo %syspath%\popspig %sFound%>>%systemdrive%\rapport.txt)
if exist Pornstars.ico (echo %syspath%\Pornstars.ico %sFound%>>%systemdrive%\rapport.txt)
if exist posem.dll (echo %syspath%\posem.dll %sFound%>>%systemdrive%\rapport.txt)
if exist printer.exe (echo %syspath%\printer.exe %sFound%>>%systemdrive%\rapport.txt)
if exist priva.exe (echo %syspath%\priva.exe %sFound%>>%systemdrive%\rapport.txt)
if exist processes.txt (echo %syspath%\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist proqlaim.exe (echo %syspath%\proqlaim.exe %sFound%>>%systemdrive%\rapport.txt)
if exist psndz.dll (echo %syspath%\psndz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist prflbmsgp32.dll (echo %syspath%\prflbmsgp32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist qnusjji.dll (echo %syspath%\qnusjji.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist questmod.dll (echo %syspath%\questmod.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist qvjpt.dll (echo %syspath%\qvjpt.dll %sFound%>>%systemdrive%\rapport.txt)
if exist qvxgamet?.exe (echo %syspath%\qvxgamet?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist qrzsyr.dll (echo %syspath%\qrzsyr.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist qxfgcg.dll (echo %syspath%\qxfgcg.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist qzviz.dll (echo %syspath%\qzviz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist rcohty.dll (echo %syspath%\rcohty.dll %sFound%>>%systemdrive%\rapport.txt)
if exist reger.exe (echo %syspath%\reger.exe %sFound%>>%systemdrive%\rapport.txt)
if exist RegistryCleanerSetup.exe (echo %syspath%\RegistryCleanerSetup.exe %sFound%>>%systemdrive%\rapport.txt)
if exist regperf.exe (echo %syspath%\regperf.exe %sFound%>>%systemdrive%\rapport.txt)
if exist reglogs.dll (echo %syspath%\reglogs.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Remove Spyware.ico" (echo %syspath%\Remove Spyware.ico %sFound%>>%systemdrive%\rapport.txt)
if exist repigsp.exe (echo %syspath%\repigsp.exe %sFound%>>%systemdrive%\rapport.txt)
if exist replmap.dll (echo %syspath%\replmap.dll %sFound%>>%systemdrive%\rapport.txt)
if exist rjxdexau.exe (echo %syspath%\rjxdexau.exe %sFound%>>%systemdrive%\rapport.txt)
if exist rmzdzx.dll (echo %syspath%\rmzdzx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist rosdzop.dll (echo %syspath%\rosdzop.dll %sFound%>>%systemdrive%\rapport.txt)
if exist RpcxSs.dll (echo %syspath%\RpcxSs.dll %sFound%>>%systemdrive%\rapport.txt)
if exist rrtcany.dll (echo %syspath%\rrtcany.dll %sFound%>>%systemdrive%\rapport.txt)
if exist rtwwf.exe (echo %syspath%\rtwwf.exe %sFound%>>%systemdrive%\rapport.txt)
if exist runsrv32.dll (echo %syspath%\runsrv32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist runsrv32.exe (echo %syspath%\runsrv32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist rxqcpn.dll (echo %syspath%\rxqcpn.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ryxrho.dll (echo %syspath%\ryxrho.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sachostc.exe (echo %syspath%\sachostc.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sachostp.exe (echo %syspath%\sachostp.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sachosts.exe (echo %syspath%\sachosts.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sacskza.dll (echo %syspath%\sacskza.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sbnudh.dll (echo %syspath%\sbnudh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist scanner.ico (echo %syspath%\scanner.ico %sFound%>>%systemdrive%\rapport.txt)
if exist sdfdil.exe (echo %syspath%\sdfdil.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist searchdll.dll (echo %syspath%\searchdll.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "Security Toolbar.dll" (echo %syspath%\Security Toolbar.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sender.exe (echo %syspath%\sender.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist shdochp.dll (echo %syspath%\shdochp.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist shdochp.exe (echo %syspath%\shdochp.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist shdochop.dll (echo %syspath%\shdochop.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist shdocnva.dll (echo %syspath%\shdocnva.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist shdocsvc.dll (echo %syspath%\shdocsvc.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist shdocsvc.exe (echo %syspath%\shdocsvc.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist shell386.exe (echo %syspath%\shell386.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist shellgui32.dll (echo %syspath%\shellgui32.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist shnlog.exe (echo %syspath%\shnlog.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist shsexl32.dll (echo %syspath%\shsexl32.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist simpole.tlb (echo %syspath%\simpole.tlb %sFound%>>%systemdrive%\rapport.txt)
if exist sivudro.dll (echo %syspath%\sivudro.dll %sFound%>>%systemdrive%\rapport.txt)
if exist smaexp32.dll (echo %syspath%\smaexp32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist smartdrv.dll (echo %syspath%\smartdrv.dll %sFound%>>%systemdrive%\rapport.txt)
if exist socks.exe (echo %syspath%\socks.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist spam.ico (echo %syspath%\spam.ico %sFound%>>%systemdrive%\rapport.txt)
if exist split.exe (echo %syspath%\split.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist split1.exe (echo %syspath%\split1.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist split2.exe (echo %syspath%\split2.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist spoolvs.exe (echo %syspath%\spoolvs.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist Spykiller.exe (echo %syspath%\Spykiller.exe %sFound%>>%systemdrive%\rapport.txt)
if exist spyware.ico (echo %syspath%\spyware.ico %sFound%>>%systemdrive%\rapport.txt)
if exist srpcsrv32.dll (echo %syspath%\srpcsrv32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist srpcsrv32.exe (echo %syspath%\srpcsrv32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist st3.dll (echo %syspath%\st3.dll %sFound%>>%systemdrive%\rapport.txt)
if exist stdole3.tlb (echo %syspath%\stdole3.tlb %sFound%>>%systemdrive%\rapport.txt)
if exist stickrep.dll (echo %syspath%\stickrep.dll %sFound%>>%systemdrive%\rapport.txt)
if exist suprox.dll (echo %syspath%\suprox.dll %sFound%>>%systemdrive%\rapport.txt)
if exist surzzh.dll (echo %syspath%\surzzh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sumsw32.exe (echo %syspath%\sumsw32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist susp.exe (echo %syspath%\susp.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svchop.exe (echo %syspath%\svchop.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svchosts.dll (echo %syspath%\svchosts.dll %sFound%>>%systemdrive%\rapport.txt)
if exist svchosts.exe (echo %syspath%\svchosts.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svcnt.exe (echo %syspath%\svcnt.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svcnt32.exe (echo %syspath%\svcnt32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svcnva.exe (echo %syspath%\svcnva.exe %sFound%>>%systemdrive%\rapport.txt)
if exist svshost.dll (echo %syspath%\svshost.dll %sFound%>>%systemdrive%\rapport.txt)
if exist svwhost.exe (echo %syspath%\svwhost.exe %sFound%>>%systemdrive%\rapport.txt)
if exist symsvcsa.exe (echo %syspath%\symsvcsa.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sysbho.exe (echo %syspath%\sysbho.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sysinit32z.exe (echo %syspath%\sysinit32z.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sysjv32.exe (echo %syspath%\sysjv32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sysmain.dll (echo %syspath%\sysmain.dll %sFound%>>%systemdrive%\rapport.txt)
if exist sysvcs.exe (echo %syspath%\sysvcs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sysvx.exe (echo %syspath%\sysvx.exe %sFound%>>%systemdrive%\rapport.txt)
if exist sywsvcs.exe (echo %syspath%\sywsvcs.exe %sFound%>>%systemdrive%\rapport.txt)
if exist syycum.dll (echo %syspath%\syycum.dll %sFound%>>%systemdrive%\rapport.txt)
if exist tahxqcj.dll.dll (echo %syspath%\tahxqcj.dll.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist taras.exe (echo %syspath%\taras.exe %sFound%>>%systemdrive%\rapport.txt)
if exist taskdir.dll (echo %syspath%\taskdir.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist taskdir.exe (echo %syspath%\taskdir.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist taskdir~.exe (echo %syspath%\taskdir~.exe %sFound%>>%systemdrive%\rapport.txt) 
if exist tazth.dll (echo %syspath%\tazth.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tcpipmon.exe (echo %syspath%\tcpipmon.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tcpservice2.exe (echo %syspath%\tcpservice2.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tczij.dll (echo %syspath%\tczij.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tetriz3.exe (echo %syspath%\tetriz3.exe %sFound%>>%systemdrive%\rapport.txt)
if exist tkrsw.dll (echo %syspath%\tkrsw.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist TheMatrixHasYou.exe (echo %syspath%\TheMatrixHasYou.exe %sFound%>>%systemdrive%\rapport.txt)
if exist thlwin32.dll (echo %syspath%\thlwin32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist tiqmcx.dll (echo %syspath%\tiqmcx.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist titiau.dll (echo %syspath%\titiau.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tnvocyn.dll (echo %syspath%\tnvocyn.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tmxxxh.dll (echo %syspath%\tmxxxh.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tpedvf.dll (echo %syspath%\tpedvf.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist tqcwm.dll (echo %syspath%\tqcwm.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist trf32.dll (echo %syspath%\trf32.dll %sFound%>>%systemdrive%\rapport.txt) 
if exist truetype.exe (echo %syspath%\truetype.exe %sFound%>>%systemdrive%\rapport.txt)
if exist ts.ico (echo %syspath%\ts.ico %sFound%>>%systemdrive%\rapport.txt)
if exist tvomnc.dll (echo %syspath%\tvomnc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist twain32.dll (echo %syspath%\twain32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist txfdb32.dll (echo %syspath%\txfdb32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ucbrrt.dll (echo %syspath%\ucbrrt.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist udpmod.dll (echo %syspath%\udpmod.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist ugofuq.dll (echo %syspath%\ugofuq.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist uimcu.dll (echo %syspath%\uimcu.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist ulztc.dll (echo %syspath%\ulztc.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist urroxtl.dll (echo %syspath%\urroxtl.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist users32.exe (echo %syspath%\users32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist vblhanf.dll (echo %syspath%\vblhanf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vcehaeb.dll (echo %syspath%\vcehaeb.dll %sFound%>>%systemdrive%\rapport.txt)
if exist veklo.dll (echo %syspath%\veklo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vgibz.dll (echo %syspath%\vgibz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vhywj.dll (echo %syspath%\vhywj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist viagra.ico (echo %syspath%\viagra.ico %sFound%>>%systemdrive%\rapport.txt)
if exist viruxz.dll (echo %syspath%\viruxz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist viuaoq.dll (echo %syspath%\viuaoq.dll %sFound%>>%systemdrive%\rapport.txt)
if exist viwpzla.dll (echo %syspath%\viwpzla.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vjxwnn.dll (echo %syspath%\vjxwnn.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vophqmn.dll (echo %syspath%\vophqmn.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vpccw.dll (echo %syspath%\vpccw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vpxnk.dll (echo %syspath%\vpxnk.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vtr???.dll (echo %syspath%\vtr???.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vwfps.dll (echo %syspath%\vwfps.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vwlummc.dll (echo %syspath%\vwlummc.dll %sFound%>>%systemdrive%\rapport.txt)
if exist vxgame?.exe (echo %syspath%\vxgame?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist vxgame?.exe????.exe (echo %syspath%\vxgame?.exe????.exe %sFound%>>%systemdrive%\rapport.txt)
if exist vxgame?.exe????.exe.bak (echo %syspath%\vxgame?.exe????.exe.bak %sFound%>>%systemdrive%\rapport.txt)
if exist vxgamet?.exe (echo %syspath%\vxgamet?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist vxgamet?.exe????.exe (echo %syspath%\vxgamet?.exe????.exe %sFound%>>%systemdrive%\rapport.txt)
if exist vxh8jkdq?.exe (echo %syspath%\vxh8jkdq?.exe %sFound%>>%systemdrive%\rapport.txt)
if exist w8673492.exe (echo %syspath%\w8673492.exe %sFound%>>%systemdrive%\rapport.txt)
if exist wbeconm.dll (echo %syspath%\wbeconm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist web.exe (echo %syspath%\web.exe %sFound%>>%systemdrive%\rapport.txt)
if exist wfcof.dll (echo %syspath%\wfcof.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wfkduei.dll (echo %syspath%\wfkduei.dll %sFound%>>%systemdrive%\rapport.txt)
if exist whitevx.lst (echo %syspath%\whitevx.lst %sFound%>>%systemdrive%\rapport.txt)
if exist wiatwain.dll (echo %syspath%\wiatwain.dll %sFound%>>%systemdrive%\rapport.txt)
if exist win32hp.dll (echo %syspath%\win32hp.dll %sFound%>>%systemdrive%\rapport.txt)
if exist win64.exe (echo %syspath%\win64.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winapi32.dll (echo %syspath%\winapi32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist WinAvX.exe (echo %syspath%\WinAvX.exe %sFound%>>%systemdrive%\rapport.txt)
if exist WinAvXX.exe (echo %syspath%\WinAvXX.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winbl32.dll (echo %syspath%\winbl32.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist winblsrv.dll (echo %syspath%\winblsrv.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist winbrume.dll (echo %syspath%\winbrume.dll  %sFound%>>%systemdrive%\rapport.txt)
if exist wincrt.exe (echo %syspath%\wincrt.exe %sFound%>>%systemdrive%\rapport.txt)
if exist windesktop.dll (echo %syspath%\windesktop.dll %sFound%>>%systemdrive%\rapport.txt)
if exist windesktop.exe (echo %syspath%\windesktop.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winflash.dll (echo %syspath%\winflash.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wininet.exe (echo %syspath%\wininet.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winldra.exe (echo %syspath%\winldra.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winlfl32.dll (echo %syspath%\winlfl32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist winmuse.exe (echo %syspath%\winmuse.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winnook.exe (echo %syspath%\winnook.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winsrv32.exe (echo %syspath%\winsrv32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist winstyle2.dll (echo %syspath%\winstyle2.dll %sFound%>>%systemdrive%\rapport.txt)
if exist winstyle3.dll (echo %syspath%\winstyle3.dll %sFound%>>%systemdrive%\rapport.txt)
if exist winstyle32.dll (echo %syspath%\winstyle32.dll %sFound%>>%systemdrive%\rapport.txt)
if exist winntify.exe (echo %syspath%\winntify.exe %sFound%>>%systemdrive%\rapport.txt)
if exist wldr.dll (echo %syspath%\wldr.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wp.bmp (echo %syspath%\wp.bmp %sFound%>>%systemdrive%\rapport.txt)
if exist wpchz.dll (echo %syspath%\wpchz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wppp.html (echo %syspath%\wppp.html %sFound%>>%systemdrive%\rapport.txt)
if exist wstart.dll (echo %syspath%\wstart.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wuwbxp.dll (echo %syspath%\wuwbxp.dll %sFound%>>%systemdrive%\rapport.txt)
if exist wzhtjqo.dll (echo %syspath%\wzhtjqo.dll %sFound%>>%systemdrive%\rapport.txt)
if exist x.exe (echo %syspath%\x.exe  %sFound%>>%systemdrive%\rapport.txt)
if exist xedasn.dll (echo %syspath%\xedasn.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xenadot.dll (echo %syspath%\xenadot.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xikor.dll (echo %syspath%\xikor.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xkrdk.dll (echo %syspath%\xkrdk.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xnvaogd.dll (echo %syspath%\xnvaogd.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xpuupdate.exe (echo %syspath%\xpuupdate.exe %sFound%>>%systemdrive%\rapport.txt)
if exist xqpauzx.dll (echo %syspath%\xqpauzx.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xtgwjrm.dll (echo %syspath%\xtgwjrm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xtsyynm.dll (echo %syspath%\xtsyynm.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xuefh.dll (echo %syspath%\xuefh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xuoce.dll (echo %syspath%\xuoce.dll %sFound%>>%systemdrive%\rapport.txt)
if exist xxfgmy.dll (echo %syspath%\xxfgmy.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yaemu.exe (echo %syspath%\yaemu.exe %sFound%>>%systemdrive%\rapport.txt)
if exist yephk.dll (echo %syspath%\yephk.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yesgnhr.dll (echo %syspath%\yesgnhr.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yfysupa.dll (echo %syspath%\yfysupa.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ygjun.dll (echo %syspath%\ygjun.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yhbdupd.dll (echo %syspath%\yhbdupd.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yhjbbzf.dll (echo %syspath%\yhjbbzf.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yosdjh.dll (echo %syspath%\yosdjh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yronl.dll (echo %syspath%\yronl.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yuspej.dll (echo %syspath%\yuspej.dll %sFound%>>%systemdrive%\rapport.txt)
if exist yvvdj.dll (echo %syspath%\yvvdj.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ywbicim.dll (echo %syspath%\ywbicim.dll %sFound%>>%systemdrive%\rapport.txt)
if exist z11.exe (echo %syspath%\z11.exe %sFound%>>%systemdrive%\rapport.txt)
if exist z12.exe (echo %syspath%\z12.exe %sFound%>>%systemdrive%\rapport.txt)
if exist z13.exe (echo %syspath%\z13.exe %sFound%>>%systemdrive%\rapport.txt)
if exist z14.exe (echo %syspath%\z14.exe %sFound%>>%systemdrive%\rapport.txt)
if exist z15.exe (echo %syspath%\z15.exe %sFound%>>%systemdrive%\rapport.txt)
if exist z16.exe (echo %syspath%\z16.exe %sFound%>>%systemdrive%\rapport.txt)
if exist zdwii.dll (echo %syspath%\zdwii.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zkpssqa.dll (echo %syspath%\zkpssqa.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zlara.dll (echo %syspath%\zlara.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zlbw.dll (echo %syspath%\zlbw.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zolker011.dll (echo %syspath%\zolker011.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zpeolvh.dll (echo %syspath%\zpeolvh.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zphnok.dll (echo %syspath%\zphnok.dll %sFound%>>%systemdrive%\rapport.txt)
if exist zpuwriz.dll (echo %syspath%\zpuwriz.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ztoolb011.dll (echo %syspath%\ztoolb011.dll %sFound%>>%systemdrive%\rapport.txt)
if exist ztoolbar.bmp (echo %syspath%\ztoolbar.bmp %sFound%>>%systemdrive%\rapport.txt)
if exist ztoolbar.xml (echo %syspath%\ztoolbar.xml %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__intmon.exe (echo %syspath%\__delete_on_reboot__intmon.exe %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__intel32.exe (echo %syspath%\__delete_on_reboot__intel32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__intell32.exe (echo %syspath%\__delete_on_reboot__intell32.exe %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__OLEADM.dll (echo %syspath%\__delete_on_reboot__OLEADM.dll %sFound%>>%systemdrive%\rapport.txt)
if exist __delete_on_reboot__stickrep.dll (echo %syspath%\__delete_on_reboot__stickrep.dll %sFound%>>%systemdrive%\rapport.txt)




IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
swreg export "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" tmp.reg
type tmp.reg | find /i "CTDrive">tmp.txt
for /f "tokens=* delims=" %%a in (tmp.txt) do echo %%a>tmp2.txt
if exist tmp2.txt goto ScanDelim_CTDrive
goto ScanEnd_CTDrive

:ScanDelim_CTDrive
for /f "tokens=2 delims==" %%a in (tmp2.txt) do echo %%a>tmp.txt

echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-1)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-5)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.dll

IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
if exist "%file%" (echo %syspath%\%file% %sFound%>>%systemdrive%\rapport.txt)
set file=

:ScanEnd_CTDrive






IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
swreg export "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" tmp.reg
type tmp.reg | find /i "CTDrive">tmp.txt
for /f "tokens=* delims=" %%a in (tmp.txt) do echo %%a>tmp2.txt
if exist tmp2.txt goto ScanDelim_CTDrive_2
goto ScanEnd_CTDrive_2

:ScanDelim_CTDrive_2
for /f "tokens=2 delims==" %%a in (tmp2.txt) do echo %%a>tmp.txt

echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-14)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-13)>>unquote.vbs
echo    ligne=Right(ligne,6)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.dll

IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
if exist "%file%" (echo %syspath%\%file% %sFound%>>%systemdrive%\rapport.txt)
set file=

:ScanEnd_CTDrive_2






if exist "%syspath%\1024" echo %syspath%\1024\ %sFound%>>%systemdrive%\rapport.txt

if exist "%syspath%\drivers\.protected" echo %syspath%\drivers\.protected %sFound%>>%systemdrive%\rapport.txt
if exist "%syspath%\drivers\hesvc.sys" echo %syspath%\drivers\hesvc.sys %sFound%>>%systemdrive%\rapport.txt
if exist "%syspath%\drivers\svchost.exe" echo %syspath%\drivers\svchost.exe %sFound%>>%systemdrive%\rapport.txt

if exist "%syspath%\components\flx?.dll" (echo %syspath%\components\flx?.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "%syspath%\components\flx??.dll" (echo %syspath%\components\flx??.dll %sFound%>>%systemdrive%\rapport.txt)
if exist "%syspath%\components\flx???.dll" (echo %syspath%\components\flx???.dll %sFound%>>%systemdrive%\rapport.txt)



echo Option Explicit>GetValue.vbs
echo.>>GetValue.vbs
echo Dim Shell>>GetValue.vbs
echo Dim KeyPath>>GetValue.vbs
echo Dim ObjFileSystem>>GetValue.vbs
echo Dim ObjOutputFile>>GetValue.vbs
echo Dim ObjRegExp>>GetValue.vbs
echo Dim File>>GetValue.vbs
echo Dim TmpVar>>GetValue.vbs
echo Dim Var>>GetValue.vbs
echo.>>GetValue.vbs

echo On Error Resume Next>>GetValue.vbs

echo.>>GetValue.vbs
echo KeyPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0D4C7057-EAD2-44C6-AD18-9092905F28F1}\InprocServer32\">>GetValue.vbs
echo File = "SetValue.bat">>GetValue.vbs
echo.>>GetValue.vbs
echo Set Shell = WScript.CreateObject("WScript.Shell")>>GetValue.vbs
echo Set ObjFileSystem = CreateObject("Scripting.fileSystemObject")>>GetValue.vbs
echo Set ObjOutputFile = ObjFileSystem.CreateTextFile(File, TRUE)>>GetValue.vbs
echo Set ObjRegExp = New RegExp>>GetValue.vbs
echo.>>GetValue.vbs

echo.>>GetValue.vbs
echo TmpVar = "Dummy">>GetValue.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "")>>GetValue.vbs

echo Var = "Set TmpVal=" ^& TmpVar>>GetValue.vbs
echo ObjOutputFile.WriteLine(Var)>>GetValue.vbs
echo.>>GetValue.vbs

cscript //I //nologo GetValue.vbs

if exist GetValue.vbs del GetValue.vbs

Set TmpVal="Dummy"

if exist SetValue.bat (
Call SetValue.bat
del SetValue.bat
)

if exist %TmpVal% (echo %TmpVal% %sFound%>>%systemdrive%\rapport.txt)

Set TmpVal=




popd










if NOT exist %syspath%\LogFiles goto suiteScanUserProfile

echo.>>%systemdrive%\rapport.txt
echo %sSearch% %syspath%\LogFiles...
echo »»»»»»»»»»»»»»»»»»»»»»»» %syspath%\LogFiles>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

pushd %syspath%\LogFiles

if exist A5281300.so (echo %syspath%\A5281300.so %sFound%>>%systemdrive%\rapport.txt)
if exist T54111925.so (echo %syspath%\T54111925.so %sFound%>>%systemdrive%\rapport.txt)
if exist H53131712.so (echo %syspath%\H53131712.so %sFound%>>%systemdrive%\rapport.txt)
if exist A54102200.so (echo %syspath%\A54102200.so %sFound%>>%systemdrive%\rapport.txt)
if exist S53252000.so (echo %syspath%\S53252000.so %sFound%>>%systemdrive%\rapport.txt)
if exist A04111925.so (echo %syspath%\A04111925.so %sFound%>>%systemdrive%\rapport.txt)
if exist M54111925.so (echo %syspath%\M54111925.so %sFound%>>%systemdrive%\rapport.txt)
if exist P54111925.so (echo %syspath%\P54111925.so %sFound%>>%systemdrive%\rapport.txt)

popd




:suiteScanUserProfile

echo.>>%systemdrive%\rapport.txt
echo %sSearch% %userprofile%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %userprofile%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if exist "%userprofile%\processes.txt" (echo %userprofile%\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist "%userprofile%\svchost.exe" (echo %userprofile%\svchost.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%userprofile%\xxfep.exe" (echo %userprofile%\xxfep.exe %sFound%>>%systemdrive%\rapport.txt)





echo.>>%systemdrive%\rapport.txt
echo %sSearch% %userprofile%\Application Data...
echo »»»»»»»»»»»»»»»»»»»»»»»» %userprofile%\Application Data>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" echo %HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner %sFound%>>%systemdrive%\rapport.txt

if exist "%userprofile%\Application Data\Install.dat" echo %userprofile%\Application Data\Install.dat %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\AlfaCleaner" echo %userprofile%\Application Data\AlfaCleaner %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\AdProtect NoSpam" echo %userprofile%\Application Data\AdProtect NoSpam %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\PSGuard.com" echo %userprofile%\Application Data\PSGuard.com %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Shudder Global Limited" echo %userprofile%\Application Data\Shudder Global Limited %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Skinux" echo %userprofile%\Application Data\Skinux %sFound%>>%systemdrive%\rapport.txt

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk %sFound%>>%systemdrive%\rapport.txt


if exist "%userprofile%\Local Settings\Application Data\977efcdb.exe" echo %userprofile%\Local Settings\Application Data\977efcdb.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" echo %userprofile%\Local Settings\Application Data\AdwareSheriff %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\AntispywareSoldier" echo %userprofile%\Local Settings\Application Data\AntispywareSoldier %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\TitanShield" echo %userprofile%\Local Settings\Application Data\TitanShield %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\SpySoldier" echo %userprofile%\Local Settings\Application Data\SpySoldier %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\SpywareKnight" echo %userprofile%\Local Settings\Application Data\SpywareKnight %sFound%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\SpywareSheriff" echo %userprofile%\Local Settings\Application Data\SpywareSheriff %sFound%>>%systemdrive%\rapport.txt







echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo %sSearch% Menu D^‚marrer...
echo »»»»»»»»»»»»»»»»»»»»»»»» Menu Démarrer>>%systemdrive%\rapport.txt
) else (
echo %sSearch% Start Menu...
echo »»»»»»»»»»»»»»»»»»»»»»»» Start Menu>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

if exist "%startm%\AntiVermeans 2.1.lnk" (echo %startm%\AntiVermeans 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\AntiVermins 2.1.lnk" (echo %startm%\AntiVermins 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\AntiVerminser 2.1.lnk" (echo %startm%\AntiVerminser 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\AntivirusGolden 3.3.lnk" (echo %startm%\AntivirusGolden 3.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\ContraVirus 2.0.lnk" (echo %startm%\ContraVirus 2.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwareWipe 4.1.lnk" (echo %startm%\MalwareWipe 4.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwareWiped 5.2.lnk" (echo %startm%\MalwareWiped 5.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwareWiped 6.1.lnk" (echo %startm%\MalwareWiped 6.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwaresWipeds 5.3.lnk" (echo %startm%\MalwaresWipeds 5.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwareWipePro 4.3.lnk" (echo %startm%\MalwareWipePro 4.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\MalwareWiper 4.3.lnk" (echo %startm%\MalwareWiper 4.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\Malware-Wipe 4.2.lnk" (echo %startm%\Malware-Wipe 4.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyAxe 3.0.lnk" (echo %startm%\SpyAxe 3.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyCrush 3.1.lnk" (echo %startm%\SpyCrush 35.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyCrush 5.1.lnk" (echo %startm%\SpyCrush 5.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyDawn 3.1.lnk" (echo %startm%\SpyDawn 3.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyFalcon 2.0.lnk" (echo %startm%\SpyFalcon 2.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyFalcon 3.1.lnk" (echo %startm%\SpyFalcon 3.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\Spy-Heal 2.1.lnk" (echo %startm%\Spy-Heal 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyHeal 2.1.lnk" (echo %startm%\SpyHeal 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyHeals 2.3.lnk" (echo %startm%\SpyHeals 2.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 3.1.lnk" (echo %startm%\SpyLocked 3.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 3.6.lnk" (echo %startm%\SpyLocked 3.6.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 3.7.lnk" (echo %startm%\SpyLocked 3.7.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 3.9.lnk" (echo %startm%\SpyLocked 3.9.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 4.0.lnk" (echo %startm%\SpyLocked 4.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 4.1.lnk" (echo %startm%\SpyLocked 4.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyLocked 4.3.lnk" (echo %startm%\SpyLocked 4.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpyQuake2.com 2.3.lnk" (echo %startm%\SpyQuake2.com 2.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareLocked 3.2.lnk" (echo %startm%\SpywareLocked 3.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareLocked 3.3.lnk" (echo %startm%\SpywareLocked 3.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareLocked 3.4.lnk" (echo %startm%\SpywareLocked 3.4.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareLocked 3.5.lnk" (echo %startm%\SpywareLocked 3.5.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareQuake 2.0.lnk" (echo %startm%\SpywareQuake 2.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareQuake.com 2.1.lnk" (echo %startm%\SpywareQuake.com 2.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\SpywareStrike 2.5.lnk" (echo %startm%\SpywareStrike 2.5.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\vb 6.1.lnk" (echo %startm%\vb 6.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusBlast v5.0.lnk" (echo %startm%\VirusBlast v5.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusBlast v5.0.lnk" (echo %startm%\VirusBlast v5.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\Virus-Burst 6.1.lnk" (echo %startm%\Virus-Burst 6.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusBurst 6.1.lnk" (echo %startm%\VirusBurst 6.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusBurster 6.2.lnk" (echo %startm%\VirusBurster 6.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusBursters 6.2.lnk" (echo %startm%\VirusBursters 6.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\Virus-Bursters 6.2.lnk" (echo %startm%\Virus-Bursters 6.2.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\Virus-Bursters 6.3.lnk" (echo %startm%\Virus-Bursters 6.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusProtectPro 3.3.lnk" (echo %startm%\VirusProtectPro 3.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusProtectPro 3.4.lnk" (echo %startm%\VirusProtectPro 3.4.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusProtectPro 3.5.lnk" (echo %startm%\VirusProtectPro 3.5.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusProtectPro 3.6.lnk" (echo %startm%\VirusProtectPro 3.6.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startm%\VirusProtectPro 3.7.lnk" (echo %startm%\VirusProtectPro 3.7.lnk %sFound%>>%systemdrive%\rapport.txt)

if exist "%startprg%\AntiVermeans" (echo %startprg%\AntiVermeans %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\AntiVermins" (echo %startprg%\AntiVermins %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\AntiVerminser" (echo %startprg%\AntiVerminser %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\AntivirusGolden" (echo %startprg%\AntivirusGolden %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\ContraVirus" (echo %startprg%\ContraVirus %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\BraveSentry" (echo %startprg%\BraveSentry %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\DirectVideo" (echo %startprg%\DirectVideo %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\FreeVideo" (echo %startprg%\FreeVideo %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\HQ Codec" (echo %startprg%\HQ Codec %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\HQvideo" (echo %startprg%\HQvideo %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\HQVideoCodec" (echo %startprg%\HQVideoCodec %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Key Generator" (echo %startprg%\Key Generator %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwareWipe" (echo %startprg%\MalwareWipe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwareWiped" (echo %startprg%\MalwareWiped %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwareWiped 6.1" (echo %startprg%\MalwareWiped %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwaresWipeds" (echo %startprg%\MalwaresWipeds %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwareWipePro" (echo %startprg%\MalwareWipePro %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MalwareWiper" (echo %startprg%\MalwareWiper %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Malware-Wipe" (echo %startprg%\Malware-Wipe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MovieBox" (echo %startprg%\MovieBox %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\MovieCommander" (echo %startprg%\MovieCommander %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\My Pass Generator" (echo %startprg%\My Pass Generator %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\PestCapture" (echo %startprg%\PestCapture %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\PestTrap" (echo %startprg%\PestTrap %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\PornPass Manager" (echo %startprg%\PornPass Manager %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\PornoPlayer" (echo %startprg%\PornoPlayer %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\PrivateVideo" (echo %startprg%\PrivateVideo %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Registry Cleaner" (echo %startprg%\Registry Cleaner %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SiteEntry" (echo %startprg%\SiteEntry %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SiteTicket" (echo %startprg%\SiteTicket %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyAxe" (echo %startprg%\SpyAxe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyCrush" (echo %startprg%\SpyCrush %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyDawn" (echo %startprg%\SpyDawn %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyGuard" (echo %startprg%\SpyGuard %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyFalcon" (echo %startprg%\SpyFalcon %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Spy-Heal" (echo %startprg%\Spy-Heal %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyHeal" (echo %startprg%\SpyHeal %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyHeals" (echo %startprg%\SpyHeals %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked" (echo %startprg%\SpyLocked %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 3.6" (echo %startprg%\SpyLocked 3.6 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 3.7" (echo %startprg%\SpyLocked 3.7 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 3.9" (echo %startprg%\SpyLocked 3.9 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 4.0" (echo %startprg%\SpyLocked 4.0 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 4.1" (echo %startprg%\SpyLocked 4.1 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyLocked 4.3" (echo %startprg%\SpyLocked 4.3 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyMarshal" (echo %startprg%\SpyMarshal %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpySheriff" (echo %startprg%\SpySheriff %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpyQuake2.com" (echo %startprg%\SpyQuake2.com %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareLocked" (echo %startprg%\SpywareLocked %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareLocked 3.3" (echo %startprg%\SpywareLocked 3.3 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareLocked 3.4" (echo %startprg%\SpywareLocked 3.4 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareLocked 3.5" (echo %startprg%\SpywareLocked 3.5 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareQuake" (echo %startprg%\SpywareQuake %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareQuake.com" (echo %startprg%\SpywareQuake.com %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\SpywareStrike" (echo %startprg%\SpywareStrike %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Trust Cleaner" (echo %startprg%\Trust Cleaner %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\vb" (echo %startprg%\vb %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Video iCodec" (echo %startprg%\Video iCodec %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VideoAccess" (echo %startprg%\VideoAccess %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VideoBox" (echo %startprg%\VideoBox %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VideoPlugin" (echo %startprg%\VideoPlugin %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusBlast" (echo %startprg%\VirusBlast %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Virus-Burst" (echo %startprg%\Virus-Burst %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusBurst" (echo %startprg%\VirusBurst %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusBurster" (echo %startprg%\VirusBurster %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusBursters" (echo %startprg%\VirusBursters %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\Virus-Bursters" (echo %startprg%\Virus-Bursters %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusProtectPro" (echo %startprg%\VirusProtectPro %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusProtectPro 3.5" (echo %startprg%\VirusProtectPro 3.5 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusProtectPro 3.6" (echo %startprg%\VirusProtectPro 3.6 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\VirusProtectPro 3.7" (echo %startprg%\VirusProtectPro 3.7 %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\X Password Generator" (echo %startprg%\X Password Generator %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\X Password Manager" (echo %startprg%\X Password Manager %sFound%>>%systemdrive%\rapport.txt)
if exist "%startprg%\XXXAccess" (echo %startprg%\XXXAccess %sFound%>>%systemdrive%\rapport.txt)

if exist "%startup%\.protected" (echo %startup%\.protected %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\antispysoldier.lnk" (echo %startup%\antispysoldier.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\autorun.exe" (echo %startup%\autorun.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\asheriff.lnk" (echo %startup%\asheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\findfast.exe" (echo %startup%\findfast.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\rAggge.exe" (echo %startup%\rAggge.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\processes.txt" (echo %startup%\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\spysheriff.lnk" (echo %startup%\spysheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\system.exe" (echo %startup%\system.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%startup%\titanshield.lnk" (echo %startup%\titanshield.lnk %sFound%>>%systemdrive%\rapport.txt)

if exist "%austartm%\Online Security Guide.url" (echo %austartm%\Online Security Guide.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartm%\PopUp Blocker.url" (echo %austartm%\PopUp Blocker.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartm%\Security Troubleshooting.url" (echo %austartm%\Security Troubleshooting.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartm%\Spyware Remover.url" (echo %austartm%\Spyware Remover.url %sFound%>>%systemdrive%\rapport.txt)

if exist "%austartprg%\AdwareSheriff" (echo %austartprg%\AdwareSheriff %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\AlfaCleaner" (echo %austartprg%\AlfaCleaner %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\Antispyware Soldier" (echo %austartprg%\Antispyware Soldier %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\P.S.Guard spyware remover" (echo %austartprg%\P.S.Guard spyware remover %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\SpySoldier" (echo %austartprg%\SpySoldier %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\SpywareKnight" (echo %austartprg%\SpywareKnight %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\SpywareSheriff" (echo %austartprg%\SpywareSheriff %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\Spyware Soft Stop" (echo %austartprg%\Spyware Soft Stop %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\TitanShield Antispyware" (echo %austartprg%\TitanShield Antispyware %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartprg%\WinHound spyware remover" (echo %austartprg%\WinHound spyware remover %sFound%>>%systemdrive%\rapport.txt)

if exist "%austartup%\.protected" (echo %austartup%\.protected %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartup%\autorun.exe" (echo %austartup%\autorun.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartup%\findfast.exe" (echo %austartup%\findfast.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%austartup%\Uninstall.exe" (echo %austartup%\Uninstall.exe %sFound%>>%systemdrive%\rapport.txt)

if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt" (echo C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt %sFound%>>%systemdrive%\rapport.txt)
if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt" (echo C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt %sFound%>>%systemdrive%\rapport.txt)








echo.>>%systemdrive%\rapport.txt
echo %sSearch% %favorites%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %favorites%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if exist "%favorites%\Antivirus Test Online.url" (echo %favorites%\Antivirus Test Online.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%favorites%\Online Security Test.url" (echo %favorites%\Online Security Test.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%favorites%\Error Cleaner.url" (echo %favorites%\Error Cleaner.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%favorites%\Privacy Protector.url" (echo %favorites%\Privacy Protector.url %sFound%>>%systemdrive%\rapport.txt)
if exist "%favorites%\Spyware&Malware Protection.url" (echo %favorites%\Spyware&Malware Protection.url %sFound%>>%systemdrive%\rapport.txt)





echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo %sSearch% Bureau...
echo »»»»»»»»»»»»»»»»»»»»»»»» Bureau>>%systemdrive%\rapport.txt
) else (
echo %sSearch% Desktop...
echo »»»»»»»»»»»»»»»»»»»»»»»» Desktop>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

pushd %desktop%

if exist "access" (echo %desktop%\access %sFound%>>%systemdrive%\rapport.txt)
if exist asfds (echo %desktop%\asfds %sFound%>>%systemdrive%\rapport.txt)
if exist BraveSentry.lnk (echo %desktop%\BraveSentry.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "domains" (echo %desktop%\domains %sFound%>>%systemdrive%\rapport.txt)
if exist "map.txt" (echo %desktop%\map.txt %sFound%>>%systemdrive%\rapport.txt)
if exist m00.exe (echo %desktop%\m00.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "AdwareSheriff.lnk" (echo %desktop%\AdwareSheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Air Tickets.url" (echo %desktop%\Air Tickets.url %sFound%>>%systemdrive%\rapport.txt)
if exist AlfaCleaner.lnk (echo %desktop%\AlfaCleaner.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Antispyware Soldier.lnk" (echo %desktop%\Antispyware Soldier.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist AntiVermeans.lnk (echo %desktop%\AntiVermeans.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist AntiVermins.lnk (echo %desktop%\AntiVermins.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist AntiVerminser.lnk (echo %desktop%\AntiVerminser.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist AntivirusGold.lnk (echo %desktop%\AntivirusGold.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist AntivirusGolden.lnk (echo %desktop%\AntivirusGolden.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "ContraVirus 2.0.lnk" (echo %desktop%\ContraVirus 2.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Big Tits.url" (echo %desktop%\Big Tits.url %sFound%>>%systemdrive%\rapport.txt)
if exist Blackjack.url (echo %desktop%\Blackjack.url %sFound%>>%systemdrive%\rapport.txt)
if exist Blowjob.url (echo %desktop%\Blowjob.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Britney Spears.url" (echo %desktop%\Britney Spears.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Car Insurance.url" (echo %desktop%\Car Insurance.url %sFound%>>%systemdrive%\rapport.txt)
if exist cdegfr (echo %desktop%\cdegfr %sFound%>>%systemdrive%\rapport.txt)
if exist "Cheap Cigarettes.url" (echo %desktop%\Cheap Cigarettes.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Cigarettes Discount.url" (echo %desktop%\Cigarettes Discount.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Credit Card.url" (echo %desktop%\Credit Card.url %sFound%>>%systemdrive%\rapport.txt)
if exist Cruises.url (echo %desktop%\Cruises.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Currency Trading.url" (echo %desktop%\Currency Trading.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Error Cleaner.url" (echo %desktop%\Error Cleaner.url %sFound%>>%systemdrive%\rapport.txt)
if exist fdsf (echo %desktop%\fdsf %sFound%>>%systemdrive%\rapport.txt)
if exist "Forex Trading.url" (echo %desktop%\Forex Trading.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Free Ringtones.url" (echo %desktop%\Free Ringtones.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Gift Ideas.url" (echo %desktop%\Gift Ideas.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Group Sex.url" (echo %desktop%\Group Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Home Loan.url" (echo %desktop%\Home Loan.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Key Generator.lnk" (echo %desktop%\Key Generator.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Lesbian Sex.url" (echo %desktop%\Lesbian Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist MalwareWipe.lnk (echo %desktop%\MalwareWipe.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist MalwareWiped.lnk (echo %desktop%\MalwareWiped.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "MalwareWiped 6.1.lnk" (echo %desktop%\MalwareWiped 6.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist MalwaresWipeds.lnk (echo %desktop%\MalwaresWipeds.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist MalwareWipePro.lnk (echo %desktop%\MalwareWipePro.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist MalwareWiper.lnk (echo %desktop%\MalwareWiper.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Malware-Wipe.lnk" (echo %desktop%\Malware-Wipe.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist MP3.url (echo %desktop%\MP3.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Mp3 Download.url" (echo %desktop%\Mp3 Download.url %sFound%>>%systemdrive%\rapport.txt)
if exist "My Pass Generator.lnk" (echo %desktop%\My Pass Generator.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Betting.url" (echo %desktop%\Online Betting.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Casino.url" (echo %desktop%\Online Casino.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Dating.url" (echo %desktop%\Online Dating.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Gambling.url" (echo %desktop%\Online Gambling.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Shopping.url" (echo %desktop%\Online Shopping.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Oral Sex.url" (echo %desktop%\Oral Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Party Poker.url" (echo %desktop%\Party Poker.url %sFound%>>%systemdrive%\rapport.txt)
if exist PestCapture.lnk (echo %desktop%\PestCapture.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist PestTrap.lnk (echo %desktop%\PestTrap.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist Pharmacy.url (echo %desktop%\Pharmacy.url %sFound%>>%systemdrive%\rapport.txt)
if exist Phentermine.url (echo %desktop%\Phentermine.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Play Poker.url" (echo %desktop%\Play Poker.url %sFound%>>%systemdrive%\rapport.txt)
if exist "PopUp Blocker.url" (echo %desktop%\PopUp Blocker.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Porn Dvd.url" (echo %desktop%\Porn Dvd.url %sFound%>>%systemdrive%\rapport.txt)
if exist "PornPass Manager.lnk" (echo %desktop%\PornPass Manager.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist Pornstars.url (echo %desktop%\Pornstars.url %sFound%>>%systemdrive%\rapport.txt)
if exist PrivacyProtector.url (echo %desktop%\PrivacyProtector.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Privacy Protector.url" (echo %desktop%\Privacy Protector.url %sFound%>>%systemdrive%\rapport.txt)
if exist "P.S.Guard spyware remover.lnk" (echo %desktop%\P.S.Guard spyware remover.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Registry Cleaner.lnk" (echo %desktop%\Registry Cleaner.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Real Estate.url" (echo %desktop%\Real Estate.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Remove Adware.url" (echo %desktop%\Remove Adware.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Remove Spyware.url" (echo %desktop%\Remove Spyware.url %sFound%>>%systemdrive%\rapport.txt)
if exist sdfdsf (echo %desktop%\sdfdsf %sFound%>>%systemdrive%\rapport.txt)
if exist sdfff (echo %desktop%\sdfff %sFound%>>%systemdrive%\rapport.txt)
if exist "Sex Personals.url" (echo %desktop%\Sex Personals.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Sport Betting.url" (echo %desktop%\Sport Betting.url %sFound%>>%systemdrive%\rapport.txt)
if exist SpyCrush.lnk (echo %desktop%\SpyCrush.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyCrush 3.1.lnk" (echo %desktop%\SpyCrush 3.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyDawn.lnk (echo %desktop%\SpyDawn.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyGuard.lnk (echo %desktop%\SpyGuard.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyFalcon.lnk (echo %desktop%\SpyFalcon.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist Spy-Heal.lnk (echo %desktop%\Spy-Heal.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyHeal.lnk (echo %desktop%\SpyHeal.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyHeals.lnk (echo %desktop%\SpyHeals.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpySheriff.lnk (echo %desktop%\SpySheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpySoldier.lnk (echo %desktop%\SpySoldier.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Spyware Remover.url" (echo %desktop%\Spyware Remover.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Spyware?Malware Protection.url" (echo %desktop%\Spyware?Malware Protection.url %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareKnight.lnk (echo %desktop%\SpywareKnight.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyLocked.lnk (echo %desktop%\SpyLocked.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 3.6.lnk" (echo %desktop%\SpyLocked 3.6.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 3.7.lnk" (echo %desktop%\SpyLocked 3.7.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 3.9.lnk" (echo %desktop%\SpyLocked 3.9.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 4.0.lnk" (echo %desktop%\SpyLocked 4.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 4.1.lnk" (echo %desktop%\SpyLocked 4.1.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpyLocked 4.3.lnk" (echo %desktop%\SpyLocked 4.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyMarshal.lnk (echo %desktop%\SpyMarshal.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareQuake.lnk (echo %desktop%\SpywareQuake.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpyQuake2.com.lnk (echo %desktop%\SpyQuake2.com.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareLocked.lnk (echo %desktop%\SpywareLocked.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpywareLocked 3.3.lnk" (echo %desktop%\SpywareLocked 3.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpywareLocked 3.4.lnk" (echo %desktop%\SpywareLocked 3.4.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SpywareLocked 3.5.lnk" (echo %desktop%\SpywareLocked 3.5.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareQuake.com.lnk (echo %desktop%\SpywareQuake.com.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareSheriff.lnk (echo %desktop%\SpywareSheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist SpywareStrike.lnk (echo %desktop%\SpywareStrike.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Spyware Soft Stop.lnk" (echo %desktop%\Spyware Soft Stop.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "SystemDoctor.url" (echo %desktop%\SystemDoctor.urlk %sFound%>>%systemdrive%\rapport.txt)
if exist "Texas Holdem.url" (echo %desktop%\Texas Holdem.url %sFound%>>%systemdrive%\rapport.txt)
if exist "TitanShield Antispyware.lnk" (echo %desktop%\TitanShield Antispyware.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Trust Cleaner.lnk" (echo %desktop%\Trust Cleaner.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist viagra.url (echo %desktop%\viagra.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Video Slots.url" (echo %desktop%\Video Slots.url %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusBlast v5.0.lnk" (echo %desktop%\VirusBlast v5.0.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "vb.lnk" (echo %desktop%\vb.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist Virus-Burst.lnk (echo %desktop%\Virus-Burst.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist VirusBurst.lnk (echo %desktop%\VirusBurst.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist VirusBurster.lnk (echo %desktop%\VirusBurster.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist VirusBursters.lnk (echo %desktop%\VirusBursters.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist Virus-Bursters.lnk (echo %desktop%\Virus-Bursters.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusProtectPro 3.3.lnk" (echo %desktop%\VirusProtectPro 3.3.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusProtectPro 3.4.lnk" (echo %desktop%\VirusProtectPro 3.4.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusProtectPro 3.5.lnk" (echo %desktop%\VirusProtectPro 3.5.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusProtectPro 3.6.lnk" (echo %desktop%\VirusProtectPro 3.6.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "VirusProtectPro 3.7.lnk" (echo %desktop%\VirusProtectPro 3.7.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist wdcevf (echo %desktop%\wdcevf %sFound%>>%systemdrive%\rapport.txt)
if exist wdcevf (echo %desktop%\wdcevf %sFound%>>%systemdrive%\rapport.txt)
if exist "WinAntiSpyware 2007.url" (echo %desktop%\WinAntiSpyware 2007.url %sFound%>>%systemdrive%\rapport.txt)
if exist "X Password Generator.lnk" (echo %desktop%\X Password Generator.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "x password manager.lnk" (echo %desktop%\x password manager.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist zxczxc (echo %desktop%\zxczxc %sFound%>>%systemdrive%\rapport.txt)


popd



pushd %audesktop%


if exist "Air Tickets.url" (echo %audesktop%\Air Tickets.url %sFound%>>%systemdrive%\rapport.txt)
if exist AntivirusGold.lnk (echo %audesktop%\AntivirusGold.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Big Tits.url" (echo %audesktop%\Big Tits.url %sFound%>>%systemdrive%\rapport.txt)
if exist Blackjack.url (echo %audesktop%\Blackjack.url %sFound%>>%systemdrive%\rapport.txt)
if exist Blowjob.url (echo %audesktop%\Blowjob.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Britney Spears.url" (echo %audesktop%\Britney Spears.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Car Insurance.url" (echo %audesktop%\Car Insurance.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Cheap Cigarettes.url" (echo %audesktop%\Cheap Cigarettes.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Cigarettes Discount.url" (echo %audesktop%\Cigarettes Discount.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Credit Card.url" (echo %audesktop%\Credit Card.url %sFound%>>%systemdrive%\rapport.txt)
if exist Cruises.url (echo %audesktop%\Cruises.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Currency Trading.url" (echo %audesktop%\Currency Trading.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Forex Trading.url" (echo %audesktop%\Forex Trading.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Free Ringtones.url" (echo %audesktop%\Free Ringtones.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Gift Ideas.url" (echo %audesktop%\Gift Ideas.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Group Sex.url" (echo %audesktop%\Group Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Home Loan.url" (echo %audesktop%\Home Loan.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Lesbian Sex.url" (echo %audesktop%\Lesbian Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Mp3 Download.url" (echo %audesktop%\Mp3 Download.url %sFound%>>%systemdrive%\rapport.txt)
if exist MP3.url (echo %audesktop%\MP3.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Betting.url" (echo %audesktop%\Online Betting.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Casino.url" (echo %audesktop%\Online Casino.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Dating.url" (echo %audesktop%\Online Dating.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Gambling.url" (echo %audesktop%\Online Gambling.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Online Security Guide.url" (echo %audesktop%\Online Security Guide.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Oral Sex.url" (echo %audesktop%\Oral Sex.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Party Poker.url" (echo %audesktop%\Party Poker.url %sFound%>>%systemdrive%\rapport.txt)
if exist Pharmacy.url (echo %audesktop%\Pharmacy.url %sFound%>>%systemdrive%\rapport.txt)
if exist Phentermine.url (echo %audesktop%\Phentermine.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Play Poker.url" (echo %audesktop%\Play Poker.url %sFound%>>%systemdrive%\rapport.txt)
if exist "PopUp Blocker.url" (echo %audesktop%\PopUp Blocker.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Porn Dvd.url" (echo %audesktop%\Porn Dvd.url %sFound%>>%systemdrive%\rapport.txt)
if exist Pornstars.url (echo %audesktop%\Pornstars.url %sFound%>>%systemdrive%\rapport.txt)
if exist "P.S.Guard spyware remover.lnk" (echo %audesktop%\P.S.Guard spyware remover.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Real Estate.url" (echo %audesktop%\Real Estate.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Remove Spyware.url" (echo %audesktop%\Remove Spyware.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Security Troubleshooting.url" (echo %audesktop%\Security Troubleshooting.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Sport Betting.url" (echo %audesktop%\Sport Betting.url %sFound%>>%systemdrive%\rapport.txt)
if exist SpySheriff.lnk (echo %audesktop%\SpySheriff.lnk %sFound%>>%systemdrive%\rapport.txt)
if exist "Spyware Remover.url" (echo %audesktop%\Spyware Remover.url %sFound%>>%systemdrive%\rapport.txt)
if exist viagra.url (echo %audesktop%\viagra.url %sFound%>>%systemdrive%\rapport.txt)
if exist "Texas Holdem.url" (echo %audesktop%\Texas Holdem.url %sFound%>>%systemdrive%\rapport.txt)
if exist "WinHound spyware remover.lnk" (echo %audesktop%\WinHound spyware remover.lnk %sFound%>>%systemdrive%\rapport.txt)

popd



echo.>>%systemdrive%\rapport.txt
echo %sSearch% %ProgramFiles%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %ProgramFiles% >>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if exist "%ProgramFiles%\paytime.exe" (echo %ProgramFiles%\paytime.exe %sFound%>>%systemdrive%\rapport.txt)
if exist "%ProgramFiles%\secure32.html" (echo %ProgramFiles%\secure32.html %sFound%>>%systemdrive%\rapport.txt)

if exist "%ProgramFiles%\AdwareDelete" echo %ProgramFiles%\AdwareDelete\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AdwareSheriff" echo %ProgramFiles%\AdwareSheriff\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AlfaCleaner" echo %ProgramFiles%\AlfaCleaner\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Antispyware Soldier" echo %ProgramFiles%\Antispyware Soldier\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVermeans" echo %ProgramFiles%\AntiVermeans\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVermins" echo %ProgramFiles%\AntiVermins\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVerminser" echo %ProgramFiles%\AntiVerminser\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntivirusGold" echo %ProgramFiles%\AntivirusGold\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntivirusGolden" echo %ProgramFiles%\AntivirusGolden\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Brain Codec" echo %ProgramFiles%\Brain Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\BraveSentry" echo %ProgramFiles%\BraveSentry\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\ContraVirus" echo %ProgramFiles%\ContraVirus\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Daily Weather Forecast" echo %ProgramFiles%\Daily Weather Forecast\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\DirectVideo" echo %ProgramFiles%\DirectVideo\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\dr.exe" echo %ProgramFiles%\dr.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\dr.exe~" echo %ProgramFiles%\dr.exe~ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\EliteCodec" echo %ProgramFiles%\EliteCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\eMedia Codec" echo %ProgramFiles%\eMedia Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\FreeVideo" echo %ProgramFiles%\FreeVideo\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Gold Codec" echo %ProgramFiles%\Gold Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQ Codec" echo %ProgramFiles%\HQ Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQvideo" echo %ProgramFiles%\HQvideo\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQVideoCodec" echo %ProgramFiles%\HQVideoCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iCodecPack" echo %ProgramFiles%\iCodecPack\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Image ActiveX Access" echo %ProgramFiles%\Image ActiveX Access\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Image ActiveX Object" echo %ProgramFiles%\Image ActiveX Object\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iMediaCodec" echo %ProgramFiles%\iMediaCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\IntCodec" echo %ProgramFiles%\IntCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Internet Security" echo %ProgramFiles%\Internet Security\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iVideoCodec" echo %ProgramFiles%\iVideoCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\JPEG Encoder" echo %ProgramFiles%\JPEG Encoder\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Key Generator" echo %ProgramFiles%\Key Generator\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWipe" echo %ProgramFiles%\MalwareWipe\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWiped" echo %ProgramFiles%\MalwareWiped\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwaresWipeds" echo %ProgramFiles%\MalwaresWipeds\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWipePro" echo %ProgramFiles%\MalwareWipePro\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWiper" echo %ProgramFiles%\MalwareWiper\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Malware-Wipe" echo %ProgramFiles%\Malware-Wipe\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Media-Codec" echo %ProgramFiles%\Media-Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MediaCodec" echo %ProgramFiles%\MediaCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MMediaCodec" echo %ProgramFiles%\MMediaCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MovieBox" echo %ProgramFiles%\MovieBox\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MovieCommander" echo %ProgramFiles%\MovieCommander\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MPVIDEOCODEC" echo %ProgramFiles%\MPVIDEOCODEC\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MSmessangerapi" echo %ProgramFiles%\MSmessangerapi\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\My Pass Generator" echo %ProgramFiles%\My Pass Generator\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MW" echo %ProgramFiles%\MW\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\NewMediaCodec" echo %ProgramFiles%\NewMediaCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\patcher.exe" echo %ProgramFiles%\patcher.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornMag Pass" echo %ProgramFiles%\PornMag Pass\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PCODEC" echo %ProgramFiles%\PCODEC\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Perfect Codec" echo %ProgramFiles%\Perfect Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PestCapture" echo %ProgramFiles%\PestCapture\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PestTrap" echo %ProgramFiles%\PestTrap\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornPass Manager" echo %ProgramFiles%\PornPass Manager\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PowerCodec" echo %ProgramFiles%\PowerCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornoPlayer" echo %ProgramFiles%\PornoPlayer\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PrivateVideo" echo %ProgramFiles%\PrivateVideo\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Protection Tools" echo %ProgramFiles%\Protection Tools\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PSGuard" echo %ProgramFiles%\PSGuard\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\P.S.Guard" echo %ProgramFiles%\P.S.Guard\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\QualityCodec" echo %ProgramFiles%\QualityCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\RegistryCleaner" echo %ProgramFiles%\RegistryCleaner\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Safety Bar" echo %ProgramFiles%\Safety Bar\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Search Maid" echo %ProgramFiles%\Search Maid\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Security IGuard" echo %ProgramFiles%\Security IGuard\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Security Toolbar" echo %ProgramFiles%\Security Toolbar\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Security Tools" echo %ProgramFiles%\Security Tools\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\serial.dat" echo %ProgramFiles%\serial.dat %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\serial.zip" echo %ProgramFiles%\serial.zip %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Silver Codec" echo %ProgramFiles%\Silver Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SiteEntry" echo %ProgramFiles%\SiteEntry\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SiteTicket" echo %ProgramFiles%\SiteTicket\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SoftCodec" echo %ProgramFiles%\SoftCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyAxe" echo %ProgramFiles%\SpyAxe\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyCrush" echo %ProgramFiles%\SpyCrush\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyCrush 3.1" echo %ProgramFiles%\SpyCrush 3.1\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyDawn" echo %ProgramFiles%\SpyDawn\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyGuard" echo %ProgramFiles%\SpyGuard\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyFalcon" echo %ProgramFiles%\SpyFalcon\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Spy-Heal" echo %ProgramFiles%\Spy-Heal\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyHeal" echo %ProgramFiles%\SpyHeal\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyHeals" echo %ProgramFiles%\SpyHeals\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked" echo %ProgramFiles%\SpyLocked\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.6" echo %ProgramFiles%\SpyLocked 3.6\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.7" echo %ProgramFiles%\SpyLocked 3.7\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.9" echo %ProgramFiles%\SpyLocked 3.9\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.0" echo %ProgramFiles%\SpyLocked 4.0\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.1" echo %ProgramFiles%\SpyLocked 4.1\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.3" echo %ProgramFiles%\SpyLocked 4.3\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpySheriff" echo %ProgramFiles%\SpySheriff\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyKiller" echo %ProgramFiles%\SpyKiller\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyQuake2.com" echo %ProgramFiles%\SpyQuake2.com\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyMarshal" echo %ProgramFiles%\SpyMarshal\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpySoldier" echo %ProgramFiles%\SpySoldier\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareKnight" echo %ProgramFiles%\SpywareKnight\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked" echo %ProgramFiles%\SpywareLocked\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.3" echo %ProgramFiles%\SpywareLocked 3.3\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.4" echo %ProgramFiles%\SpywareLocked 3.4\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.5" echo %ProgramFiles%\SpywareLocked 3.5\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareQuake" echo %ProgramFiles%\SpywareQuake\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareQuake.com" echo %ProgramFiles%\SpywareQuake.com\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareSheriff" echo %ProgramFiles%\SpywareSheriff\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareStrike" echo %ProgramFiles%\SpywareStrike\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Spyware Soft Stop" echo %ProgramFiles%\Spyware Soft Stop\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\strCodec" echo %ProgramFiles%\strCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Super Codec" echo %ProgramFiles%\Super Codec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TitanShield Antispyware" echo %ProgramFiles%\TitanShield Antispyware\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TrueCodec" echo %ProgramFiles%\TrueCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Trust Cleaner" echo %ProgramFiles%\Trust Cleaner\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TrustIn Bar" echo %ProgramFiles%\TrustIn Bar\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TrustIn Contextual" echo %ProgramFiles%\TrustIn Contextual\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TrustIn Popups" echo %ProgramFiles%\TrustIn Popups\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\user32.exe" echo %ProgramFiles%\user32.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Virtual Maid" echo %ProgramFiles%\Virtual Maid\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\WinAntiSpyPro" echo %ProgramFiles%\WinAntiSpyPro\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\WinHound" echo %ProgramFiles%\WinHound\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\WinMediaCodec" echo %ProgramFiles%\WinMediaCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\widupdate.exe" echo %ProgramFiles%\widupdate.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\widupdate.exe~" echo %ProgramFiles%\widupdate.exe~ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\vb" echo %ProgramFiles%\vb\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoAccess" echo %ProgramFiles%\VideoAccess\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoAccessCodec" echo %ProgramFiles%\VideoAccessCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoBox" echo %ProgramFiles%\VideoBox\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VidCodecs" echo %ProgramFiles%\VidCodecs\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoPlugin" echo %ProgramFiles%\VideoPlugin\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video Access ActiveX Object" echo %ProgramFiles%\Video Access ActiveX Object\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video ActiveX Access" echo %ProgramFiles%\Video ActiveX Access\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video ActiveX Object" echo %ProgramFiles%\Video ActiveX Object\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video AX Object" echo %ProgramFiles%\Video AX Object\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video iCodec" echo %ProgramFiles%\Video iCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoCompressionCodec" echo %ProgramFiles%\VideoCompressionCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoKeyCodec" echo %ProgramFiles%\VideoKeyCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideosCodec" echo %ProgramFiles%\VideosCodec\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBlast" echo %ProgramFiles%\VirusBlast\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Virus-Burst" echo %ProgramFiles%\Virus-Burst\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBurst" echo %ProgramFiles%\VirusBurst\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBurster" echo %ProgramFiles%\VirusBurster\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBursters" echo %ProgramFiles%\VirusBursters\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Virus-Bursters" echo %ProgramFiles%\Virus-Bursters\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.3" echo %ProgramFiles%\VirusProtectPro 3.3\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.4" echo %ProgramFiles%\VirusProtectPro 3.4\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.5" echo %ProgramFiles%\VirusProtectPro 3.5\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.6" echo %ProgramFiles%\VirusProtectPro 3.6\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.7" echo %ProgramFiles%\VirusProtectPro 3.7\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Win32p1Messenger" echo %ProgramFiles%\Win32p1Messenger\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Win32z1Messenger" echo %ProgramFiles%\Win32z1Messenger\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\X Password Generator" echo %ProgramFiles%\X Password Generator\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\X Password Manager" echo %ProgramFiles%\X Password Manager\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\XXXAccess" echo %ProgramFiles%\XXXAccess\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\ZipCodec" echo %ProgramFiles%\ZipCodec\ %sFound%>>%systemdrive%\rapport.txt

if exist "%ProgramFiles%\internet explorer\ieengine.exe" echo %ProgramFiles%\internet explorer\ieengine.exe %sFound%>>%systemdrive%\rapport.txt

if exist "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\muwq\" echo %ProgramFiles%\Fichiers communs\muwq\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\muwq\" echo %ProgramFiles%\Common Files\muwq\ %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" echo %ProgramFiles%\Fichiers communs\Windows\services32.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Windows\services32.exe" echo %ProgramFiles%\Common Files\Windows\services32.exe %sFound%>>%systemdrive%\rapport.txt

if exist "%ProgramFiles%\Common Files\VCClient\VCMain.exe" echo %ProgramFiles%\Common Files\VCClient\VCMain.exe %sFound%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\VCClient\VCClient.exe" echo %ProgramFiles%\Common Files\VCClient\VCClient.exe %sFound%>>%systemdrive%\rapport.txt
















 
if exist %syspath%\intell32.exe goto DateFile
goto sudderltd

:DateFile
dir %syspath%\intell32.exe /4 /A /N /-C>result.txt
type result.txt | find /i "intell32.exe">result2.txt
for /f "tokens=1" %%a in (result2.txt) do set filedate=%%a

echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo %sSearch% des fichiers cr^‚^‚s le %filedate%...
echo »»»»»»»»»»»»»»»»»»»»»»»» Recherche fichiers créés le %filedate%>>%systemdrive%\rapport.txt
echo !!! Attention, les fichiers qui suivent ne sont pas forcément infectés !!!>>%systemdrive%\rapport.txt
) else (
echo %sSearch% files created on %filedate%...
echo »»»»»»»»»»»»»»»»»»»»»»»» Scanning files created on %filedate%>>%systemdrive%\rapport.txt
echo !!! Attention, follow files are not inevitably infected !!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

dir %HOMEDRIVE%\*.* /4 /A /N /-C | find /i "%filedate%">result.txt 
for /f "tokens=4" %%a in (result.txt) do echo %HOMEDRIVE%\%%a>>%systemdrive%\rapport.txt
dir %windir%\*.* /4 /A /N /-C | find /i "%filedate%">result.txt 
for /f "tokens=4" %%a in (result.txt) do echo %windir%\%%a>>%systemdrive%\rapport.txt
dir %syspath%\*.* /4 /A /N /-C | find /i "%filedate%">result.txt 
for /f "tokens=4" %%a in (result.txt) do echo %syspath%\%%a>>%systemdrive%\rapport.txt

if exist result.txt del result.txt
if exist result2.txt del result2.txt
goto sudderltd





:sudderltd
echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo %sSearch% pr^‚sence de cl^‚s corrompues
echo »»»»»»»»»»»»»»»»»»»»»»»» Clés corrompues>>%systemdrive%\rapport.txt
) else (
echo %sSearch% corrupted keys
echo »»»»»»»»»»»»»»»»»»»»»»»» Corrupted keys>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

regedit.exe /e %systemdrive%\SHUDDERLTD.txt "HKEY_LOCAL_MACHINE\SOFTWARE\SHUDDERLTD"
IF EXIST %systemdrive%\SHUDDERLTD.txt (
echo HKLM\SOFTWARE\SHUDDERLTD %sFound%>>%systemdrive%\rapport.txt
del %systemdrive%\SHUDDERLTD.txt
)

regedit.exe /e %systemdrive%\PSGuard.txt "HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.com"
IF EXIST %systemdrive%\PSGuard.txt (
echo HKLM\SOFTWARE\PSGuard.com %sFound%>>%systemdrive%\rapport.txt
del %systemdrive%\PSGuard.txt
)

regedit.exe /e %systemdrive%\WinHound.txt "HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com"
IF EXIST %systemdrive%\WinHound.txt (
echo HKLM\SOFTWARE\WinHound.com %sFound%>>%systemdrive%\rapport.txt
del %systemdrive%\WinHound.txt
)





echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo %sSearch% ^‚l^‚ments du bureau
echo »»»»»»»»»»»»»»»»»»»»»»»» Eléments du bureau>>%systemdrive%\rapport.txt
) else (
echo %sSearch% Desktop Components
echo »»»»»»»»»»»»»»»»»»»»»»»» Desktop Components>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt 
IF EXIST desktop.txt del desktop.txt
regedit.exe /e desktop.txt "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\0"
IF EXIST desktop.txt (
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\0]>>%systemdrive%\rapport.txt
type desktop.txt | find /i "Source">>%systemdrive%\rapport.txt
type desktop.txt | find /i "SubscribedURL">>%systemdrive%\rapport.txt
type desktop.txt | find /i "FriendlyName">>%systemdrive%\rapport.txt
)
IF EXIST desktop.txt del desktop.txt

echo.>>%systemdrive%\rapport.txt 

IF EXIST desktop.txt del desktop.txt
regedit.exe /e desktop.txt "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\1"
IF EXIST desktop.txt (
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\1]>>%systemdrive%\rapport.txt
type desktop.txt | find /i "Source">>%systemdrive%\rapport.txt
type desktop.txt | find /i "SubscribedURL">>%systemdrive%\rapport.txt
type desktop.txt | find /i "FriendlyName">>%systemdrive%\rapport.txt
)
IF EXIST desktop.txt del desktop.txt

IF EXIST desktop.txt del desktop.txt
regedit.exe /e desktop.txt "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\2"
IF EXIST desktop.txt (
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\2]>>%systemdrive%\rapport.txt
type desktop.txt | find /i "Source">>%systemdrive%\rapport.txt
type desktop.txt | find /i "SubscribedURL">>%systemdrive%\rapport.txt
type desktop.txt | find /i "FriendlyName">>%systemdrive%\rapport.txt
)
IF EXIST desktop.txt del desktop.txt






echo %sSearch% Sharedtaskscheduler
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» Sharedtaskscheduler>>%systemdrive%\rapport.txt
if %lang%==fra (
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

SrchSTS -w>>%systemdrive%\rapport.txt





echo %sSearch% AppInit_DLLs
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» AppInit_DLLs>>%systemdrive%\rapport.txt
if %lang%==fra (
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
swreg save "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows" tmp.hiv
IF EXIST tmp.hiv (
dumphive tmp.hiv tmp.txt >NUL
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>%systemdrive%\rapport.txt
type tmp.txt | find /i "AppInit_DLLs">>%systemdrive%\rapport.txt
)
IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
echo.>>%systemdrive%\rapport.txt






echo %sSearch% Winlogon:System
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» Winlogon.System>>%systemdrive%\rapport.txt
if %lang%==fra (
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
IF EXIST tmp3.txt del tmp3.txt
swreg save "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" tmp.hiv

dumphive tmp.hiv tmp.txt >NUL
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>%systemdrive%\rapport.txt
type tmp.txt | find /i /V "Userinit">tmp2.txt
type tmp2.txt | find /i /V "Dllname">tmp.txt
type tmp.txt | find /i /V "system32">tmp2.txt
type tmp2.txt | find /i "System">>%systemdrive%\rapport.txt
type tmp2.txt | find /i "System">tmp.txt
type tmp.txt | find /i "kd">tmp2.txt
for /f "tokens=* delims=" %%a in (tmp2.txt) do echo %%a>tmp3.txt
if exist tmp3.txt goto Scan_KD
goto ScanEnd_KD

:Scan_KD
for /f "tokens=2 delims==" %%a in (tmp3.txt) do echo %%a>tmp.txt

echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-1)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-5)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.exe
echo.>>%systemdrive%\rapport.txt
echo %file% %KDMess%>>%systemdrive%\rapport.txt
if %FSType%==FAT32 echo %RKScan%>>%systemdrive%\rapport.txt

:ScanEnd_KD
IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
IF EXIST tmp3.txt del tmp3.txt
set file=
echo.>>%systemdrive%\rapport.txt





echo %sSearch% Rustock
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» Rustock>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\xpdx" >nul
swreg save "HKLM\System\CurrentControlSet\Services\xpdx" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\xpdx" >nul
if NOT EXIST tmp.hiv echo %xpdxMess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\xpdt" >nul
swreg save "HKLM\System\CurrentControlSet\Services\xpdt" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\xpdt" >nul
if NOT EXIST tmp.hiv echo %xpdtMess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\huy32" >nul
swreg save "HKLM\System\CurrentControlSet\Services\huy32" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\huy32" >nul
if NOT EXIST tmp.hiv echo %huy32Mess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\pe386" >nul
swreg save "HKLM\System\CurrentControlSet\Services\pe386" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\pe386" >nul
if NOT EXIST tmp.hiv echo %pe386Mess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\lzx32" >nul
swreg save "HKLM\System\CurrentControlSet\Services\lzx32" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\lzx32" >nul
if NOT EXIST tmp.hiv echo %lzx32Mess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv
swreg add "HKLM\System\CurrentControlSet\Services\msguard" >nul
swreg save "HKLM\System\CurrentControlSet\Services\msguard" tmp.hiv >nul
swreg delete "HKLM\System\CurrentControlSet\Services\msguard" >nul
if NOT EXIST tmp.hiv echo %msguardMess%>>%systemdrive%\rapport.txt
if EXIST tmp.hiv del tmp.hiv

echo.>>%systemdrive%\rapport.txt






echo %sSearch% DNS
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

Call :ScanDNS

echo.>>%systemdrive%\rapport.txt







goto wininetscan



:wininetscan
if %lang%==fra (
echo %sSearch% infection wininet.dll
echo »»»»»»»»»»»»»»»»»»»»»»»» %sSearch% infection wininet.dll>>%systemdrive%\rapport.txt
) else (
echo %sSearch% wininet.dll infection
echo »»»»»»»»»»»»»»»»»»»»»»»» %sSearch% for wininet.dll infection>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

findstr /m /I "OLEADM" %syspath%\wininet.dll>result.txt
for /F "TOKENS=* DELIMS=" %%A IN (result.txt) do echo wininet.dll %sInfect%>infected.txt
findstr /m /I "OLEEXT" %syspath%\wininet.dll>result.txt
for /F "TOKENS=* DELIMS=" %%A IN (result.txt) do echo wininet.dll %sInfect%>infected.txt
del result.txt
if exist infected.txt (
del infected.txt
echo.
echo %syspath%\wininet.dll %sInfect2%
echo %syspath%\wininet.dll %sInfect%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» %sWiniSearch%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
dir %systemroot%\wininet.dll /a h /s>>%systemdrive%\rapport.txt
)


echo.
echo %sEnd%
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» %sEnd%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
if exist CheckVersion.vbs del CheckVersion.vbs
if exist result2.txt del result2.txt
start %windir%\notepad.exe %systemdrive%\rapport.txt
goto menu












:fix

cls
echo %fixname% %fixvers%
echo %fixname% %fixvers%>%systemdrive%\rapport.txt
echo.
echo.>>%systemdrive%\rapport.txt
echo %sScanDate% %time%, %date%>>%systemdrive%\rapport.txt
for /f "Tokens=*" %%i in ('cd') do set CurDir=%%i
echo %sRunFrom% %CurDir%>>%systemdrive%\rapport.txt
IF ERRORLEVEL 1 (
echo %sRunFrom% >>%systemdrive%\rapport.txt
cd >>%systemdrive%\rapport.txt
)
for /f "Tokens=*" %%i in ('ver') do set Version=%%i
echo OS: %Version% - %OS%>>%systemdrive%\rapport.txt
echo %sFSType% %FSType%>>%systemdrive%\rapport.txt
if not defined safeboot_option echo %SafeMWarn%>>%systemdrive%\rapport.txt
if defined safeboot_option echo %SafeMDisp%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt



if %lang%==fra (
echo »»»»»»»»»»»»»»»»»»»»»»»» SharedTaskScheduler Avant SmitFraudFix>>%systemdrive%\rapport.txt
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo »»»»»»»»»»»»»»»»»»»»»»»» SharedTaskScheduler Before SmitFraudFix>>%systemdrive%\rapport.txt
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt
SrchSTS -w>>%systemdrive%\rapport.txt




echo %sProcess%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %sProcess%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

process -k explorer.exe >NUL

if exist "%syspath%\browsela.dll" ( 
process -k rundll32.exe >NUL
process -k smss.exe >NUL
process -k winlogon.exe >NUL
Set DoRestart=1
)

if exist "%syspath%\hadjajr.ini" ( 
copy exit.exe %syspath%\hadjajr.ini >NUL
)

if exist "%syspath%\hanonvt.ini" ( 
copy exit.exe %syspath%\hanonvt.ini >NUL
)

if exist "%syspath%\hrum.txt" ( 
copy exit.exe %syspath%\hrum.txt >NUL
)

if exist "%syspath%\hrum323.txt" ( 
copy exit.exe %syspath%\hrum323.txt >NUL
)

swsc stop AlfaCleanerService >NUL
swsc delete AlfaCleanerService >NUL

if exist "%syspath%\drives\pnpdrv.sys" ( 
swsc delete pnpdrv >NUL
)

if exist "%syspath%\msdrives\driverpp.sys" ( 
swsc delete driverpp >NUL
)

if exist "%syspath%\policies\ppdriver.sys" ( 
swsc delete ppdriver >NUL
)

Process -k aapfr.exe >NUL
Process -k eooyt.exe >NUL
Process -k rAggge.exe >NUL
Process -k rtwwf.exe >NUL
Process -k qwwyyu.exe >NUL
Process -k xxfep.exe >NUL

Process -k 0mcamcap.exe >NUL
Process -k 1.tmp >NUL
Process -k 3.tmp >NUL
Process -k 4.tmp >NUL
Process -k 977efcdb.exe >NUL
Process -k a.exe >NUL
Process -k adsmart.exe >NUL
Process -k adtech2005.exe >NUL
Process -k adtech2006a.exe >NUL
Process -k AlfaCleaner.exe >NUL
Process -k antispysoldier.exe >NUL
Process -k AntiSpy.exe >NUL
Process -k afqgda.exe >NUL
Process -k anti_troj.exe >NUL
Process -k AntiVermeans.exe >NUL
Process -k AntiVermins.exe >NUL
Process -k AntiVerminser.exe >NUL
Process -k AntivirusGold.exe >NUL
Process -k AntivirusGolden.exe >NUL
Process -k asheriff.exe >NUL
Process -k atmclk.exe >NUL
Process -k atzrdada.exe >NUL
Process -k autosys.exe >NUL
Process -k avp.exe >NUL
Process -k batserv2.exe >NUL
Process -k bikini.exe >NUL
Process -k BraveSentry.exe >NUL
Process -k bsw.exe >NUL
Process -k bu.exe >NUL
Process -k bxproxy.exe >NUL
Process -k cmd32.exe >NUL
Process -k cmdtel.exe >NUL
Process -k combo.exe >NUL
Process -k ContraVirusPro.exe >NUL
Process -k ctpmon.exe >NUL
Process -k contextplus.exe >NUL
Process -k CWS_iestart.exe >NUL
Process -k d3dn32.exe >NUL
Process -k d3pb.exe >NUL
Process -k dcomcfg.exe >NUL
Process -k dlh9jkdq1.exe >NUL
Process -k dlh9jkdq2.exe >NUL
Process -k dlh9jkdq3.exe >NUL
Process -k dlh9jkdq4.exe >NUL
Process -k dlh9jkdq5.exe >NUL
Process -k dlh9jkdq6.exe >NUL
Process -k dlh9jkdq7.exe >NUL
Process -k doser.exe >NUL
Process -k dfndr.exe >NUL
Process -k dfndra.exe >NUL
Process -k dfrgsrv.exe >NUL
Process -k dr.exe >NUL
Process -k drsmartload1.exe >NUL
Process -k drsmartload45g.exe >NUL
Process -k drsmartload46g.exe >NUL
Process -k drsmartload95a.exe >NUL
Process -k drsmartload849a.exe >NUL
Process -k drsmartload849g.exe >NUL
Process -k dxole32.exe >NUL
Process -k ecsiin.stub.exe >NUL
Process -k efsdfgxg.exe >NUL
Process -k ekvrlfzz.exe >NUL
Process -k exa32.exe >NUL
Process -k exeha2.exe >NUL
Process -k exeha3.exe >NUL
Process -k gimmysmileys.exe >NUL
Process -k gimmysmileys1.exe >NUL
Process -k gimmysmileys2.exe >NUL
Process -k gimmysmileys3.exe >NUL
Process -k gimmysmileys4.exe >NUL
Process -k gimmysmileys5.exe >NUL
Process -k gimmysmileys6.exe >NUL
Process -k gimmysmileys7.exe >NUL
Process -k gimmysmileys8.exe >NUL
Process -k gimmysmileys9.exe >NUL
Process -k gopa.exe >NUL
Process -k gunist.exe >NUL
Process -k helper.exe >NUL
Process -k hookdump.exe >NUL
Process -k iedrv.exe >NUL
Process -k iedrvctrl.exe >NUL
Process -k ieengine.exe >NUL
Process -k iexplorer.exe >NUL
Process -k ieyi.exe >NUL
Process -k imsmain.exe >NUL
Process -k imsmn.exe >NUL
Process -k intel32.exe >NUL
Process -k intell321.exe >NUL
Process -k intell32.exe >NUL
Process -k intmon.exe >NUL
Process -k intmonp.exe >NUL
Process -k intxt.exe >NUL
Process -k ipmon.exe >NUL
Process -k isamonitor.exe >NUL
Process -k isamini.exe >NUL
Process -k isamntr.exe >NUL
Process -k ishost.exe >NUL
Process -k ismini.exe >NUL
Process -k ismon.exe >NUL
Process -k isnotify.exe >NUL
Process -k issearch.exe >NUL
Process -k kernels8.exe >NUL
Process -k kernels32.exe >NUL
Process -k kernels64.exe >NUL
Process -k keyboard.exe >NUL
Process -k keyboard1.exe >NUL
Process -k keyboard2.exe >NUL
Process -k keyboard3.exe >NUL
Process -k keyboard4.exe >NUL
Process -k keyboard5.exe >NUL
Process -k keyboard6.exe >NUL
Process -k keyboard7.exe >NUL
Process -k keyboard8.exe >NUL
Process -k keyboard9.exe >NUL
Process -k kl.exe >NUL
Process -k kl1.exe >NUL
Process -k kybrd.exe >NUL
Process -k latest.exe >NUL
Process -k lich.exe >NUL
Process -k links.exe >NUL
Process -k ll.exe >NUL
Process -k loadadv728.exe >NUL
Process -k loader.exe >NUL
Process -k main.exe >NUL
Process -k MalwareWipe.exe >NUL
Process -k MalwareWiped.exe >NUL
Process -k "MalwareWiped 6.1.exe" >NUL
Process -k MalwareWipeds.exe >NUL
Process -k MalwareWipePro.exe >NUL
Process -k MalwareWiper.exe >NUL
Process -k "Malware-Wipe.exe" >NUL
Process -k maxd1.exe >NUL
Process -k maxd64.exe >NUL
Process -k mirarsearch_toolbar.exe >NUL
Process -k mgrs.exe >NUL
Process -k mxd.exe >NUL
Process -k mousepad.exe >NUL
Process -k mousepad1.exe >NUL
Process -k mousepad2.exe >NUL
Process -k mousepad3.exe >NUL
Process -k mousepad4.exe >NUL
Process -k mousepad5.exe >NUL
Process -k mousepad6.exe >NUL
Process -k mousepad7.exe >NUL
Process -k mousepad8.exe >NUL
Process -k mousepad9.exe >NUL
Process -k ms1.exe >NUL
Process -k msdrv.exe >NUL
Process -k msdrvctrl.exe >NUL
Process -k msmapi32.exe >NUL
Process -k mscornet.exe >NUL
Process -k mslog.exe >NUL
Process -k mssearchnet.exe >NUL
Process -k mshlpp.exe >NUL
Process -k msmsgs.exe >NUL
Process -k msole32.exe >NUL
Process -k mstss.exe >NUL
Process -k msvcp.exe >NUL
Process -k mswinb32.exe >NUL
Process -k mswinf32.exe >NUL
Process -k MTE3NDI6ODoxNg.exe >NUL
Process -k multitran.exe >NUL
Process -k muwqa.exe >NUL
Process -k muwql.exe >NUL
Process -k muwqm.exe >NUL
Process -k muwqp.exe >NUL
Process -k netfilt4.exe >NUL
Process -k newname1.exe >NUL
Process -k newname2.exe >NUL
Process -k newname3.exe >NUL
Process -k newname4.exe >NUL
Process -k newname5.exe >NUL
Process -k newname6.exe >NUL
Process -k newname7.exe >NUL
Process -k newname8.exe >NUL
Process -k newname9.exe >NUL
Process -k NTCommLib3.exe >NUL
Process -k ntdetecd.exe >NUL
Process -k ntnc.exe >NUL
Process -k ntps.exe >NUL
Process -k nvctrl.exe >NUL
Process -k nwnm.exe >NUL
Process -k officescan.exe >NUL
Process -k ole32vbs.exe >NUL
Process -k ongi.exe >NUL
Process -k osaupd.exe >NUL
Process -k parad.raw.exe >NUL
Process -k paradise.raw.exe >NUL
Process -k patcher.exe >NUL
Process -k paytime.exe >NUL
Process -k PestCapture.exe >NUL
Process -k PestTrap.exe >NUL
Process -k pigglett.exe >NUL
Process -k plugin.exe >NUL
Process -k pmmnt.exe >NUL
Process -k pmmon.exe >NUL
Process -k pmsngr.exe >NUL
Process -k pmsnrr.exe >NUL
Process -k policyverifier.exe >NUL
Process -k pop06ap2.exe >NUL
Process -k popuper.exe >NUL
Process -k pornpassmanager.exe >NUL
Process -k printer.exe >NUL
Process -k priva.exe >NUL
Process -k qjrkvy.exe >NUL
Process -k r.exe >NUL
Process -k reger.exe >NUL
Process -k RegistryCleaner.exe >NUL
Process -k regperf.exe >NUL
Process -k repigsp.exe >NUL
Process -k runsrv32.exe >NUL
Process -k sachostc.exe >NUL
Process -k sachostp.exe >NUL
Process -k sachosts.exe >NUL
Process -k sachostx.exe >NUL
Process -k sb6i.exe >NUL
Process -k sdfdil.exe >NUL
Process -k sdkqq.exe >NUL
Process -k sender.exe >NUL
Process -k shdochp.exe >NUL
Process -k shdocsvc.exe >NUL
Process -k shell.exe >NUL
Process -k shell386.exe >NUL
Process -k shnlog.exe >NUL
Process -k services32.exe >NUL
Process -k smartdrv.exe >NUL
Process -k socks.exe >NUL
Process -k split.exe >NUL
Process -k split1.exe >NUL
Process -k split2.exe >NUL
Process -k spoolvs.exe >NUL
Process -k Spykiller.exe >NUL
Process -k spoolsrv32.exe >NUL
Process -k spyaxe.exe >NUL
Process -k SpyCrush.exe >NUL
Process -k "SpyCrush 3.1.exe" >NUL
Process -k SpyDawn.exe >NUL
Process -k spyguard.exe >NUL
Process -k spyguard_monitor.exe >NUL
Process -k SpyFalcon.exe >NUL
Process -k Spy-Heal.exe >NUL
Process -k SpyHeal.exe >NUL
Process -k SpyHeals.exe >NUL
Process -k SpyLocked.exe >NUL
Process -k "SpyLocked 3.6.exe" >NUL
Process -k "SpyLocked 3.7.exe" >NUL
Process -k "SpyLocked 3.9.exe" >NUL
Process -k "SpyLocked 4.0.exe" >NUL
Process -k "SpyLocked 4.1.exe" >NUL
Process -k "SpyLocked 4.3.exe" >NUL
Process -k SpyMarshal.exe >NUL
Process -k spysheriff.exe >NUL
Process -k Spy-Locked.exe >NUL
Process -k Spy-Quake2.exe >NUL
Process -k spysoldier.exe >NUL
Process -k spywareknight.exe >NUL
Process -k SpywareLock.exe >NUL
Process -k SpywareLocked.exe >NUL
Process -k "SpywareLocked 3.5.exe" >NUL
Process -k SpywareQuake.exe >NUL
Process -k Spyware-Quake.exe >NUL
Process -k spywarestrike.exe >NUL
Process -k "Spyware Soft Stop.exe" >NUL
Process -k sumsw32.exe >NUL
Process -k susp.exe >NUL
Process -k svchop.exe >NUL
Process -k svchosts.exe >NUL
Process -k svcnt.exe >NUL
Process -k svcnt32.exe >NUL
Process -k svwhost.exe >NUL
Process -k symsvcsa.exe >NUL
Process -k sysbho.exe >NUL
Process -k sysen.exe >NUL
Process -k sysinit32z.exe >NUL
Process -k sysjv32.exe >NUL
Process -k sysldr32.exe >NUL
Process -k sysmonms.exe >NUL
Process -k System32fab.exe >NUL
Process -k sysvcs.exe >NUL
Process -k sysvx.exe >NUL
Process -k sysvx_.exe >NUL
Process -k sywsvcs.exe >NUL
Process -k taras.exe >NUL
Process -k tcpipmon.exe >NUL
Process -k tcpservice2.exe >NUL
Process -k tctool.exe >NUL
Process -k temp.000.exe >NUL
Process -k tetriz3.exe >NUL
Process -k TheMatrixHasYou.exe >NUL
Process -k ticads.exe >NUL
Process -k timessquare.exe >NUL
Process -k titanshield.exe >NUL
Process -k tool1.exe >NUL
Process -k tool2.exe >NUL
Process -k tool3.exe >NUL
Process -k tool4.exe >NUL
Process -k tool5.exe >NUL
Process -k toolbar.exe >NUL
Process -k tpopup.exe >NUL
Process -k truetype.exe >NUL
Process -k TrustCleaner.exe >NUL
Process -k trustinbar.exe >NUL
Process -k TrustInPopups.exe >NUL
Process -k tse.exe >NUL
Process -k uninst.exe >NUL
Process -k Uninstall.exe >NUL
Process -k uninstDsk >NUL
Process -k uninstIU.exe >NUL
Process -k updchk.exe >NUL
Process -k url.exe >NUL
Process -k user32.exe >NUL
Process -k users32.exe >NUL
Process -k VCClient.exe >NUL
Process -k VCMain.exe >NUL
Process -k vb.exe >NUL
Process -k VirusBlast.exe >NUL
Process -k "Virus-Burst.exe" >NUL
Process -k VirusBurst.exe >NUL
Process -k VirusBurster.exe >NUL
Process -k VirusBursters.exe >NUL
Process -k "virus-bursters.exe" >NUL
Process -k "VirusProtectPro 3.3.exe" >NUL
Process -k "VirusProtectPro 3.4.exe" >NUL
Process -k "VirusProtectPro 3.5.exe" >NUL
Process -k "VirusProtectPro 3.6.exe" >NUL
Process -k "VirusProtectPro 3.7.exe" >NUL
Process -k w8673492.exe >NUL
Process -k weather.exe >NUL
Process -k web.exe >NUL
Process -k win64.exe >NUL
Process -k WinAvX.exe >NUL
Process -k WinAvXX.exe >NUL
Process -k wincrt.exe >NUL
Process -k windesktop.exe >NUL
Process -k WinHound.exe >NUL
Process -k wininet.exe >NUL
Process -k winldra.exe >NUL
Process -k winmuse.exe >NUL
Process -k winnook.exe >NUL
Process -k winsrv32.exe >NUL
Process -k winstall.exe >NUL
Process -k winsysupd.exe >NUL
Process -k winsysban.exe >NUL
Process -k winsysban8.exe >NUL
Process -k winntify.exe >NUL
Process -k widupdate.exe >NUL
Process -k wn0008.exe >NUL
Process -k wp.exe >NUL
Process -k wupdmgr.exe >NUL
Process -k xpassgenerator.exe >NUL
Process -k xpassmanager.exe >NUL
Process -k xpupdate.exe >NUL
Process -k xpuupdate.exe >NUL
Process -k xxx.exe >NUL
Process -k yaemu.exe >NUL
Process -k z11.exe >NUL
Process -k z12.exe >NUL
Process -k z13.exe >NUL
Process -k z14.exe >NUL
Process -k z15.exe >NUL
Process -k z16.exe >NUL
Process -k zloader3.exe >NUL







echo.>>%systemdrive%\rapport.txt
echo hosts...
echo »»»»»»»»»»»»»»»»»»»»»»»» hosts>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt













if exist tmp.txt del tmp.txt

attrib -r -s -h %syspath%\drivers\etc\hosts
type %syspath%\drivers\etc\hosts | find /v "arovax.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "bleepingcomputer.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "boskak.za.net">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "bullguard.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "castlecops.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "compu-docs.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "computing.net">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "dell.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "depannetonpc.net">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "digitaltrends.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "ewido.net">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "geekstogo.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "greyknight17.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "idg.pl">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "infos-du-net.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "innovative-sol.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "lavasoftsupport.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "lockergnome.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "majorgeeks.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "microsoft.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "mytechsupport.ca">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "pandasoftware.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "prevx.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "siri.urz.free.fr">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "spybot.info">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "stevengould.org">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "sunbelt-software.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "spywareinfo.dk">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "spywareinfo.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "superantispyware.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "techguy.org">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "techsupportforum.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "tomcoyote.org">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL
type %syspath%\drivers\etc\hosts | find /v "wilderssecurity.com">tmp.txt
copy /Y tmp.txt %syspath%\drivers\etc\hosts >NUL

if exist tmp.txt del tmp.txt

if exist hosts.tmp del hosts.tmp
HostsChk %syspath%\drivers\etc\hosts
type hosts.tmp>>%systemdrive%\rapport.txt
if exist hosts.tmp del hosts.tmp








echo.>>%systemdrive%\rapport.txt
echo Generic Renos Fix...
echo »»»»»»»»»»»»»»»»»»»»»»»» Generic Renos Fix>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
GenericRenosFix>>%systemdrive%\rapport.txt







echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo Suppression des fichiers infect^‚s...
echo »»»»»»»»»»»»»»»»»»»»»»»» Suppression des fichiers infectés>>%systemdrive%\rapport.txt
) else (
echo Deleting infected files...
echo »»»»»»»»»»»»»»»»»»»»»»»» Deleting infected files>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt



pushd %HOMEDRIVE%\
 
if exist bsw.exe (
attrib -r -s -h bsw.exe
del /a /f bsw.exe
if NOT exist bsw.exe echo %HOMEDRIVE%\bsw.exe %sDel%>>%systemdrive%\rapport.txt
if exist bsw.exe echo %sError% %HOMEDRIVE%\bsw.exe>>%systemdrive%\rapport.txt
)

if exist config.sy_ (
attrib -r -s -h config.sy_
del /a /f config.sy_
if NOT exist config.sy_ echo %HOMEDRIVE%\config.sy_ %sDel%>>%systemdrive%\rapport.txt
if exist config.sy_ echo %sError% %HOMEDRIVE%\config.sy_>>%systemdrive%\rapport.txt
)

if exist contextplus.exe (
attrib -r -s -h contextplus.exe
del /a /f contextplus.exe
if NOT exist contextplus.exe echo %HOMEDRIVE%\contextplus.exe %sDel%>>%systemdrive%\rapport.txt
if exist contextplus.exe echo %sError% %HOMEDRIVE%\contextplus.exe>>%systemdrive%\rapport.txt
)

if exist country.exe (
attrib -r -s -h country.exe
del /a /f country.exe
if NOT exist country.exe echo %HOMEDRIVE%\country.exe %sDel%>>%systemdrive%\rapport.txt
if exist country.exe echo %sError% %HOMEDRIVE%\country.exe>>%systemdrive%\rapport.txt
)

if exist defender??.exe (
attrib -r -s -h defender??.exe
del /a /f defender??.exe
if NOT exist defender??.exe echo %HOMEDRIVE%\defender??.exe %sDel%>>%systemdrive%\rapport.txt
if exist defender??.exe echo %sError% %HOMEDRIVE%\defender??.exe>>%systemdrive%\rapport.txt
)

if exist dfndr.exe (
attrib -r -s -h dfndr.exe
del /a /f dfndr.exe
if NOT exist dfndr.exe echo %HOMEDRIVE%\dfndr.exe %sDel%>>%systemdrive%\rapport.txt
if exist dfndr.exe echo %sError% %HOMEDRIVE%\dfndr.exe>>%systemdrive%\rapport.txt
)

if exist dfndra.exe (
attrib -r -s -h dfndra.exe
del /a /f dfndra.exe
if NOT exist dfndra.exe echo %HOMEDRIVE%\dfndra.exe %sDel%>>%systemdrive%\rapport.txt
if exist dfndra.exe echo %sError% %HOMEDRIVE%\dfndra.exe>>%systemdrive%\rapport.txt
)

if exist dfndr?_?.exe (
attrib -r -s -h dfndr?_?.exe
del /a /f dfndr?_?.exe
if NOT exist dfndr?_?.exe echo %HOMEDRIVE%\dfndr?_?.exe %sDel%>>%systemdrive%\rapport.txt
if exist dfndr?_?.exe echo %sError% %HOMEDRIVE%\dfndr?_?.exe>>%systemdrive%\rapport.txt
)

if exist drsmartload?.exe (
attrib -r -s -h drsmartload?.exe
del /a /f drsmartload?.exe
if NOT exist drsmartload?.exe echo %HOMEDRIVE%\drsmartload?.exe %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload?.exe echo %sError% %HOMEDRIVE%\drsmartload?.exe>>%systemdrive%\rapport.txt
)

if exist drsmartload??.exe (
attrib -r -s -h drsmartload??.exe
del /a /f drsmartload??.exe
if NOT exist drsmartload??.exe echo %HOMEDRIVE%\drsmartload??.exe %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload??.exe echo %sError% %HOMEDRIVE%\drsmartload??.exe>>%systemdrive%\rapport.txt
)

if exist drsmartload???.exe (
attrib -r -s -h drsmartload???.exe
del /a /f drsmartload???.exe
if NOT exist drsmartload???.exe echo %HOMEDRIVE%\drsmartload???.exe %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload???.exe echo %sError% %HOMEDRIVE%\drsmartload???.exe>>%systemdrive%\rapport.txt
)

if exist drsmartload????.exe (
attrib -r -s -h drsmartload????.exe
del /a /f drsmartload????.exe
if NOT exist drsmartload????.exe echo %HOMEDRIVE%\drsmartload????.exe %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload????.exe echo %sError% %HOMEDRIVE%\drsmartload????.exe>>%systemdrive%\rapport.txt
)

if exist ecsiin.stub.exe (
attrib -r -s -h ecsiin.stub.exe
del /a /f ecsiin.stub.exe
if NOT exist ecsiin.stub.exe echo %HOMEDRIVE%\ecsiin.stub.exe %sDel%>>%systemdrive%\rapport.txt
if exist ecsiin.stub.exe echo %sError% %HOMEDRIVE%\ecsiin.stub.exe>>%systemdrive%\rapport.txt
)

if exist exit (
attrib -r -s -h exit
del /a /f exit
if NOT exist exit echo %HOMEDRIVE%\exit %sDel%>>%systemdrive%\rapport.txt
if exist exit echo %sError% %HOMEDRIVE%\exit>>%systemdrive%\rapport.txt
)

if exist gimmysmileys.exe (
attrib -r -s -h gimmysmileys.exe
del /a /f gimmysmileys.exe
if NOT exist gimmysmileys.exe echo %HOMEDRIVE%\gimmysmileys.exe %sDel%>>%systemdrive%\rapport.txt
if exist gimmysmileys.exe echo %sError% %HOMEDRIVE%\gimmysmileys.exe>>%systemdrive%\rapport.txt
)

if exist gimmysmileys?.exe (
attrib -r -s -h gimmysmileys?.exe
del /a /f gimmysmileys?.exe
if NOT exist gimmysmileys?.exe echo %HOMEDRIVE%\gimmysmileys?.exe %sDel%>>%systemdrive%\rapport.txt
if exist gimmysmileys?.exe echo %sError% %HOMEDRIVE%\gimmysmileys?.exe>>%systemdrive%\rapport.txt
)

if exist keyboard.exe (
attrib -r -s -h keyboard.exe
del /a /f keyboard.exe
if NOT exist keyboard.exe echo %HOMEDRIVE%\keyboard.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard.exe echo %sError% %HOMEDRIVE%\keyboard.exe>>%systemdrive%\rapport.txt
)

if exist keyboard?.exe (
attrib -r -s -h keyboard?.exe
del /a /f keyboard?.exe
if NOT exist keyboard?.exe echo %HOMEDRIVE%\keyboard?.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard?.exe echo %sError% %HOMEDRIVE%\keyboard?.exe>>%systemdrive%\rapport.txt
)

if exist keyboard??.exe (
attrib -r -s -h keyboard??.exe
del /a /f keyboard??.exe
if NOT exist keyboard??.exe echo %HOMEDRIVE%\keyboard??.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard??.exe echo %sError% %HOMEDRIVE%\keyboard??.exe>>%systemdrive%\rapport.txt
)

if exist kl1.exe (
attrib -r -s -h kl1.exe
del /a /f kl1.exe
if NOT exist kl1.exe echo %HOMEDRIVE%\kl1.exe %sDel%>>%systemdrive%\rapport.txt
if exist kl1.exe echo %sError% %HOMEDRIVE%\kl1.exe>>%systemdrive%\rapport.txt
)

if exist kybrd.exe (
attrib -r -s -h kybrd.exe
del /a /f kybrd.exe
if NOT exist kybrd.exe echo %HOMEDRIVE%\kybrd.exe %sDel%>>%systemdrive%\rapport.txt
if exist kybrd.exe echo %sError% %HOMEDRIVE%\kybrd.exe>>%systemdrive%\rapport.txt
)

if exist kybrd_?.exe (
attrib -r -s -h kybrd_?.exe
del /a /f kybrd_?.exe
if NOT exist kybrd_?.exe echo %HOMEDRIVE%\kybrd_?.exe %sDel%>>%systemdrive%\rapport.txt
if exist kybrd_?.exe echo %sError% %HOMEDRIVE%\kybrd_?.exe>>%systemdrive%\rapport.txt
)

if exist kybrd?_?.exe (
attrib -r -s -h kybrd?_?.exe
del /a /f kybrd?_?.exe
if NOT exist kybrd?_?.exe echo %HOMEDRIVE%\kybrd?_?.exe %sDel%>>%systemdrive%\rapport.txt
if exist kybrd?_?.exe echo %sError% %HOMEDRIVE%\kybrd?_?.exe>>%systemdrive%\rapport.txt
)

if exist loader.exe (
attrib -r -s -h loader.exe
del /a /f loader.exe
if NOT exist loader.exe echo %HOMEDRIVE%\loader.exe %sDel%>>%systemdrive%\rapport.txt
if exist loader.exe echo %sError% %HOMEDRIVE%\loader.exe>>%systemdrive%\rapport.txt
)

if exist mousepad.exe (
attrib -r -s -h mousepad.exe
del /a /f mousepad.exe
if NOT exist mousepad.exe echo %HOMEDRIVE%\mousepad.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad.exe echo %sError% %HOMEDRIVE%\mousepad.exe>>%systemdrive%\rapport.txt
)

if exist mousepad?.exe (
attrib -r -s -h mousepad?.exe
del /a /f mousepad?.exe
if NOT exist mousepad?.exe echo %HOMEDRIVE%\mousepad?.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad?.exe echo %sError% %HOMEDRIVE%\mousepad?.exe>>%systemdrive%\rapport.txt
)

if exist mousepad??.exe (
attrib -r -s -h mousepad??.exe
del /a /f mousepad??.exe
if NOT exist mousepad??.exe echo %HOMEDRIVE%\mousepad??.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad??.exe echo %sError% %HOMEDRIVE%\mousepad??.exe>>%systemdrive%\rapport.txt
)

if exist ms1.exe (
attrib -r -s -h ms1.exe
del /a /f ms1.exe
if NOT exist ms1.exe echo %HOMEDRIVE%\ms1.exe %sDel%>>%systemdrive%\rapport.txt
if exist ms1.exe echo %sError% %HOMEDRIVE%\ms1.exe>>%systemdrive%\rapport.txt
)

if exist MTE3NDI6ODoxNg.exe (
attrib -r -s -h MTE3NDI6ODoxNg.exe
del /a /f MTE3NDI6ODoxNg.exe
if NOT exist MTE3NDI6ODoxNg.exe echo %HOMEDRIVE%\MTE3NDI6ODoxNg.exe %sDel%>>%systemdrive%\rapport.txt
if exist MTE3NDI6ODoxNg.exe echo %sError% %HOMEDRIVE%\MTE3NDI6ODoxNg.exe>>%systemdrive%\rapport.txt
)

if exist newname?.exe (
attrib -r -s -h newname?.exe
del /a /f newname?.exe
if NOT exist newname?.exe echo %HOMEDRIVE%\newname?.exe %sDel%>>%systemdrive%\rapport.txt
if exist newname?.exe echo %sError% %HOMEDRIVE%\newname?.exe>>%systemdrive%\rapport.txt
)

if exist newname??.exe (
attrib -r -s -h newname??.exe
del /a /f newname??.exe
if NOT exist newname??.exe echo %HOMEDRIVE%\newname??.exe %sDel%>>%systemdrive%\rapport.txt
if exist newname??.exe echo %sError% %HOMEDRIVE%\newname??.exe>>%systemdrive%\rapport.txt
)

if exist ntdetecd.exe (
attrib -r -s -h ntdetecd.exe
del /a /f ntdetecd.exe
if NOT exist ntdetecd.exe echo %HOMEDRIVE%\ntdetecd.exe %sDel%>>%systemdrive%\rapport.txt
if exist ntdetecd.exe echo %sError% %HOMEDRIVE%\ntdetecd.exe>>%systemdrive%\rapport.txt
)

if exist ntnc.exe (
attrib -r -s -h ntnc.exe
del /a /f ntnc.exe
if NOT exist ntnc.exe echo %HOMEDRIVE%\ntnc.exe %sDel%>>%systemdrive%\rapport.txt
if exist ntnc.exe echo %sError% %HOMEDRIVE%\ntnc.exe>>%systemdrive%\rapport.txt
)

if exist ntps.exe (
attrib -r -s -h ntps.exe
del /a /f ntps.exe
if NOT exist ntps.exe echo %HOMEDRIVE%\ntps.exe %sDel%>>%systemdrive%\rapport.txt
if exist ntps.exe echo %sError% %HOMEDRIVE%\ntps.exe>>%systemdrive%\rapport.txt
)

if exist nwnm.exe (
attrib -r -s -h nwnm.exe
del /a /f nwnm.exe
if NOT exist nwnm.exe echo %HOMEDRIVE%\nwnm.exe %sDel%>>%systemdrive%\rapport.txt
if exist nwnm.exe echo %sError% %HOMEDRIVE%\nwnm.exe>>%systemdrive%\rapport.txt
)

if exist nwnm_?.exe (
attrib -r -s -h nwnm_?.exe
del /a /f nwnm_?.exe
if NOT exist nwnm_?.exe echo %HOMEDRIVE%\nwnm_?.exe %sDel%>>%systemdrive%\rapport.txt
if exist nwnm_?.exe echo %sError% %HOMEDRIVE%\nwnm_?.exe>>%systemdrive%\rapport.txt
)

if exist nwnm?_?.exe (
attrib -r -s -h nwnm?_?.exe
del /a /f nwnm?_?.exe
if NOT exist nwnm?_?.exe echo %HOMEDRIVE%\nwnm?_?.exe %sDel%>>%systemdrive%\rapport.txt
if exist nwnm?_?.exe echo %sError% %HOMEDRIVE%\nwnm?_?.exe>>%systemdrive%\rapport.txt
)

if exist r.exe (
attrib -r -s -h r.exe
del /a /f r.exe
if NOT exist r.exe echo %HOMEDRIVE%\r.exe %sDel%>>%systemdrive%\rapport.txt
if exist r.exe echo %sError% %HOMEDRIVE%\r.exe>>%systemdrive%\rapport.txt
)

if exist secure32.html (
attrib -r -s -h secure32.html
del /a /f secure32.html
if NOT exist secure32.html echo %HOMEDRIVE%\secure32.html %sDel%>>%systemdrive%\rapport.txt
if exist secure32.html echo %sError% %HOMEDRIVE%\secure32.html>>%systemdrive%\rapport.txt
)

if exist stub_113_4_0_4_0.exe (
attrib -r -s -h stub_113_4_0_4_0.exe
del /a /f stub_113_4_0_4_0.exe
if NOT exist stub_113_4_0_4_0.exe echo %HOMEDRIVE%\stub_113_4_0_4_0.exe %sDel%>>%systemdrive%\rapport.txt
if exist stub_113_4_0_4_0.exe echo %sError% %HOMEDRIVE%\stub_113_4_0_4_0.exe>>%systemdrive%\rapport.txt
)

if exist tool1.exe (
attrib -r -s -h tool1.exe
del /a /f tool1.exe
if NOT exist tool1.exe echo %HOMEDRIVE%\tool1.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool1.exe echo %sError% %HOMEDRIVE%\tool1.exe>>%systemdrive%\rapport.txt
)

if exist tool2.exe (
attrib -r -s -h tool2.exe
del /a /f tool2.exe
if NOT exist tool2.exe echo %HOMEDRIVE%\tool2.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool2.exe echo %sError% %HOMEDRIVE%\tool2.exe>>%systemdrive%\rapport.txt
)

if exist tool3.exe (
attrib -r -s -h tool3.exe
del /a /f tool3.exe
if NOT exist tool3.exe echo %HOMEDRIVE%\tool3.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool3.exe echo %sError% %HOMEDRIVE%\tool3.exe>>%systemdrive%\rapport.txt
)

if exist tool4.exe (
attrib -r -s -h tool4.exe
del /a /f tool4.exe
if NOT exist tool4.exe echo %HOMEDRIVE%\tool4.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool4.exe echo %sError% %HOMEDRIVE%\tool4.exe>>%systemdrive%\rapport.txt
)

if exist tool5.exe (
attrib -r -s -h tool5.exe
del /a /f tool5.exe
if NOT exist tool5.exe echo %HOMEDRIVE%\tool5.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool5.exe echo %sError% %HOMEDRIVE%\tool5.exe>>%systemdrive%\rapport.txt
)

if exist toolbar.exe (
attrib -r -s -h toolbar.exe
del /a /f toolbar.exe
if NOT exist toolbar.exe echo %HOMEDRIVE%\toolbar.exe %sDel%>>%systemdrive%\rapport.txt
if exist toolbar.exe echo %sError% %HOMEDRIVE%\toolbar.exe>>%systemdrive%\rapport.txt
)

if exist uniq (
attrib -r -s -h uniq
del /a /f uniq
if NOT exist uniq echo %HOMEDRIVE%\uniq %sDel%>>%systemdrive%\rapport.txt
if exist uniq echo %sError% %HOMEDRIVE%\uniq>>%systemdrive%\rapport.txt
)

if exist winstall.exe (
attrib -r -s -h winstall.exe
del /a /f winstall.exe
if NOT exist winstall.exe echo %HOMEDRIVE%\winstall.exe %sDel%>>%systemdrive%\rapport.txt
if exist winstall.exe echo %sError% %HOMEDRIVE%\winstall.exe>>%systemdrive%\rapport.txt
)

if exist wp.bmp (
attrib -r -s -h wp.bmp
del /a /f wp.bmp
if NOT exist wp.bmp echo %HOMEDRIVE%\wp.bmp %sDel%>>%systemdrive%\rapport.txt
if exist wp.bmp echo %sError% %HOMEDRIVE%\wp.bmp>>%systemdrive%\rapport.txt
)

if exist wp.exe (
attrib -r -s -h wp.exe
del /a /f wp.exe
if NOT exist wp.exe echo %HOMEDRIVE%\wp.exe %sDel%>>%systemdrive%\rapport.txt
if exist wp.exe echo %sError% %HOMEDRIVE%\wp.exe>>%systemdrive%\rapport.txt
)

if exist xxx.exe (
attrib -r -s -h xxx.exe
del /a /f xxx.exe
if NOT exist xxx.exe echo %HOMEDRIVE%\xxx.exe %sDel%>>%systemdrive%\rapport.txt
if exist xxx.exe echo %sError% %HOMEDRIVE%\xxx.exe>>%systemdrive%\rapport.txt
)

popd






pushd %windir%


if exist ".protected" (
attrib -r -s -h ".protected"
del /a /f ".protected"
if NOT exist ".protected" echo %windir%\.protected %sDel%>>%systemdrive%\rapport.txt
if exist ".protected" echo %sError% %windir%\.protected>>%systemdrive%\rapport.txt
)

if exist aapfr.exe (
attrib -r -s -h aapfr.exe
del /a /f aapfr.exe
if NOT exist aapfr.exe echo %windir%\aapfr.exe %sDel%>>%systemdrive%\rapport.txt
if exist aapfr.exe echo %sError% %windir%\aapfr.exe>>%systemdrive%\rapport.txt
)

if exist accesss.exe (
attrib -r -s -h accesss.exe
del /a /f accesss.exe
if NOT exist accesss.exe echo %windir%\accesss.exe %sDel%>>%systemdrive%\rapport.txt
if exist accesss.exe echo %sError% %windir%\accesss.exe>>%systemdrive%\rapport.txt
)

if exist ads.js (
attrib -r -s -h ads.js
del /a /f ads.js
if NOT exist ads.js echo %windir%\ads.js %sDel%>>%systemdrive%\rapport.txt
if exist ads.js echo %sError% %windir%\ads.js>>%systemdrive%\rapport.txt
)

if exist adsldpbc.dll (
attrib -r -s -h adsldpbc.dll
del /a /f adsldpbc.dll
if NOT exist adsldpbc.dll echo %windir%\adsldpbc.dll %sDel%>>%systemdrive%\rapport.txt
if exist adsldpbc.dll echo %sError% %windir%\adsldpbc.dll>>%systemdrive%\rapport.txt
)

if exist adsldpbd.dll (
attrib -r -s -h adsldpbd.dll
del /a /f adsldpbd.dll
if NOT exist adsldpbd.dll echo %windir%\adsldpbd.dll %sDel%>>%systemdrive%\rapport.txt
if exist adsldpbd.dll echo %sError% %windir%\adsldpbd.dll>>%systemdrive%\rapport.txt
)

if exist adsldpbe.dll (
attrib -r -s -h adsldpbe.dll
del /a /f adsldpbe.dll
if NOT exist adsldpbe.dll echo %windir%\adsldpbe.dll %sDel%>>%systemdrive%\rapport.txt
if exist adsldpbe.dll echo %sError% %windir%\adsldpbe.dll>>%systemdrive%\rapport.txt
)

if exist adsldpbf.dll (
attrib -r -s -h adsldpbf.dll
del /a /f adsldpbf.dll
if NOT exist adsldpbf.dll echo %windir%\adsldpbf.dll %sDel%>>%systemdrive%\rapport.txt
if exist adsldpbf.dll echo %sError% %windir%\adsldpbf.dll>>%systemdrive%\rapport.txt
)

if exist adsldpbj.dll (
attrib -r -s -h adsldpbj.dll
del /a /f adsldpbj.dll
if NOT exist adsldpbj.dll echo %windir%\adsldpbj.dll %sDel%>>%systemdrive%\rapport.txt
if exist adsldpbj.dll echo %sError% %windir%\adsldpbj.dll>>%systemdrive%\rapport.txt
)

if exist adtech2005.exe (
attrib -r -s -h adtech2005.exe
del /a /f adtech2005.exe
if NOT exist adtech2005.exe echo %windir%\adtech2005.exe %sDel%>>%systemdrive%\rapport.txt
if exist adtech2005.exe echo %sError% %windir%\adtech2005.exe>>%systemdrive%\rapport.txt
)

if exist adtech2006a.exe (
attrib -r -s -h adtech2006a.exe
del /a /f adtech2006a.exe
if NOT exist adtech2006a.exe echo %windir%\adtech2006a.exe %sDel%>>%systemdrive%\rapport.txt
if exist adtech2006a.exe echo %sError% %windir%\adtech2006a.exe>>%systemdrive%\rapport.txt
)

if exist adw.htm (
attrib -r -s -h adw.htm
del /a /f adw.htm
if NOT exist adw.htm echo %windir%\adw.htm %sDel%>>%systemdrive%\rapport.txt
if exist adw.htm echo %sError% %windir%\adw.htm>>%systemdrive%\rapport.txt
)

if exist "adware-sheriff-box.gif" (
attrib -r -s -h "adware-sheriff-box.gif"
del /a /f "adware-sheriff-box.gif"
if NOT exist "adware-sheriff-box.gif" echo %windir%\adware-sheriff-box.gif %sDel%>>%systemdrive%\rapport.txt
if exist "adware-sheriff-box.gif" echo %sError% %windir%\adware-sheriff-box.gif>>%systemdrive%\rapport.txt
)

if exist "adware-sheriff-header.gif" (
attrib -r -s -h "adware-sheriff-header.gif"
del /a /f "adware-sheriff-header.gif"
if NOT exist "adware-sheriff-header.gif" echo %windir%\adware-sheriff-header.gif %sDel%>>%systemdrive%\rapport.txt
if exist "adware-sheriff-header.gif" echo %sError% %windir%\adware-sheriff-header.gif>>%systemdrive%\rapport.txt
)

if exist alexaie.dll (
attrib -r -s -h alexaie.dll
del /a /f alexaie.dll
if NOT exist alexaie.dll echo %windir%\alexaie.dll %sDel%>>%systemdrive%\rapport.txt
if exist alexaie.dll echo %sError% %windir%\alexaie.dll>>%systemdrive%\rapport.txt
)

if exist alxie328.dll (
attrib -r -s -h alxie328.dll
del /a /f alxie328.dll
if NOT exist alxie328.dll echo %windir%\alxie328.dll %sDel%>>%systemdrive%\rapport.txt
if exist alxie328.dll echo %sError% %windir%\alxie328.dll>>%systemdrive%\rapport.txt
)

if exist alxtb1.dll (
attrib -r -s -h alxtb1.dll
del /a /f alxtb1.dll
if NOT exist alxtb1.dll echo %windir%\alxtb1.dll %sDel%>>%systemdrive%\rapport.txt
if exist alxtb1.dll echo %sError% %windir%\alxtb1.dll>>%systemdrive%\rapport.txt
)

if exist "antispylab-logo.gif" (
attrib -r -s -h "antispylab-logo.gif"
del /a /f "antispylab-logo.gif"
if NOT exist "antispylab-logo.gif" echo %windir%\antispylab-logo.gif %sDel%>>%systemdrive%\rapport.txt
if exist "antispylab-logo.gif" echo %sError% %windir%\antispylab-logo.gif>>%systemdrive%\rapport.txt
)

if exist about_spyware_bg.gif (
attrib -r -s -h about_spyware_bg.gif
del /a /f about_spyware_bg.gif
if NOT exist about_spyware_bg.gif echo %windir%\about_spyware_bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist about_spyware_bg.gif echo %sError% %windir%\about_spyware_bg.gif>>%systemdrive%\rapport.txt
)

if exist about_spyware_bottom.gif (
attrib -r -s -h about_spyware_bottom.gif
del /a /f about_spyware_bottom.gif
if NOT exist about_spyware_bottom.gif echo %windir%\about_spyware_bottom.gif %sDel%>>%systemdrive%\rapport.txt
if exist about_spyware_bottom.gif echo %sError% %windir%\about_spyware_bottom.gif>>%systemdrive%\rapport.txt
)

if exist as.gif (
attrib -r -s -h as.gif
del /a /f as.gif
if NOT exist as.gif echo %windir%\as.gif %sDel%>>%systemdrive%\rapport.txt
if exist as.gif echo %sError% %windir%\as.gif>>%systemdrive%\rapport.txt
)

if exist as_header.gif (
attrib -r -s -h as_header.gif
del /a /f as_header.gif
if NOT exist as_header.gif echo %windir%\as_header.gif %sDel%>>%systemdrive%\rapport.txt
if exist as_header.gif echo %sError% %windir%\as_header.gif>>%systemdrive%\rapport.txt
)

if exist astctl32.ocx (
attrib -r -s -h astctl32.ocx
del /a /f astctl32.ocx
if NOT exist astctl32.ocx echo %windir%\astctl32.ocx %sDel%>>%systemdrive%\rapport.txt
if exist astctl32.ocx echo %sError% %windir%\astctl32.ocx>>%systemdrive%\rapport.txt
)

if exist avp.exe (
attrib -r -s -h avp.exe
del /a /f avp.exe
if NOT exist avp.exe echo %windir%\avp.exe %sDel%>>%systemdrive%\rapport.txt
if exist avp.exe echo %sError% %windir%\avp.exe>>%systemdrive%\rapport.txt
)

if exist avpcc.dll (
attrib -r -s -h avpcc.dll
del /a /f avpcc.dll
if NOT exist avpcc.dll echo %windir%\avpcc.dll %sDel%>>%systemdrive%\rapport.txt
if exist avpcc.dll echo %sError% %windir%\avpcc.dll>>%systemdrive%\rapport.txt
)

if exist azesearch.bmp (
attrib -r -s -h azesearch.bmp
del /a /f azesearch.bmp
if NOT exist azesearch.bmp echo %windir%\azesearch.bmp %sDel%>>%systemdrive%\rapport.txt
if exist azesearch.bmp echo %sError% %windir%\azesearch.bmp>>%systemdrive%\rapport.txt
)

if exist back.gif (
attrib -r -s -h back.gif
del /a /f back.gif
if NOT exist back.gif echo %windir%\back.gif %sDel%>>%systemdrive%\rapport.txt
if exist back.gif echo %sError% %windir%\back.gif>>%systemdrive%\rapport.txt
)

if exist bandserv.dll (
attrib -r -s -h bandserv.dll
del /a /f bandserv.dll
if NOT exist bandserv.dll echo %windir%\bandserv.dll %sDel%>>%systemdrive%\rapport.txt
if exist bandserv.dll echo %sError% %windir%\bandserv.dll>>%systemdrive%\rapport.txt
)

if exist batserv2.exe (
attrib -r -s -h batserv2.exe
del /a /f batserv2.exe
if NOT exist batserv2.exe echo %windir%\batserv2.exe %sDel%>>%systemdrive%\rapport.txt
if exist batserv2.exe echo %sError% %windir%\batserv2.exe>>%systemdrive%\rapport.txt
)

if exist bg.gif (
attrib -r -s -h bg.gif
del /a /f bg.gif
if NOT exist bg.gif echo %windir%\bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist bg.gif echo %sError% %windir%\bg.gif>>%systemdrive%\rapport.txt
)

if exist bg_bg.gif (
attrib -r -s -h bg_bg.gif
del /a /f bg_bg.gif
if NOT exist bg_bg.gif echo %windir%\bg_bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist bg_bg.gif echo %sError% %windir%\bg_bg.gif>>%systemdrive%\rapport.txt
)

if exist big_red_x.gif (
attrib -r -s -h big_red_x.gif
del /a /f big_red_x.gif
if NOT exist big_red_x.gif echo %windir%\big_red_x.gif %sDel%>>%systemdrive%\rapport.txt
if exist big_red_x.gif echo %sError% %windir%\big_red_x.gif>>%systemdrive%\rapport.txt
)

if exist blank.mht (
attrib -r -s -h blank.mht
del /a /f blank.mht
if NOT exist blank.mht echo %windir%\blank.mht %sDel%>>%systemdrive%\rapport.txt
if exist blank.mht echo %sError% %windir%\blank.mht>>%systemdrive%\rapport.txt
)

if exist "blue-bg.gif" (
attrib -r -s -h "blue-bg.gif"
del /a /f "blue-bg.gif"
if NOT exist "blue-bg.gif" echo %windir%\blue-bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist "blue-bg.gif" echo %sError% %windir%\blue-bg.gif>>%systemdrive%\rapport.txt
)

if exist box_1.gif (
attrib -r -s -h box_1.gif
del /a /f box_1.gif
if NOT exist box_1.gif echo %windir%\box_1.gif %sDel%>>%systemdrive%\rapport.txt
if exist box_1.gif echo %sError% %windir%\box_1.gif>>%systemdrive%\rapport.txt
)

if exist box_2.gif (
attrib -r -s -h box_2.gif
del /a /f box_2.gif
if NOT exist box_2.gif echo %windir%\box_2.gif %sDel%>>%systemdrive%\rapport.txt
if exist box_2.gif echo %sError% %windir%\box_2.gif>>%systemdrive%\rapport.txt
)

if exist box_3.gif (
attrib -r -s -h box_3.gif
del /a /f box_3.gif
if NOT exist box_3.gif echo %windir%\box_3.gif %sDel%>>%systemdrive%\rapport.txt
if exist box_3.gif echo %sError% %windir%\box_3.gif>>%systemdrive%\rapport.txt
)

if exist browsers.dll (
attrib -r -s -h browsers.dll
del /a /f browsers.dll
if NOT exist browsers.dll echo %windir%\browsers.dll %sDel%>>%systemdrive%\rapport.txt
if exist browsers.dll echo %sError% %windir%\browsers.dll>>%systemdrive%\rapport.txt
)

if exist BTGrab.dll (
attrib -r -s -h BTGrab.dll
del /a /f BTGrab.dll
if NOT exist BTGrab.dll echo %windir%\BTGrab.dll %sDel%>>%systemdrive%\rapport.txt
if exist BTGrab.dll echo %sError% %windir%\BTGrab.dll>>%systemdrive%\rapport.txt
)

if exist button_buynow.gif (
attrib -r -s -h button_buynow.gif
del /a /f button_buynow.gif
if NOT exist button_buynow.gif echo %windir%\button_buynow.gif %sDel%>>%systemdrive%\rapport.txt
if exist button_buynow.gif echo %sError% %windir%\button_buynow.gif>>%systemdrive%\rapport.txt
)

if exist button_freescan.gif (
attrib -r -s -h button_freescan.gif
del /a /f button_freescan.gif
if NOT exist button_freescan.gif echo %windir%\button_freescan.gif %sDel%>>%systemdrive%\rapport.txt
if exist button_freescan.gif echo %sError% %windir%\button_freescan.gif>>%systemdrive%\rapport.txt
)

if exist "buy-btn.gif" (
attrib -r -s -h "buy-btn.gif"
del /a /f "buy-btn.gif"
if NOT exist "buy-btn.gif" echo %windir%\buy-btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist "buy-btn.gif" echo %sError% %windir%\buy-btn.gif>>%systemdrive%\rapport.txt
)

if exist buy_now.gif (
attrib -r -s -h buy_now.gif
del /a /f buy_now.gif
if NOT exist buy_now.gif echo %windir%\buy_now.gif %sDel%>>%systemdrive%\rapport.txt
if exist buy_now.gif echo %sError% %windir%\buy_now.gif>>%systemdrive%\rapport.txt
)

if exist "buy-now-btn.gif" (
attrib -r -s -h "buy-now-btn.gif"
del /a /f "buy-now-btn.gif"
if NOT exist "buy-now-btn.gif" echo %windir%\buy-now-btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist "buy-now-btn.gif" echo %sError% %windir%\buy-now-btn.gif>>%systemdrive%\rapport.txt
)

if exist bxproxy.exe (
attrib -r -s -h bxproxy.exe
del /a /f bxproxy.exe
if NOT exist bxproxy.exe echo %windir%\bxproxy.exe %sDel%>>%systemdrive%\rapport.txt
if exist bxproxy.exe echo %sError% %windir%\bxproxy.exe>>%systemdrive%\rapport.txt
)

if exist click_for_free_scan.gif (
attrib -r -s -h click_for_free_scan.gif
del /a /f click_for_free_scan.gif
if NOT exist click_for_free_scan.gif echo %windir%\click_for_free_scan.gif %sDel%>>%systemdrive%\rapport.txt
if exist click_for_free_scan.gif echo %sError% %windir%\click_for_free_scan.gif>>%systemdrive%\rapport.txt
)

if exist "close-bar.gif" (
attrib -r -s -h "close-bar.gif"
del /a /f "close-bar.gif"
if NOT exist "close-bar.gif" echo %windir%\close-bar.gif %sDel%>>%systemdrive%\rapport.txt
if exist "close-bar.gif" echo %sError% %windir%\close-bar.gif>>%systemdrive%\rapport.txt
)

if exist close_ico.gif (
attrib -r -s -h close_ico.gif
del /a /f close_ico.gif
if NOT exist close_ico.gif echo %windir%\close_ico.gif %sDel%>>%systemdrive%\rapport.txt
if exist close_ico.gif echo %sError% %windir%\close_ico.gif>>%systemdrive%\rapport.txt
)

if exist clrssn.exe (
attrib -r -s -h clrssn.exe
del /a /f clrssn.exe
if NOT exist clrssn.exe echo %windir%\clrssn.exe %sDel%>>%systemdrive%\rapport.txt
if exist clrssn.exe echo %sError% %windir%\clrssn.exe>>%systemdrive%\rapport.txt
)

if exist "corner-left.gif" (
attrib -r -s -h "corner-left.gif"
del /a /f "corner-left.gif"
if NOT exist "corner-left.gif" echo %windir%\corner-left.gif %sDel%>>%systemdrive%\rapport.txt
if exist "corner-left.gif" echo %sError% %windir%\corner-left.gif>>%systemdrive%\rapport.txt
)

if exist "corner-right.gif" (
attrib -r -s -h "corner-right.gif"
del /a /f "corner-right.gif"
if NOT exist "corner-right.gif" echo %windir%\corner-right.gif %sDel%>>%systemdrive%\rapport.txt
if exist "corner-right.gif" echo %sError% %windir%\corner-right.gif>>%systemdrive%\rapport.txt
)

if exist country.exe (
attrib -r -s -h country.exe
del /a /f country.exe
if NOT exist country.exe echo %windir%\country.exe %sDel%>>%systemdrive%\rapport.txt
if exist country.exe echo %sError% %windir%\country.exe>>%systemdrive%\rapport.txt
)

if exist cpan.dll (
attrib -r -s -h cpan.dll
del /a /f cpan.dll
if NOT exist cpan.dll echo %windir%\cpan.dll %sDel%>>%systemdrive%\rapport.txt
if exist cpan.dll echo %sError% %windir%\cpan.dll>>%systemdrive%\rapport.txt
)

if exist d3dn32.exe (
attrib -r -s -h d3dn32.exe
del /a /f d3dn32.exe
if NOT exist d3dn32.exe echo %windir%\d3dn32.exe %sDel%>>%systemdrive%\rapport.txt
if exist d3dn32.exe echo %sError% %windir%\d3dn32.exe>>%systemdrive%\rapport.txt
)

if exist d3??.dll (
attrib -r -s -h d3??.dll
del /a /f d3??.dll
if NOT exist d3??.dll echo %windir%\d3??.dll %sDel%>>%systemdrive%\rapport.txt
if exist d3??.dll echo %sError% %windir%\d3??.dll>>%systemdrive%\rapport.txt
)

if exist d3pb.exe (
attrib -r -s -h d3pb.exe
del /a /f d3pb.exe
if NOT exist d3pb.exe echo %windir%\d3pb.exe %sDel%>>%systemdrive%\rapport.txt
if exist d3pb.exe echo %sError% %windir%\d3pb.exe>>%systemdrive%\rapport.txt
)

if exist ddesupport.dll (
attrib -r -s -h ddesupport.dll
del /a /f ddesupport.dll
if NOT exist ddesupport.dll echo %windir%\ddesupport.dll %sDel%>>%systemdrive%\rapport.txt
if exist ddesupport.dll echo %sError% %windir%\ddesupport.dll>>%systemdrive%\rapport.txt
)

if exist defender??.exe (
attrib -r -s -h defender??.exe
del /a /f defender??.exe
if NOT exist defender??.exe echo %windir%\defender??.exe %sDel%>>%systemdrive%\rapport.txt
if exist defender??.exe echo %sError% %windir%\defender??.exe>>%systemdrive%\rapport.txt
)

if exist desktop.html (
attrib -r -s -h desktop.html
del /a /f desktop.html
if NOT exist desktop.html echo %windir%\desktop.html %sDel%>>%systemdrive%\rapport.txt
if exist desktop.html echo %sError% %windir%\desktop.html>>%systemdrive%\rapport.txt
)

if exist dialup.exe (
attrib -r -s -h dialup.exe
del /a /f dialup.exe
if NOT exist dialup.exe echo %windir%\dialup.exe %sDel%>>%systemdrive%\rapport.txt
if exist dialup.exe echo %sError% %windir%\dialup.exe>>%systemdrive%\rapport.txt
)

if exist dxdiag.dll (
attrib -r -s -h dxdiag.dll
del /a /f dxdiag.dll
if NOT exist dxdiag.dll echo %windir%\dxdiag.dll %sDel%>>%systemdrive%\rapport.txt
if exist dxdiag.dll echo %sError% %windir%\dxdiag.dll>>%systemdrive%\rapport.txt
)

if exist dlmax.dll (
attrib -r -s -h dlmax.dll
del /a /f dlmax.dll
if NOT exist dlmax.dll echo %windir%\dlmax.dll %sDel%>>%systemdrive%\rapport.txt
if exist dlmax.dll echo %sError% %windir%\dlmax.dll>>%systemdrive%\rapport.txt
)

if exist download.gif (
attrib -r -s -h download.gif
del /a /f download.gif
if NOT exist download.gif echo %windir%\download.gif %sDel%>>%systemdrive%\rapport.txt
if exist download.gif echo %sError% %windir%\download.gif>>%systemdrive%\rapport.txt
)

if exist download_box.gif (
attrib -r -s -h download_box.gif
del /a /f download_box.gif
if NOT exist download_box.gif echo %windir%\download_box.gif %sDel%>>%systemdrive%\rapport.txt
if exist download_box.gif echo %sError% %windir%\download_box.gif>>%systemdrive%\rapport.txt
)

if exist download_product.gif (
attrib -r -s -h download_product.gif
del /a /f download_product.gif
if NOT exist download_product.gif echo %windir%\download_product.gif %sDel%>>%systemdrive%\rapport.txt
if exist download_product.gif echo %sError% %windir%\download_product.gif>>%systemdrive%\rapport.txt
)

if exist "download-btn.gif" (
attrib -r -s -h "download-btn.gif"
del /a /f "download-btn.gif"
if NOT exist "download-btn.gif" echo %windir%\download-btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist "download-btn.gif" echo %sError% %windir%\download-btn.gif>>%systemdrive%\rapport.txt
)

if exist dr.exe (
attrib -r -s -h dr.exe
del /a /f dr.exe
if NOT exist dr.exe echo %windir%\dr.exe %sDel%>>%systemdrive%\rapport.txt
if exist dr.exe echo %sError% %windir%\dr.exe>>%systemdrive%\rapport.txt
)

if exist drsmartload.dat (
attrib -r -s -h drsmartload.dat
del /a /f drsmartload.dat
if NOT exist drsmartload.dat echo %windir%\drsmartload.dat %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload.dat echo %sError% %windir%\drsmartload.dat>>%systemdrive%\rapport.txt
)

if exist drsmartload2.dat (
attrib -r -s -h drsmartload2.dat
del /a /f drsmartload2.dat
if NOT exist drsmartload2.dat echo %windir%\drsmartload2.dat %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload2.dat echo %sError% %windir%\drsmartload2.dat>>%systemdrive%\rapport.txt
)

if exist drsmartload95a.exe (
attrib -r -s -h drsmartload95a.exe
del /a /f drsmartload95a.exe
if NOT exist drsmartload95a.exe echo %windir%\drsmartload95a.exe %sDel%>>%systemdrive%\rapport.txt
if exist drsmartload95a.exe echo %sError% %windir%\drsmartload95a.exe>>%systemdrive%\rapport.txt
)

if exist drsmartloadb1.dat (
attrib -r -s -h drsmartloadb1.dat
del /a /f drsmartloadb1.dat
if NOT exist drsmartloadb1.dat echo %windir%\drsmartloadb1.dat %sDel%>>%systemdrive%\rapport.txt
if exist drsmartloadb1.dat echo %sError% %windir%\drsmartloadb1.dat>>%systemdrive%\rapport.txt
)

if exist duocore.dll (
attrib -r -s -h duocore.dll
del /a /f duocore.dll
if NOT exist duocore.dll echo %windir%\duocore.dll %sDel%>>%systemdrive%\rapport.txt
if exist duocore.dll echo %sError% %windir%\duocore.dll>>%systemdrive%\rapport.txt
)

if exist expro.dll (
attrib -r -s -h expro.dll
del /a /f expro.dll
if NOT exist expro.dll echo %windir%\expro.dll %sDel%>>%systemdrive%\rapport.txt
if exist expro.dll echo %sError% %windir%\expro.dll>>%systemdrive%\rapport.txt
)

if exist "facts.gif" (
attrib -r -s -h "facts.gif"
del /a /f "facts.gif"
if NOT exist "facts.gif" echo %windir%\facts.gif %sDel%>>%systemdrive%\rapport.txt
if exist "facts.gif" echo %sError% %windir%\facts.gif>>%systemdrive%\rapport.txt
)

if exist features.gif (
attrib -r -s -h features.gif
del /a /f features.gif
if NOT exist features.gif echo %windir%\features.gif %sDel%>>%systemdrive%\rapport.txt
if exist features.gif echo %sError% %windir%\features.gif>>%systemdrive%\rapport.txt
)

if exist "footer.gif" (
attrib -r -s -h "footer.gif"
del /a /f "footer.gif"
if NOT exist "footer.gif" echo %windir%\footer.gif %sDel%>>%systemdrive%\rapport.txt
if exist "footer.gif" echo %sError% %windir%\footer.gif>>%systemdrive%\rapport.txt
)

if exist footer_back.gif (
attrib -r -s -h footer_back.gif
del /a /f footer_back.gif
if NOT exist footer_back.gif echo %windir%\footer_back.gif %sDel%>>%systemdrive%\rapport.txt
if exist footer_back.gif echo %sError% %windir%\footer_back.gif>>%systemdrive%\rapport.txt
)

if exist footer_back.jpg (
attrib -r -s -h footer_back.jpg
del /a /f footer_back.jpg
if NOT exist footer_back.jpg echo %windir%\footer_back.jpg %sDel%>>%systemdrive%\rapport.txt
if exist footer_back.jpg echo %sError% %windir%\footer_back.jpg>>%systemdrive%\rapport.txt
)

if exist free_scan_red_btn.gif (
attrib -r -s -h free_scan_red_btn.gif
del /a /f free_scan_red_btn.gif
if NOT exist free_scan_red_btn.gif echo %windir%\free_scan_red_btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist free_scan_red_btn.gif echo %sError% %windir%\free_scan_red_btn.gif>>%systemdrive%\rapport.txt
)

if exist "free-scan-btn.gif" (
attrib -r -s -h "free-scan-btn.gif"
del /a /f "free-scan-btn.gif"
if NOT exist "free-scan-btn.gif" echo %windir%\free-scan-btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist "free-scan-btn.gif" echo %sError% %windir%\free-scan-btn.gif>>%systemdrive%\rapport.txt
)

if exist gimmygames.dat (
attrib -r -s -h gimmygames.dat
del /a /f gimmygames.dat
if NOT exist gimmygames.dat echo %windir%\gimmygames.dat %sDel%>>%systemdrive%\rapport.txt
if exist gimmygames.dat echo %sError% %windir%\gimmygames.dat>>%systemdrive%\rapport.txt
)

if exist "h-line-gradient.gif" (
attrib -r -s -h "h-line-gradient.gif"
del /a /f "h-line-gradient.gif"
if NOT exist "h-line-gradient.gif" echo %windir%\h-line-gradient.gif %sDel%>>%systemdrive%\rapport.txt
if exist "h-line-gradient.gif" echo %sError% %windir%\h-line-gradient.gif>>%systemdrive%\rapport.txt
)

if exist header_1.gif (
attrib -r -s -h header_1.gif
del /a /f header_1.gif
if NOT exist header_1.gif echo %windir%\header_1.gif %sDel%>>%systemdrive%\rapport.txt
if exist header_1.gif echo %sError% %windir%\header_1.gif>>%systemdrive%\rapport.txt
)

if exist header_2.gif (
attrib -r -s -h header_2.gif
del /a /f header_2.gif
if NOT exist header_2.gif echo %windir%\header_2.gif %sDel%>>%systemdrive%\rapport.txt
if exist header_2.gif echo %sError% %windir%\header_2.gif>>%systemdrive%\rapport.txt
)

if exist header_3.gif (
attrib -r -s -h header_3.gif
del /a /f header_3.gif
if NOT exist header_3.gif echo %windir%\header_3.gif %sDel%>>%systemdrive%\rapport.txt
if exist header_3.gif echo %sError% %windir%\header_3.gif>>%systemdrive%\rapport.txt
)

if exist header_4.gif (
attrib -r -s -h header_4.gif
del /a /f header_4.gif
if NOT exist header_4.gif echo %windir%\header_4.gif %sDel%>>%systemdrive%\rapport.txt
if exist header_4.gif echo %sError% %windir%\header_4.gif>>%systemdrive%\rapport.txt
)

if exist "header-bg.gif" (
attrib -r -s -h "header-bg.gif"
del /a /f "header-bg.gif"
if NOT exist "header-bg.gif" echo %windir%\header-bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist "header-bg.gif" echo %sError% %windir%\header-bg.gif>>%systemdrive%\rapport.txt
)

if exist icon_warning_big.gif (
attrib -r -s -h icon_warning_big.gif
del /a /f icon_warning_big.gif
if NOT exist icon_warning_big.gif echo %windir%\icon_warning_big.gif %sDel%>>%systemdrive%\rapport.txt
if exist icon_warning_big.gif echo %sError% %windir%\icon_warning_big.gif>>%systemdrive%\rapport.txt
)

if exist iebrowser.dll (
attrib -r -s -h iebrowser.dll
del /a /f iebrowser.dll
if NOT exist iebrowser.dll echo %windir%\iebrowser.dll %sDel%>>%systemdrive%\rapport.txt
if exist iebrowser.dll echo %sError% %windir%\iebrowser.dll>>%systemdrive%\rapport.txt
)

if exist iecontext.dll (
attrib -r -s -h iecontext.dll
del /a /f iecontext.dll
if NOT exist iecontext.dll echo %windir%\iecontext.dll %sDel%>>%systemdrive%\rapport.txt
if exist iecontext.dll echo %sError% %windir%\iecontext.dll>>%systemdrive%\rapport.txt
)

if exist iedebug.dll (
attrib -r -s -h iedebug.dll
del /a /f iedebug.dll
if NOT exist iedebug.dll echo %windir%\iedebug.dll %sDel%>>%systemdrive%\rapport.txt
if exist iedebug.dll echo %sError% %windir%\iedebug.dll>>%systemdrive%\rapport.txt
)

if exist iedns.dll (
attrib -r -s -h iedns.dll
del /a /f iedns.dll
if NOT exist iedns.dll echo %windir%\iedns.dll %sDel%>>%systemdrive%\rapport.txt
if exist iedns.dll echo %sError% %windir%\iedns.dll>>%systemdrive%\rapport.txt
)

if exist iedrives.dll (
attrib -r -s -h iedrives.dll
del /a /f iedrives.dll
if NOT exist iedrives.dll echo %windir%\iedrives.dll %sDel%>>%systemdrive%\rapport.txt
if exist iedrives.dll echo %sError% %windir%\iedrives.dll>>%systemdrive%\rapport.txt
)

if exist iedrv.exe (
attrib -r -s -h iedrv.exe
del /a /f iedrv.exe
if NOT exist iedrv.exe echo %windir%\iedrv.exe %sDel%>>%systemdrive%\rapport.txt
if exist iedrv.exe echo %sError% %windir%\iedrv.exe>>%systemdrive%\rapport.txt
)

if exist iedrvctrl.exe (
attrib -r -s -h iedrvctrl.exe
del /a /f iedrvctrl.exe
if NOT exist iedrvctrl.exe echo %windir%\iedrvctrl.exe %sDel%>>%systemdrive%\rapport.txt
if exist iedrvctrl.exe echo %sError% %windir%\iedrvctrl.exe>>%systemdrive%\rapport.txt
)

if exist ielocales.dll (
attrib -r -s -h ielocales.dll
del /a /f ielocales.dll
if NOT exist ielocales.dll echo %windir%\ielocales.dll %sDel%>>%systemdrive%\rapport.txt
if exist ielocales.dll echo %sError% %windir%\ielocales.dll>>%systemdrive%\rapport.txt
)

if exist ieproxy.dll (
attrib -r -s -h ieproxy.dll
del /a /f ieproxy.dll
if NOT exist ieproxy.dll echo %windir%\ieproxy.dll %sDel%>>%systemdrive%\rapport.txt
if exist ieproxy.dll echo %sError% %windir%\ieproxy.dll>>%systemdrive%\rapport.txt
)

if exist iereport.dll (
attrib -r -s -h iereport.dll
del /a /f iereport.dll
if NOT exist iereport.dll echo %windir%\iereport.dll %sDel%>>%systemdrive%\rapport.txt
if exist iereport.dll echo %sError% %windir%\iereport.dll>>%systemdrive%\rapport.txt
)

if exist iesettings.dll (
attrib -r -s -h iesettings.dll
del /a /f iesettings.dll
if NOT exist iesettings.dll echo %windir%\iesettings.dll %sDel%>>%systemdrive%\rapport.txt
if exist iesettings.dll echo %sError% %windir%\iesettings.dll>>%systemdrive%\rapport.txt
)

if exist iesupport.dll (
attrib -r -s -h iesupport.dll
del /a /f iesupport.dll
if NOT exist iesupport.dll echo %windir%\iesupport.dll %sDel%>>%systemdrive%\rapport.txt
if exist iesupport.dll echo %sError% %windir%\iesupport.dll>>%systemdrive%\rapport.txt
)

if exist iexploree.dll (
attrib -r -s -h iexploree.dll
del /a /f iexploree.dll
if NOT exist iexploree.dll echo %windir%\iexploree.dll %sDel%>>%systemdrive%\rapport.txt
if exist iexploree.dll echo %sError% %windir%\iexploree.dll>>%systemdrive%\rapport.txt
)

if exist iexplorer.exe (
attrib -r -s -h iexplorer.exe
del /a /f iexplorer.exe
if NOT exist iexplorer.exe echo %windir%\iexplorer.exe %sDel%>>%systemdrive%\rapport.txt
if exist iexplorer.exe echo %sError% %windir%\iexplorer.exe>>%systemdrive%\rapport.txt
)

if exist ieyi.dll (
attrib -r -s -h ieyi.dll
del /a /f ieyi.dll
if NOT exist ieyi.dll echo %windir%\ieyi.dll %sDel%>>%systemdrive%\rapport.txt
if exist ieyi.dll echo %sError% %windir%\ieyi.dll>>%systemdrive%\rapport.txt
)

if exist ieyi.exe (
attrib -r -s -h ieyi.exe
del /a /f ieyi.exe
if NOT exist ieyi.exe echo %windir%\ieyi.exe %sDel%>>%systemdrive%\rapport.txt
if exist ieyi.exe echo %sError% %windir%\ieyi.exe>>%systemdrive%\rapport.txt
)

if exist icont.exe (
attrib -r -s -h icont.exe
del /a /f icont.exe
if NOT exist icont.exe echo %windir%\icont.exe %sDel%>>%systemdrive%\rapport.txt
if exist icont.exe echo %sError% %windir%\icont.exe>>%systemdrive%\rapport.txt
)

if exist inetdctr.dll (
attrib -r -s -h inetdctr.dll
del /a /f inetdctr.dll
if NOT exist inetdctr.dll echo %windir%\inetdctr.dll %sDel%>>%systemdrive%\rapport.txt
if exist inetdctr.dll echo %sError% %windir%\inetdctr.dll>>%systemdrive%\rapport.txt
)

if exist inetloader.dll (
attrib -r -s -h inetloader.dll
del /a /f inetloader.dll
if NOT exist inetloader.dll echo %windir%\inetloader.dll %sDel%>>%systemdrive%\rapport.txt
if exist inetloader.dll echo %sError% %windir%\inetloader.dll>>%systemdrive%\rapport.txt
)

if exist "infected.gif" (
attrib -r -s -h "infected.gif"
del /a /f "infected.gif"
if NOT exist "infected.gif" echo %windir%\infected.gif %sDel%>>%systemdrive%\rapport.txt
if exist "infected.gif" echo %sError% %windir%\infected.gif>>%systemdrive%\rapport.txt
)

if exist infected_top_bg.gif (
attrib -r -s -h infected_top_bg.gif
del /a /f infected_top_bg.gif
if NOT exist infected_top_bg.gif echo %windir%\infected_top_bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist infected_top_bg.gif echo %sError% %windir%\infected_top_bg.gif>>%systemdrive%\rapport.txt
)

if exist "info.gif" (
attrib -r -s -h "info.gif"
del /a /f "info.gif"
if NOT exist "info.gif" echo %windir%\info.gif %sDel%>>%systemdrive%\rapport.txt
if exist "info.gif" echo %sError% %windir%\info.gif>>%systemdrive%\rapport.txt
)

if exist keyboard.exe (
attrib -r -s -h keyboard.exe
del /a /f keyboard.exe
if NOT exist keyboard.exe echo %windir%\keyboard.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard.exe echo %sError% %windir%\keyboard.exe>>%systemdrive%\rapport.txt
)

if exist keyboard?.exe (
attrib -r -s -h keyboard?.exe
del /a /f keyboard?.exe
if NOT exist keyboard?.exe echo %windir%\keyboard?.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard?.exe echo %sError% %windir%\keyboard?.exe>>%systemdrive%\rapport.txt
)

if exist keyboard1.dat (
attrib -r -s -h keyboard1.dat
del /a /f keyboard1.dat
if NOT exist keyboard1.dat echo %windir%\keyboard1.dat %sDel%>>%systemdrive%\rapport.txt
if exist keyboard1.dat echo %sError% %windir%\keyboard1.dat>>%systemdrive%\rapport.txt
)

if exist keyboard??.exe (
attrib -r -s -h keyboard??.exe
del /a /f keyboard??.exe
if NOT exist keyboard??.exe echo %windir%\keyboard??.exe %sDel%>>%systemdrive%\rapport.txt
if exist keyboard??.exe echo %sError% %windir%\keyboard??.exe>>%systemdrive%\rapport.txt
)

if exist kl.exe (
attrib -r -s -h kl.exe
del /a /f kl.exe
if NOT exist kl.exe echo %windir%\kl.exe %sDel%>>%systemdrive%\rapport.txt
if exist kl.exe echo %sError% %windir%\kl.exe>>%systemdrive%\rapport.txt
)

if exist kl1.exe (
attrib -r -s -h kl1.exe
del /a /f kl1.exe
if NOT exist kl1.exe echo %windir%\kl1.exe %sDel%>>%systemdrive%\rapport.txt
if exist kl1.exe echo %sError% %windir%\kl1.exe>>%systemdrive%\rapport.txt
)

if exist loader.exe (
attrib -r -s -h loader.exe
del /a /f loader.exe
if NOT exist loader.exe echo %windir%\loader.exe %sDel%>>%systemdrive%\rapport.txt
if exist loader.exe echo %sError% %windir%\loader.exe>>%systemdrive%\rapport.txt
)

if exist loadadv728.exe (
attrib -r -s -h loadadv728.exe
del /a /f loadadv728.exe
if NOT exist loadadv728.exe echo %windir%\loadadv728.exe %sDel%>>%systemdrive%\rapport.txt
if exist loadadv728.exe echo %sError% %windir%\loadadv728.exe>>%systemdrive%\rapport.txt
)

if exist local.html (
attrib -r -s -h local.html
del /a /f local.html
if NOT exist local.html echo %windir%\local.html %sDel%>>%systemdrive%\rapport.txt
if exist local.html echo %sError% %windir%\local.html>>%systemdrive%\rapport.txt
)

if exist logo.gif (
attrib -r -s -h logo.gif
del /a /f logo.gif
if NOT exist logo.gif echo %windir%\logo.gif %sDel%>>%systemdrive%\rapport.txt
if exist logo.gif echo %sError% %windir%\logo.gif>>%systemdrive%\rapport.txt
)

if exist main_back.gif (
attrib -r -s -h main_back.gif
del /a /f main_back.gif
if NOT exist main_back.gif echo %windir%\main_back.gif %sDel%>>%systemdrive%\rapport.txt
if exist main_back.gif echo %sError% %windir%\main_back.gif>>%systemdrive%\rapport.txt
)

if exist main_uninstaller.exe (
attrib -r -s -h main_uninstaller.exe
del /a /f main_uninstaller.exe
if NOT exist main_uninstaller.exe echo %windir%\main_uninstaller.exe %sDel%>>%systemdrive%\rapport.txt
if exist main_uninstaller.exe echo %sError% %windir%\main_uninstaller.exe>>%systemdrive%\rapport.txt
)

if exist mgrs.exe (
attrib -r -s -h mgrs.exe
del /a /f mgrs.exe
if NOT exist mgrs.exe echo %windir%\mgrs.exe %sDel%>>%systemdrive%\rapport.txt
if exist mgrs.exe echo %sError% %windir%\mgrs.exe>>%systemdrive%\rapport.txt
)

if exist mousepad.exe (
attrib -r -s -h mousepad.exe
del /a /f mousepad.exe
if NOT exist mousepad.exe echo %windir%\mousepad.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad.exe echo %sError% %windir%\mousepad.exe>>%systemdrive%\rapport.txt
)

if exist mousepad?.exe (
attrib -r -s -h mousepad?.exe
del /a /f mousepad?.exe
if NOT exist mousepad?.exe echo %windir%\mousepad?.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad?.exe echo %sError% %windir%\mousepad?.exe>>%systemdrive%\rapport.txt
)

if exist mousepad??.exe (
attrib -r -s -h mousepad??.exe
del /a /f mousepad??.exe
if NOT exist mousepad??.exe echo %windir%\mousepad??.exe %sDel%>>%systemdrive%\rapport.txt
if exist mousepad??.exe echo %sError% %windir%\mousepad??.exe>>%systemdrive%\rapport.txt
)

if exist ms1.exe (
attrib -r -s -h ms1.exe
del /a /f ms1.exe
if NOT exist ms1.exe echo %windir%\ms1.exe %sDel%>>%systemdrive%\rapport.txt
if exist ms1.exe echo %sError% %windir%\ms1.exe>>%systemdrive%\rapport.txt
)

if exist msddx.dll (
attrib -r -s -h msddx.dll
del /a /f msddx.dll
if NOT exist msddx.dll echo %windir%\msddx.dll %sDel%>>%systemdrive%\rapport.txt
if exist msddx.dll echo %sError% %windir%\msddx.dll>>%systemdrive%\rapport.txt
)

if exist msdn.dll (
attrib -r -s -h msdn.dll
del /a /f msdn.dll
if NOT exist msdn.dll echo %windir%\msdn.dll %sDel%>>%systemdrive%\rapport.txt
if exist msdn.dll echo %sError% %windir%\msdn.dll>>%systemdrive%\rapport.txt
)

if exist msdns.dll (
attrib -r -s -h msdns.dll
del /a /f msdns.dll
if NOT exist msdns.dll echo %windir%\msdns.dll %sDel%>>%systemdrive%\rapport.txt
if exist msdns.dll echo %sError% %windir%\msdns.dll>>%systemdrive%\rapport.txt
)

if exist msdn32.dll (
attrib -r -s -h msdn32.dll
del /a /f msdn32.dll
if NOT exist msdn32.dll echo %windir%\msdn32.dll %sDel%>>%systemdrive%\rapport.txt
if exist msdn32.dll echo %sError% %windir%\msdn32.dll>>%systemdrive%\rapport.txt
)

if exist msdrv.exe (
attrib -r -s -h msdrv.exe
del /a /f msdrv.exe
if NOT exist msdrv.exe echo %windir%\msdrv.exe %sDel%>>%systemdrive%\rapport.txt
if exist msdrv.exe echo %sError% %windir%\msdrv.exe>>%systemdrive%\rapport.txt
)

if exist msdrvctrl.exe (
attrib -r -s -h msdrvctrl.exe
del /a /f msdrvctrl.exe
if NOT exist msdrvctrl.exe echo %windir%\msdrvctrl.exe %sDel%>>%systemdrive%\rapport.txt
if exist msdrvctrl.exe echo %sError% %windir%\msdrvctrl.exe>>%systemdrive%\rapport.txt
)

if exist msie.dll (
attrib -r -s -h msie.dll
del /a /f msie.dll
if NOT exist msie.dll echo %windir%\msie.dll %sDel%>>%systemdrive%\rapport.txt
if exist msie.dll echo %sError% %windir%\msie.dll>>%systemdrive%\rapport.txt
)

if exist mslog.exe (
attrib -r -s -h mslog.exe
del /a /f mslog.exe
if NOT exist mslog.exe echo %windir%\mslog.exe %sDel%>>%systemdrive%\rapport.txt
if exist mslog.exe echo %sError% %windir%\mslog.exe>>%systemdrive%\rapport.txt
)

if exist msole.dll (
attrib -r -s -h msole.dll
del /a /f msole.dll
if NOT exist msole.dll echo %windir%\msole.dll %sDel%>>%systemdrive%\rapport.txt
if exist msole.dll echo %sError% %windir%\msole.dll>>%systemdrive%\rapport.txt
)

if exist msdde.dll (
attrib -r -s -h msdde.dll
del /a /f msdde.dll
if NOT exist msdde.dll echo %windir%\msdde.dll %sDel%>>%systemdrive%\rapport.txt
if exist msdde.dll echo %sError% %windir%\msdde.dll>>%systemdrive%\rapport.txt
)

if exist msmdev.dll (
attrib -r -s -h msmdev.dll
del /a /f msmdev.dll
if NOT exist msmdev.dll echo %windir%\msmdev.dll %sDel%>>%systemdrive%\rapport.txt
if exist msmdev.dll echo %sError% %windir%\msmdev.dll>>%systemdrive%\rapport.txt
VCCLSID -d msmdev>>%systemdrive%\rapport.txt
)

if exist msmhost.dll (
attrib -r -s -h msmhost.dll
del /a /f msmhost.dll
if NOT exist msmhost.dll echo %windir%\msmhost.dll %sDel%>>%systemdrive%\rapport.txt
if exist msmhost.dll echo %sError% %windir%\msmhost.dll>>%systemdrive%\rapport.txt
VCCLSID -d msmhost>>%systemdrive%\rapport.txt
)

if exist msqnx.dll (
attrib -r -s -h msqnx.dll
del /a /f msqnx.dll
if NOT exist msqnx.dll echo %windir%\msqnx.dll %sDel%>>%systemdrive%\rapport.txt
if exist msqnx.dll echo %sError% %windir%\msqnx.dll>>%systemdrive%\rapport.txt
)

if exist mssmart.dll (
attrib -r -s -h mssmart.dll
del /a /f mssmart.dll
if NOT exist mssmart.dll echo %windir%\mssmart.dll %sDel%>>%systemdrive%\rapport.txt
if exist mssmart.dll echo %sError% %windir%\mssmart.dll>>%systemdrive%\rapport.txt
)

if exist mtwirl32.dll (
attrib -r -s -h mtwirl32.dll
del /a /f mtwirl32.dll
if NOT exist mtwirl32.dll echo %windir%\mtwirl32.dll %sDel%>>%systemdrive%\rapport.txt
if exist mtwirl32.dll echo %sError% %windir%\mtwirl32.dll>>%systemdrive%\rapport.txt
)

if exist mxd.exe (
attrib -r -s -h mxd.exe
del /a /f mxd.exe
if NOT exist mxd.exe echo %windir%\mxd.exe %sDel%>>%systemdrive%\rapport.txt
if exist mxd.exe echo %sError% %windir%\mxd.exe>>%systemdrive%\rapport.txt
)

if exist mxduo.dll (
attrib -r -s -h mxduo.dll
del /a /f mxduo.dll
if NOT exist mxduo.dll echo %windir%\mxduo.dll %sDel%>>%systemdrive%\rapport.txt
if exist mxduo.dll echo %sError% %windir%\mxduo.dll>>%systemdrive%\rapport.txt
)

if exist navibar_bg.gif (
attrib -r -s -h navibar_bg.gif
del /a /f navibar_bg.gif
if NOT exist navibar_bg.gif echo %windir%\navibar_bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist navibar_bg.gif echo %sError% %windir%\navibar_bg.gif>>%systemdrive%\rapport.txt
)

if exist navibar_corner_left.gif (
attrib -r -s -h navibar_corner_left.gif
del /a /f navibar_corner_left.gif
if NOT exist navibar_corner_left.gif echo %windir%\navibar_corner_left.gif %sDel%>>%systemdrive%\rapport.txt
if exist navibar_corner_left.gif echo %sError% %windir%\navibar_corner_left.gif>>%systemdrive%\rapport.txt
)

if exist navibar_corner_right.gif (
attrib -r -s -h navibar_corner_right.gif
del /a /f navibar_corner_right.gif
if NOT exist navibar_corner_right.gif echo %windir%\navibar_corner_right.gif %sDel%>>%systemdrive%\rapport.txt
if exist navibar_corner_right.gif echo %sError% %windir%\navibar_corner_right.gif>>%systemdrive%\rapport.txt
)

if exist newname.exe (
attrib -r -s -h newname.exe
del /a /f newname.exe
if NOT exist newname.exe echo %windir%\newname.exe %sDel%>>%systemdrive%\rapport.txt
if exist newname.exe echo %sError% %windir%\newname.exe>>%systemdrive%\rapport.txt
)

if exist newname.dat (
attrib -r -s -h newname.dat
del /a /f newname.dat
if NOT exist newname.dat echo %windir%\newname.dat %sDel%>>%systemdrive%\rapport.txt
if exist newname.dat echo %sError% %windir%\newname.dat>>%systemdrive%\rapport.txt
)

if exist newname?.exe (
attrib -r -s -h newname?.exe
del /a /f newname?.exe
if NOT exist newname?.exe echo %windir%\newname?.exe %sDel%>>%systemdrive%\rapport.txt
if exist newname?.exe echo %sError% %windir%\newname?.exe>>%systemdrive%\rapport.txt
)

if exist newname??.exe (
attrib -r -s -h newname??.exe
del /a /f newname??.exe
if NOT exist newname??.exe echo %windir%\newname??.exe %sDel%>>%systemdrive%\rapport.txt
if exist newname??.exe echo %sError% %windir%\newname??.exe>>%systemdrive%\rapport.txt
)

if exist "no-icon.gif" (
attrib -r -s -h "no-icon.gif"
del /a /f "no-icon.gif"
if NOT exist "no-icon.gif" echo %windir%\no-icon.gif %sDel%>>%systemdrive%\rapport.txt
if exist "no-icon.gif" echo %sError% %windir%\no-icon.gif>>%systemdrive%\rapport.txt
)

if exist notepad.com (
attrib -r -s -h notepad.com
del /a /f notepad.com
if NOT exist notepad.com echo %windir%\notepad.com %sDel%>>%systemdrive%\rapport.txt
if exist notepad.com echo %sError% %windir%\notepad.com>>%systemdrive%\rapport.txt
)

if exist notepad32.exe (
attrib -r -s -h notepad32.exe
del /a /f notepad32.exe
if NOT exist notepad32.exe echo %windir%\notepad32.exe %sDel%>>%systemdrive%\rapport.txt
if exist notepad32.exe echo %sError% %windir%\notepad32.exe>>%systemdrive%\rapport.txt
)

if exist nsduo.dll (
attrib -r -s -h nsduo.dll
del /a /f nsduo.dll
if NOT exist nsduo.dll echo %windir%\nsduo.dll %sDel%>>%systemdrive%\rapport.txt
if exist nsduo.dll echo %sError% %windir%\nsduo.dll>>%systemdrive%\rapport.txt
)

if exist olehelp.exe (
attrib -r -s -h olehelp.exe
del /a /f olehelp.exe
if NOT exist olehelp.exe echo %windir%\olehelp.exe %sDel%>>%systemdrive%\rapport.txt
if exist olehelp.exe echo %sError% %windir%\olehelp.exe>>%systemdrive%\rapport.txt
)

if exist onlineshopping.ico (
attrib -r -s -h onlineshopping.ico
del /a /f onlineshopping.ico
if NOT exist onlineshopping.ico echo %windir%\onlineshopping.ico %sDel%>>%systemdrive%\rapport.txt
if exist onlineshopping.ico echo %sError% %windir%\onlineshopping.ico>>%systemdrive%\rapport.txt
)

if exist osaupd.exe (
attrib -r -s -h osaupd.exe
del /a /f osaupd.exe
if NOT exist osaupd.exe echo %windir%\osaupd.exe %sDel%>>%systemdrive%\rapport.txt
if exist osaupd.exe echo %sError% %windir%\osaupd.exe>>%systemdrive%\rapport.txt
)

if exist ossmart.dll (
attrib -r -s -h ossmart.dll
del /a /f ossmart.dll
if NOT exist ossmart.dll echo %windir%\ossmart.dll %sDel%>>%systemdrive%\rapport.txt
if exist ossmart.dll echo %sError% %windir%\ossmart.dll>>%systemdrive%\rapport.txt
)

if exist policies.dll (
attrib -r -s -h policies.dll
del /a /f policies.dll
if NOT exist policies.dll echo %windir%\policies.dll %sDel%>>%systemdrive%\rapport.txt
if exist policies.dll echo %sError% %windir%\policies.dll>>%systemdrive%\rapport.txt
)

if exist policyverifier.exe (
attrib -r -s -h policyverifier.exe
del /a /f policyverifier.exe
if NOT exist policyverifier.exe echo %windir%\policyverifier.exe %sDel%>>%systemdrive%\rapport.txt
if exist policyverifier.exe echo %sError% %windir%\policyverifier.exe>>%systemdrive%\rapport.txt
)

if exist pop06ap2.exe (
attrib -r -s -h pop06ap2.exe
del /a /f pop06ap2.exe
if NOT exist pop06ap2.exe echo %windir%\pop06ap2.exe %sDel%>>%systemdrive%\rapport.txt
if exist pop06ap2.exe echo %sError% %windir%\pop06ap2.exe>>%systemdrive%\rapport.txt
)

if exist popuper.exe (
attrib -r -s -h popuper.exe
del /a /f popuper.exe
if NOT exist popuper.exe echo %windir%\popuper.exe %sDel%>>%systemdrive%\rapport.txt
if exist popuper.exe echo %sError% %windir%\popuper.exe>>%systemdrive%\rapport.txt
)

if exist pssms.dll (
attrib -r -s -h pssms.dll
del /a /f pssms.dll
if NOT exist pssms.dll echo %windir%\pssms.dll %sDel%>>%systemdrive%\rapport.txt
if exist pssms.dll echo %sError% %windir%\pssms.dll>>%systemdrive%\rapport.txt
)

if exist "%windir%\privacy_danger" (
attrib -r -h %windir%\privacy_danger\*.*
del /a /f /q %windir%\privacy_danger\*.*
RD /s /q "%windir%\privacy_danger"
IF NOT exist "%windir%\privacy_danger" echo %windir%\privacy_danger\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\privacy_danger" echo %sError% %windir%\privacy_danger>>%systemdrive%\rapport.txt
)

if exist processes.txt (
attrib -r -s -h processes.txt
del /a /f processes.txt
if NOT exist processes.txt echo %windir%\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist processes.txt echo %sError% %windir%\processes.txt>>%systemdrive%\rapport.txt
)

if exist product_box.gif (
attrib -r -s -h product_box.gif
del /a /f product_box.gif
if NOT exist product_box.gif echo %windir%\product_box.gif %sDel%>>%systemdrive%\rapport.txt
if exist product_box.gif echo %sError% %windir%\product_box.gif>>%systemdrive%\rapport.txt
)

if exist psg.exe (
attrib -r -s -h psg.exe
del /a /f psg.exe
if NOT exist psg.exe echo %windir%\psg.exe %sDel%>>%systemdrive%\rapport.txt
if exist psg.exe echo %sError% %windir%\psg.exe>>%systemdrive%\rapport.txt
)

if exist Pynix.dll (
attrib -r -s -h Pynix.dll
del /a /f Pynix.dll
if NOT exist Pynix.dll echo %windir%\Pynix.dll %sDel%>>%systemdrive%\rapport.txt
if exist Pynix.dll echo %sError% %windir%\Pynix.dll>>%systemdrive%\rapport.txt
)

if exist qnxplugin.dll (
attrib -r -s -h qnxplugin.dll
del /a /f qnxplugin.dll
if NOT exist qnxplugin.dll echo %windir%\qnxplugin.dll %sDel%>>%systemdrive%\rapport.txt
if exist qnxplugin.dll echo %sError% %windir%\qnxplugin.dll>>%systemdrive%\rapport.txt
)

if exist q*_disk.dll (
attrib -r -s -h q*_disk.dll
del /a /f q*_disk.dll
if NOT exist q*_disk.dll echo %windir%\q*_disk.dll %sDel%>>%systemdrive%\rapport.txt
if exist q*_disk.dll echo %sError% %windir%\q*_disk.dll>>%systemdrive%\rapport.txt
)

if exist red_warning_ico.gif (
attrib -r -s -h red_warning_ico.gif
del /a /f red_warning_ico.gif
if NOT exist red_warning_ico.gif echo %windir%\red_warning_ico.gif %sDel%>>%systemdrive%\rapport.txt
if exist red_warning_ico.gif echo %sError% %windir%\red_warning_ico.gif>>%systemdrive%\rapport.txt
)

if exist "reg-freeze-box.gif" (
attrib -r -s -h "reg-freeze-box.gif"
del /a /f "reg-freeze-box.gif"
if NOT exist "reg-freeze-box.gif" echo %windir%\reg-freeze-box.gif %sDel%>>%systemdrive%\rapport.txt
if exist "reg-freeze-box.gif" echo %sError% %windir%\reg-freeze-box.gif>>%systemdrive%\rapport.txt
)

if exist "reg-freeze-header.gif" (
attrib -r -s -h "reg-freeze-header.gif"
del /a /f "reg-freeze-header.gif"
if NOT exist "reg-freeze-header.gif" echo %windir%\reg-freeze-header.gif %sDel%>>%systemdrive%\rapport.txt
if exist "reg-freeze-header.gif" echo %sError% %windir%\reg-freeze-header.gif>>%systemdrive%\rapport.txt
)

if exist remove_spyware_header.gif (
attrib -r -s -h remove_spyware_header.gif
del /a /f remove_spyware_header.gif
if NOT exist remove_spyware_header.gif echo %windir%\remove_spyware_header.gif %sDel%>>%systemdrive%\rapport.txt
if exist remove_spyware_header.gif echo %sError% %windir%\remove_spyware_header.gif>>%systemdrive%\rapport.txt
)

if exist "remove-spyware-btn.gif" (
attrib -r -s -h "remove-spyware-btn.gif"
del /a /f "remove-spyware-btn.gif"
if NOT exist "remove-spyware-btn.gif" echo %windir%\remove-spyware-btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist "remove-spyware-btn.gif" echo %sError% %windir%\remove-spyware-btn.gif>>%systemdrive%\rapport.txt
)

if exist removeadware.ico (
attrib -r -s -h removeadware.ico
del /a /f removeadware.ico
if NOT exist removeadware.ico echo %windir%\removeadware.ico %sDel%>>%systemdrive%\rapport.txt
if exist removeadware.ico echo %sError% %windir%\removeadware.ico>>%systemdrive%\rapport.txt
)

if exist rf.gif (
attrib -r -s -h rf.gif
del /a /f rf.gif
if NOT exist rf.gif echo %windir%\rf.gif %sDel%>>%systemdrive%\rapport.txt
if exist rf.gif echo %sError% %windir%\rf.gif>>%systemdrive%\rapport.txt
)

if exist rf_header.gif (
attrib -r -s -h rf_header.gif
del /a /f rf_header.gif
if NOT exist rf_header.gif echo %windir%\rf_header.gif %sDel%>>%systemdrive%\rapport.txt
if exist rf_header.gif echo %sError% %windir%\rf_header.gif>>%systemdrive%\rapport.txt
)

if exist runwin32.exe (
attrib -r -s -h runwin32.exe
del /a /f runwin32.exe
if NOT exist runwin32.exe echo %windir%\runwin32.exe %sDel%>>%systemdrive%\rapport.txt
if exist runwin32.exe echo %sError% %windir%\runwin32.exe>>%systemdrive%\rapport.txt
)

if exist rzs.exe (
attrib -r -s -h rzs.exe
del /a /f rzs.exe
if NOT exist rzs.exe echo %windir%\rzs.exe %sDel%>>%systemdrive%\rapport.txt
if exist rzs.exe echo %sError% %windir%\rzs.exe>>%systemdrive%\rapport.txt
)

if exist safe_and_trusted.gif (
attrib -r -s -h safe_and_trusted.gif
del /a /f safe_and_trusted.gif
if NOT exist safe_and_trusted.gif echo %windir%\safe_and_trusted.gif %sDel%>>%systemdrive%\rapport.txt
if exist safe_and_trusted.gif echo %sError% %windir%\safe_and_trusted.gif>>%systemdrive%\rapport.txt
)

if exist scan_btn.gif (
attrib -r -s -h scan_btn.gif
del /a /f scan_btn.gif
if NOT exist scan_btn.gif echo %windir%\scan_btn.gif %sDel%>>%systemdrive%\rapport.txt
if exist scan_btn.gif echo %sError% %windir%\scan_btn.gif>>%systemdrive%\rapport.txt
)

if exist screen.html (
attrib -r -s -h screen.html
del /a /f screen.html
if NOT exist screen.html echo %windir%\screen.html %sDel%>>%systemdrive%\rapport.txt
if exist screen.html echo %sError% %windir%\screen.html>>%systemdrive%\rapport.txt
)

if exist se_spoof.dll (
attrib -r -s -h se_spoof.dll
del /a /f se_spoof.dll
if NOT exist se_spoof.dll echo %windir%\se_spoof.dll %sDel%>>%systemdrive%\rapport.txt
if exist se_spoof.dll echo %sError% %windir%\se_spoof.dll>>%systemdrive%\rapport.txt
)

if exist "security-center-bg.gif" (
attrib -r -s -h "security-center-bg.gif"
del /a /f "security-center-bg.gif"
if NOT exist "security-center-bg.gif" echo %windir%\security-center-bg.gif %sDel%>>%systemdrive%\rapport.txt
if exist "security-center-bg.gif" echo %sError% %windir%\security-center-bg.gif>>%systemdrive%\rapport.txt
)

if exist "security-center-logo.gif" (
attrib -r -s -h "security-center-logo.gif"
del /a /f "security-center-logo.gif"
if NOT exist "security-center-logo.gif" echo %windir%\security-center-logo.gif %sDel%>>%systemdrive%\rapport.txt
if exist "security-center-logo.gif" echo %sError% %windir%\security-center-logo.gif>>%systemdrive%\rapport.txt
)

if exist security_center_caption.gif (
attrib -r -s -h security_center_caption.gif
del /a /f security_center_caption.gif
if NOT exist security_center_caption.gif echo %windir%\security_center_caption.gif %sDel%>>%systemdrive%\rapport.txt
if exist security_center_caption.gif echo %sError% %windir%\security_center_caption.gif>>%systemdrive%\rapport.txt
)

if exist sep_hor.gif (
attrib -r -s -h sep_hor.gif
del /a /f sep_hor.gif
if NOT exist sep_hor.gif echo %windir%\sep_hor.gif %sDel%>>%systemdrive%\rapport.txt
if exist sep_hor.gif echo %sError% %windir%\sep_hor.gif>>%systemdrive%\rapport.txt
)

if exist sep_vert.gif (
attrib -r -s -h sep_vert.gif
del /a /f sep_vert.gif
if NOT exist sep_vert.gif echo %windir%\sep_vert.gif %sDel%>>%systemdrive%\rapport.txt
if exist sep_vert.gif echo %sError% %windir%\sep_vert.gif>>%systemdrive%\rapport.txt
)

if exist service.dll (
attrib -r -s -h service.dll
del /a /f service.dll
if NOT exist service.dll echo %windir%\service.dll %sDel%>>%systemdrive%\rapport.txt
if exist service.dll echo %sError% %windir%\service.dll>>%systemdrive%\rapport.txt
)

if exist sexpersonals.ico (
attrib -r -s -h sexpersonals.ico
del /a /f sexpersonals.ico
if NOT exist sexpersonals.ico echo %windir%\sexpersonals.ico %sDel%>>%systemdrive%\rapport.txt
if exist sexpersonals.ico echo %sError% %windir%\sexpersonals.ico>>%systemdrive%\rapport.txt
)

if exist sdkcb.dll (
attrib -r -s -h sdkcb.dll
del /a /f sdkcb.dll
if NOT exist sdkcb.dll echo %windir%\sdkcb.dll %sDel%>>%systemdrive%\rapport.txt
if exist sdkcb.dll echo %sError% %windir%\sdkcb.dll>>%systemdrive%\rapport.txt
)

if exist sdkqq.exe (
attrib -r -s -h sdkqq.exe
del /a /f sdkqq.exe
if NOT exist sdkqq.exe echo %windir%\sdkqq.exe %sDel%>>%systemdrive%\rapport.txt
if exist sdkqq.exe echo %sError% %windir%\sdkqq.exe>>%systemdrive%\rapport.txt
)

if exist shell.exe (
attrib -r -s -h shell.exe
del /a /f shell.exe
if NOT exist shell.exe echo %windir%\shell.exe %sDel%>>%systemdrive%\rapport.txt
if exist shell.exe echo %sError% %windir%\shell.exe>>%systemdrive%\rapport.txt
)

if exist spacer.gif (
attrib -r -s -h spacer.gif
del /a /f spacer.gif
if NOT exist spacer.gif echo %windir%\spacer.gif %sDel%>>%systemdrive%\rapport.txt
if exist spacer.gif echo %sError% %windir%\spacer.gif>>%systemdrive%\rapport.txt
)

if exist "spacer.gif'" (
attrib -r -s -h "spacer.gif'"
del /a /f "spacer.gif'"
if NOT exist "spacer.gif'" echo %windir%\spacer.gif' %sDel%>>%systemdrive%\rapport.txt
if exist "spacer.gif'" echo %sError% %windir%\spacer.gif'>>%systemdrive%\rapport.txt
)

if exist spp3.dll (
attrib -r -s -h spp3.dll
del /a /f spp3.dll
if NOT exist spp3.dll echo %windir%\spp3.dll %sDel%>>%systemdrive%\rapport.txt
if exist spp3.dll echo %sError% %windir%\spp3.dll>>%systemdrive%\rapport.txt
)

if exist spyware_detected.gif (
attrib -r -s -h spyware_detected.gif
del /a /f spyware_detected.gif
if NOT exist spyware_detected.gif echo %windir%\spyware_detected.gif %sDel%>>%systemdrive%\rapport.txt
if exist spyware_detected.gif echo %sError% %windir%\spyware_detected.gif>>%systemdrive%\rapport.txt
)

if exist "spyware-detected.gif" (
attrib -r -s -h "spyware-detected.gif"
del /a /f "spyware-detected.gif"
if NOT exist "spyware-detected.gif" echo %windir%\spyware-detected.gif %sDel%>>%systemdrive%\rapport.txt
if exist "spyware-detected.gif" echo %sError% %windir%\spyware-detected.gif>>%systemdrive%\rapport.txt
)

if exist "spyware-sheriff-header.gif" (
attrib -r -s -h "spyware-sheriff-header.gif"
del /a /f "spyware-sheriff-header.gif"
if NOT exist "spyware-sheriff-header.gif" echo %windir%\spyware-sheriff-header.gif %sDel%>>%systemdrive%\rapport.txt
if exist "spyware-sheriff-header.gif" echo %sError% %windir%\spyware-sheriff-header.gif>>%systemdrive%\rapport.txt
)

if exist "spyware-sheriff-box.gif" (
attrib -r -s -h "spyware-sheriff-box.gif"
del /a /f "spyware-sheriff-box.gif"
if NOT exist "spyware-sheriff-box.gif" echo %windir%\spyware-sheriff-box.gif %sDel%>>%systemdrive%\rapport.txt
if exist "spyware-sheriff-box.gif" echo %sError% %windir%\spyware-sheriff-box.gif>%systemdrive%\rapport.txt
)

if exist "star.gif" (
attrib -r -s -h "star.gif"
del /a /f "star.gif"
if NOT exist "star.gif" echo %windir%\star.gif %sDel%>>%systemdrive%\rapport.txt
if exist "star.gif" echo %sError% %windir%\star.gif>>%systemdrive%\rapport.txt
)

if exist "star-grey.gif" (
attrib -r -s -h "star-grey.gif"
del /a /f "star-grey.gif"
if NOT exist "star-grey.gif" echo %windir%\star-grey.gif %sDel%>>%systemdrive%\rapport.txt
if exist "star-grey.gif" echo %sError% %windir%\star-grey.gif>>%systemdrive%\rapport.txt
)

if exist star_gray.gif (
attrib -r -s -h star_gray.gif
del /a /f star_gray.gif
if NOT exist star_gray.gif echo %windir%\star_gray.gif %sDel%>>%systemdrive%\rapport.txt
if exist star_gray.gif echo %sError% %windir%\star_gray.gif>>%systemdrive%\rapport.txt
)

if exist star_gray_small.gif (
attrib -r -s -h star_gray_small.gif
del /a /f star_gray_small.gif
if NOT exist star_gray_small.gif echo %windir%\star_gray_small.gif %sDel%>>%systemdrive%\rapport.txt
if exist star_gray_small.gif echo %sError% %windir%\star_gray_small.gif>>%systemdrive%\rapport.txt
)

if exist star_small.gif (
attrib -r -s -h star_small.gif
del /a /f star_small.gif
if NOT exist star_small.gif echo %windir%\star_small.gif %sDel%>>%systemdrive%\rapport.txt
if exist star_small.gif echo %sError% %windir%\star_small.gif>>%systemdrive%\rapport.txt
)

if exist "true-stories.gif" (
attrib -r -s -h "true-stories.gif"
del /a /f "true-stories.gif"
if NOT exist "true-stories.gif" echo %windir%\true-stories.gif %sDel%>>%systemdrive%\rapport.txt
if exist "true-stories.gif" echo %sError% %windir%\true-stories.gif>>%systemdrive%\rapport.txt
)

if exist ts.gif (
attrib -r -s -h ts.gif
del /a /f ts.gif
if NOT exist ts.gif echo %windir%\ts.gif %sDel%>>%systemdrive%\rapport.txt
if exist ts.gif echo %sError% %windir%\ts.gif>>%systemdrive%\rapport.txt
)

if exist ts_header.gif (
attrib -r -s -h ts_header.gif
del /a /f ts_header.gif
if NOT exist ts_header.gif echo %windir%\ts_header.gif %sDel%>>%systemdrive%\rapport.txt
if exist ts_header.gif echo %sError% %windir%\ts_header.gif>>%systemdrive%\rapport.txt
)

if exist sachostx.exe (
attrib -r -s -h sachostx.exe
del /a /f sachostx.exe
if NOT exist sachostx.exe echo %windir%\sachostx.exe %sDel%>>%systemdrive%\rapport.txt
if exist sachostx.exe echo %sError% %windir%\sachostx.exe>>%systemdrive%\rapport.txt
)

if exist sconf32.dll (
attrib -r -s -h sconf32.dll
del /a /f sconf32.dll
if NOT exist sconf32.dll echo %windir%\sconf32.dll %sDel%>>%systemdrive%\rapport.txt
if exist sconf32.dll echo %sError% %windir%\sconf32.dll>>%systemdrive%\rapport.txt
)

if exist sec.exe (
attrib -r -s -h sec.exe
del /a /f sec.exe
if NOT exist sec.exe echo %windir%\sec.exe %sDel%>>%systemdrive%\rapport.txt
if exist sec.exe echo %sError% %windir%\sec.exe>>%systemdrive%\rapport.txt
)

if exist secure32.html (
attrib -r -s -h secure32.html
del /a /f secure32.html
if NOT exist secure32.html echo %windir%\secure32.html %sDel%>>%systemdrive%\rapport.txt
if exist secure32.html echo %sError% %windir%\secure32.html>>%systemdrive%\rapport.txt
)

if exist sites.ini (
attrib -r -s -h sites.ini
del /a /f sites.ini
if NOT exist sites.ini echo %windir%\sites.ini %sDel%>>%systemdrive%\rapport.txt
if exist sites.ini echo %sError% %windir%\sites.ini>>%systemdrive%\rapport.txt
)

if exist slassac.dll (
attrib -r -s -h slassac.dll
del /a /f slassac.dll
if NOT exist slassac.dll echo %windir%\slassac.dll %sDel%>>%systemdrive%\rapport.txt
if exist slassac.dll echo %sError% %windir%\slassac.dll>>%systemdrive%\rapport.txt
)

if exist sounddrv.dll (
attrib -r -s -h sounddrv.dll
del /a /f sounddrv.dll
if NOT exist sounddrv.dll echo %windir%\sounddrv.dll %sDel%>>%systemdrive%\rapport.txt
if exist sounddrv.dll echo %sError% %windir%\sounddrv.dll>>%systemdrive%\rapport.txt
)

if exist soundplugin.dll (
attrib -r -s -h soundplugin.dll
del /a /f soundplugin.dll
if NOT exist soundplugin.dll echo %windir%\soundplugin.dll %sDel%>>%systemdrive%\rapport.txt
if exist soundplugin.dll echo %sError% %windir%\soundplugin.dll>>%systemdrive%\rapport.txt
)

if exist sss_main.ini (
attrib -r -s -h sss_main.ini
del /a /f sss_main.ini
if NOT exist sss_main.ini echo %windir%\sss_main.ini %sDel%>>%systemdrive%\rapport.txt
if exist sss_main.ini echo %sError% %windir%\sss_main.ini>>%systemdrive%\rapport.txt
)

if exist susp.exe (
attrib -r -s -h susp.exe
del /a /f susp.exe
if NOT exist susp.exe echo %windir%\susp.exe %sDel%>>%systemdrive%\rapport.txt
if exist susp.exe echo %sError% %windir%\susp.exe>>%systemdrive%\rapport.txt
)

if exist svchost.exe (
attrib -r -s -h svchost.exe
del /a /f svchost.exe
if NOT exist svchost.exe echo %windir%\svchost.exe %sDel%>>%systemdrive%\rapport.txt
if exist svchost.exe echo %sError% %windir%\svchost.exe>>%systemdrive%\rapport.txt
)

if exist sysen.exe (
attrib -r -s -h sysen.exe
del /a /f sysen.exe
if NOT exist sysen.exe echo %windir%\sysen.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysen.exe echo %sError% %windir%\sysen.exe>>%systemdrive%\rapport.txt
)

if exist sysldr32.exe (
attrib -r -s -h sysldr32.exe
del /a /f sysldr32.exe
if NOT exist sysldr32.exe echo %windir%\sysldr32.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysldr32.exe echo %sError% %windir%\sysldr32.exe>>%systemdrive%\rapport.txt
)

if exist systeem.exe (
attrib -r -s -h systeem.exe
del /a /f systeem.exe
if NOT exist systeem.exe echo %windir%\systeem.exe %sDel%>>%systemdrive%\rapport.txt
if exist systeem.exe echo %sError% %windir%\systeem.exe>>%systemdrive%\rapport.txt
)

if exist System32fab.exe (
attrib -r -s -h System32fab.exe
del /a /f System32fab.exe
if NOT exist System32fab.exe echo %windir%\System32fab.exe %sDel%>>%systemdrive%\rapport.txt
if exist System32fab.exe echo %sError% %windir%\System32fab.exe>>%systemdrive%\rapport.txt
)

if exist systemcritical.exe (
attrib -r -s -h systemcritical.exe
del /a /f systemcritical.exe
if NOT exist systemcritical.exe echo %windir%\systemcritical.exe %sDel%>>%systemdrive%\rapport.txt
if exist systemcritical.exe echo %sError% %windir%\systemcritical.exe>>%systemdrive%\rapport.txt
)

if exist sysvx_.exe (
attrib -r -s -h sysvx_.exe
del /a /f sysvx_.exe
if NOT exist sysvx_.exe echo %windir%\sysvx_.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysvx_.exe echo %sError% %windir%\sysvx_.exe>>%systemdrive%\rapport.txt
)

if exist tctool.exe (
attrib -r -s -h tctool.exe
del /a /f tctool.exe
if NOT exist tctool.exe echo %windir%\tctool.exe %sDel%>>%systemdrive%\rapport.txt
if exist tctool.exe echo %sError% %windir%\tctool.exe>>%systemdrive%\rapport.txt
)

if exist teller2.chk (
attrib -r -s -h teller2.chk
del /a /f teller2.chk
if NOT exist teller2.chk echo %windir%\teller2.chk %sDel%>>%systemdrive%\rapport.txt
if exist teller2.chk echo %sError% %windir%\teller2.chk>>%systemdrive%\rapport.txt
)

if exist temp.000.exe (
attrib -r -s -h temp.000.exe
del /a /f temp.000.exe
if NOT exist temp.000.exe echo %windir%\temp.000.exe %sDel%>>%systemdrive%\rapport.txt
if exist temp.000.exe echo %sError% %windir%\temp.000.exe>>%systemdrive%\rapport.txt
)

if exist ticads.exe (
attrib -r -s -h ticads.exe
del /a /f ticads.exe
if NOT exist ticads.exe echo %windir%\ticads.exe %sDel%>>%systemdrive%\rapport.txt
if exist ticads.exe echo %sError% %windir%\ticads.exe>>%systemdrive%\rapport.txt
)

if exist time.exe (
attrib -r -s -h time.exe
del /a /f time.exe
if NOT exist time.exe echo %windir%\time.exe %sDel%>>%systemdrive%\rapport.txt
if exist time.exe echo %sError% %windir%\time.exe>>%systemdrive%\rapport.txt
)

if exist timessquare.exe (
attrib -r -s -h timessquare.exe
del /a /f timessquare.exe
if NOT exist timessquare.exe echo %windir%\timessquare.exe %sDel%>>%systemdrive%\rapport.txt
if exist timessquare.exe echo %sError% %windir%\timessquare.exe>>%systemdrive%\rapport.txt
)

if exist timessquare1.dat (
attrib -r -s -h timessquare1.dat
del /a /f timessquare1.dat
if NOT exist timessquare1.dat echo %windir%\timessquare1.dat %sDel%>>%systemdrive%\rapport.txt
if exist timessquare1.dat echo %sError% %windir%\timessquare1.dat>>%systemdrive%\rapport.txt
)

if exist tlhelp.dll (
attrib -r -s -h tlhelp.dll
del /a /f tlhelp.dll
if NOT exist tlhelp.dll echo %windir%\tlhelp.dll %sDel%>>%systemdrive%\rapport.txt
if exist tlhelp.dll echo %sError% %windir%\tlhelp.dll>>%systemdrive%\rapport.txt
)

if exist tlhelper.dll (
attrib -r -s -h tlhelper.dll
del /a /f tlhelper.dll
if NOT exist tlhelper.dll echo %windir%\tlhelper.dll %sDel%>>%systemdrive%\rapport.txt
if exist tlhelper.dll echo %sError% %windir%\tlhelper.dll>>%systemdrive%\rapport.txt
)

if exist tool1.exe (
attrib -r -s -h tool1.exe
del /a /f tool1.exe
if NOT exist tool1.exe echo %windir%\tool1.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool1.exe echo %sError% %windir%\tool1.exe>>%systemdrive%\rapport.txt
)

if exist tool2.exe (
attrib -r -s -h tool2.exe
del /a /f tool2.exe
if NOT exist tool2.exe echo %windir%\tool2.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool2.exe echo %sError% %windir%\tool2.exe>>%systemdrive%\rapport.txt
)

if exist tool3.exe (
attrib -r -s -h tool3.exe
del /a /f tool3.exe
if NOT exist tool3.exe echo %windir%\tool3.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool3.exe echo %sError% %windir%\tool3.exe>>%systemdrive%\rapport.txt
)

if exist tool4.exe (
attrib -r -s -h tool4.exe
del /a /f tool4.exe
if NOT exist tool4.exe echo %windir%\tool4.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool4.exe echo %sError% %windir%\tool4.exe>>%systemdrive%\rapport.txt
)

if exist tool5.exe (
attrib -r -s -h tool5.exe
del /a /f tool5.exe
if NOT exist tool5.exe echo %windir%\tool5.exe %sDel%>>%systemdrive%\rapport.txt
if exist tool5.exe echo %sError% %windir%\tool5.exe>>%systemdrive%\rapport.txt
)

if exist toolbar.exe (
attrib -r -s -h toolbar.exe
del /a /f toolbar.exe
if NOT exist toolbar.exe echo %windir%\toolbar.exe %sDel%>>%systemdrive%\rapport.txt
if exist toolbar.exe echo %sError% %windir%\toolbar.exe>>%systemdrive%\rapport.txt
)

if exist tpopup.exe (
attrib -r -s -h tpopup.exe
del /a /f tpopup.exe
if NOT exist tpopup.exe echo %windir%\tpopup.exe %sDel%>>%systemdrive%\rapport.txt
if exist tpopup.exe echo %sError% %windir%\tpopup.exe>>%systemdrive%\rapport.txt
)

if exist trustinbar.exe (
attrib -r -s -h trustinbar.exe
del /a /f trustinbar.exe
if NOT exist trustinbar.exe echo %windir%\trustinbar.exe %sDel%>>%systemdrive%\rapport.txt
if exist trustinbar.exe echo %sError% %windir%\trustinbar.exe>>%systemdrive%\rapport.txt
)

if exist tse.exe (
attrib -r -s -h tse.exe
del /a /f tse.exe
if NOT exist tse.exe echo %windir%\tse.exe %sDel%>>%systemdrive%\rapport.txt
if exist tse.exe echo %sError% %windir%\tse.exe>>%systemdrive%\rapport.txt
)

if exist uninstDsk.exe (
attrib -r -s -h uninstDsk.exe
del /a /f uninstDsk.exe
if NOT exist uninstDsk.exe echo %windir%\uninstDsk.exe %sDel%>>%systemdrive%\rapport.txt
if exist uninstDsk.exe echo %sError% %windir%\uninstDsk.exe>>%systemdrive%\rapport.txt
)

if exist uninstIU.exe (
attrib -r -s -h uninstIU.exe
del /a /f uninstIU.exe
if NOT exist uninstIU.exe echo %windir%\uninstIU.exe %sDel%>>%systemdrive%\rapport.txt
if exist uninstIU.exe echo %sError% %windir%\uninstIU.exe>>%systemdrive%\rapport.txt
)

if exist update13.js (
attrib -r -s -h update13.js
del /a /f update13.js
if NOT exist update13.js echo %windir%\update13.js %sDel%>>%systemdrive%\rapport.txt
if exist update13.js echo %sError% %windir%\update13.jse>>%systemdrive%\rapport.txt
)

if exist url.exe (
attrib -r -s -h url.exe
del /a /f url.exe
if NOT exist url.exe echo %windir%\url.exe %sDel%>>%systemdrive%\rapport.txt
if exist url.exe echo %sError% %windir%\url.exe>>%systemdrive%\rapport.txt
)

if exist user32.exe (
attrib -r -s -h user32.exe
del /a /f user32.exe
if NOT exist user32.exe echo %windir%\user32.exe %sDel%>>%systemdrive%\rapport.txt
if exist user32.exe echo %sError% %windir%\user32.exe>>%systemdrive%\rapport.txt
)

if exist users32.exe (
attrib -r -s -h users32.exe
del /a /f users32.exe
if NOT exist users32.exe echo %windir%\users32.exe %sDel%>>%systemdrive%\rapport.txt
if exist users32.exe echo %sError% %windir%\users32.exe>>%systemdrive%\rapport.txt
)

if exist v.gif (
attrib -r -s -h v.gif
del /a /f v.gif
if NOT exist v.gif echo %windir%\v.gif %sDel%>>%systemdrive%\rapport.txt
if exist v.gif echo %sError% %windir%\v.gif>>%systemdrive%\rapport.txt
)

if exist videoslots.ico (
attrib -r -s -h videoslots.ico
del /a /f videoslots.ico
if NOT exist videoslots.ico echo %windir%\videoslots.ico %sDel%>>%systemdrive%\rapport.txt
if exist videoslots.ico echo %sError% %windir%\videoslots.ico>>%systemdrive%\rapport.txt
)

if exist vpnconfig.dll (
attrib -r -s -h vpnconfig.dll
del /a /f vpnconfig.dll
if NOT exist vpnconfig.dll echo %windir%\vpnconfig.dll %sDel%>>%systemdrive%\rapport.txt
if exist vpnconfig.dll echo %sError% %windir%\vpnconfig.dll>>%systemdrive%\rapport.txt
)

if exist vpsnetwork.dll (
attrib -r -s -h vpsnetwork.dll
del /a /f vpsnetwork.dll
if NOT exist vpsnetwork.dll echo %windir%\vpsnetwork.dll %sDel%>>%systemdrive%\rapport.txt
if exist vpsnetwork.dll echo %sError% %windir%\vpsnetwork.dll>>%systemdrive%\rapport.txt
)

if exist vpssup.dll (
attrib -r -s -h vpssup.dll
del /a /f vpssup.dll
if NOT exist vpssup.dll echo %windir%\vpssup.dll %sDel%>>%systemdrive%\rapport.txt
if exist vpssup.dll echo %sError% %windir%\vpssup.dll>>%systemdrive%\rapport.txt
)

if exist vsmart.dll (
attrib -r -s -h vsmart.dll
del /a /f vsmart.dll
if NOT exist vsmart.dll echo %windir%\vsmart.dll %sDel%>>%systemdrive%\rapport.txt
if exist vsmart.dll echo %sError% %windir%\vsmart.dll>>%systemdrive%\rapport.txt
)

if exist waol.exe (
attrib -r -s -h waol.exe
del /a /f waol.exe
if NOT exist waol.exe echo %windir%\waol.exe %sDel%>>%systemdrive%\rapport.txt
if exist waol.exe echo %sError% %windir%\waol.exe>>%systemdrive%\rapport.txt
)

if exist warnhp.html (
attrib -r -s -h warnhp.html
del /a /f warnhp.html
if NOT exist warnhp.html echo %windir%\warnhp.html %sDel%>>%systemdrive%\rapport.txt
if exist warnhp.html echo %sError% %windir%\warnhp.html>>%systemdrive%\rapport.txt
)

if exist warning_icon.gif (
attrib -r -s -h warning_icon.gif
del /a /f warning_icon.gif
if NOT exist warning_icon.gif echo %windir%\warning_icon.gif %sDel%>>%systemdrive%\rapport.txt
if exist warning_icon.gif echo %sError% %windir%\warning_icon.gif>>%systemdrive%\rapport.txt
)

if exist "warning-bar-ico.gif" (
attrib -r -s -h "warning-bar-ico.gif"
del /a /f "warning-bar-ico.gif"
if NOT exist "warning-bar-ico.gif" echo %windir%\warning-bar-ico.gif %sDel%>>%systemdrive%\rapport.txt
if exist "warning-bar-ico.gif" echo %sError% %windir%\warning-bar-ico.gif>>%systemdrive%\rapport.txt
)

if exist win_logo.gif (
attrib -r -s -h win_logo.gif
del /a /f win_logo.gif
if NOT exist win_logo.gif echo %windir%\win_logo.gif %sDel%>>%systemdrive%\rapport.txt
if exist win_logo.gif echo %sError% %windir%\win_logo.gif>>%systemdrive%\rapport.txt
)

if exist "win-sec-center-logo.gif" (
attrib -r -s -h "win-sec-center-logo.gif"
del /a /f "win-sec-center-logo.gif"
if NOT exist "win-sec-center-logo.gif" echo %windir%\win-sec-center-logo.gif %sDel%>>%systemdrive%\rapport.txt
if exist "win-sec-center-logo.gif" echo %sError% %windir%\win-sec-center-logo.gif>>%systemdrive%\rapport.txt
)

if exist win32e.exe (
attrib -r -s -h win32e.exe
del /a /f win32e.exe
if NOT exist win32e.exe echo %windir%\win32e.exe %sDel%>>%systemdrive%\rapport.txt
if exist win32e.exe echo %sError% %windir%\win32e.exe>>%systemdrive%\rapport.txt
)

if exist win64.exe (
attrib -r -s -h win64.exe
del /a /f win64.exe
if NOT exist win64.exe echo %windir%\win64.exe %sDel%>>%systemdrive%\rapport.txt
if exist win64.exe echo %sError% %windir%\win64.exe>>%systemdrive%\rapport.txt
)

if exist winajbm.dll (
attrib -r -s -h winajbm.dll
del /a /f winajbm.dll
if NOT exist winajbm.dll echo %windir%\winajbm.dll %sDel%>>%systemdrive%\rapport.txt
if exist winajbm.dll echo %sError% %windir%\winajbm.dll>>%systemdrive%\rapport.txt
)

if exist wincom27.dll (
attrib -r -s -h wincom27.dll
del /a /f wincom27.dll
if NOT exist wincom27.dll echo %windir%\wincom27.dll %sDel%>>%systemdrive%\rapport.txt
if exist wincom27.dll echo %sError% %windir%\wincom27.dll>>%systemdrive%\rapport.txt
)

if exist window.exe (
attrib -r -s -h window.exe
del /a /f window.exe
if NOT exist window.exe echo %windir%\window.exe %sDel%>>%systemdrive%\rapport.txt
if exist window.exe echo %sError% %windir%\window.exe>>%systemdrive%\rapport.txt
)

if exist "windows-compatible.gif" (
attrib -r -s -h "windows-compatible.gif"
del /a /f "windows-compatible.gif"
if NOT exist "windows-compatible.gif" echo %windir%\windows-compatible.gif %sDel%>>%systemdrive%\rapport.txt
if exist "windows-compatible.gif" echo %sError% %windir%\windows-compatible.gif>>%systemdrive%\rapport.txt
)

if exist windows.html (
attrib -r -s -h windows.html
del /a /f windows.html
if NOT exist windows.html echo %windir%\windows.html %sDel%>>%systemdrive%\rapport.txt
if exist windows.html echo %sError% %windir%\windows.html>>%systemdrive%\rapport.txt
)

if exist wininet32.exe (
attrib -r -s -h wininet32.exe
del /a /f wininet32.exe
if NOT exist wininet32.exe echo %windir%\wininet32.exe %sDel%>>%systemdrive%\rapport.txt
if exist wininet32.exe echo %sError% %windir%\wininet32.exe>>%systemdrive%\rapport.txt
)

if exist winmgnt.exe (
attrib -r -s -h winmgnt.exe
del /a /f winmgnt.exe
if NOT exist winmgnt.exe echo %windir%\winmgnt.exe %sDel%>>%systemdrive%\rapport.txt
if exist winmgnt.exe echo %sError% %windir%\winmgnt.exe>>%systemdrive%\rapport.txt
)

if exist winsysupd.exe (
attrib -r -s -h winsysupd.exe
del /a /f winsysupd.exe
if NOT exist winsysupd.exe echo %windir%\winsysupd.exe %sDel%>>%systemdrive%\rapport.txt
if exist winsysupd.exe echo %sError% %windir%\winsysupd.exe>>%systemdrive%\rapport.txt
)

if exist winsysban.exe (
attrib -r -s -h winsysban.exe
del /a /f winsysban.exe
if NOT exist winsysban.exe echo %windir%\winsysban.exe %sDel%>>%systemdrive%\rapport.txt
if exist winsysban.exe echo %sError% %windir%\winsysban.exe>>%systemdrive%\rapport.txt
)

if exist winsysban8.exe (
attrib -r -s -h winsysban8.exe
del /a /f winsysban8.exe
if NOT exist winsysban8.exe echo %windir%\winsysban8.exe %sDel%>>%systemdrive%\rapport.txt
if exist winsysban8.exe echo %sError% %windir%\winsysban8.exe>>%systemdrive%\rapport.txt
)

if exist wmpconf.dll (
attrib -r -s -h wmpconf.dll
del /a /f wmpconf.dll
if NOT exist wmpconf.dll echo %windir%\wmpconf.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmpconf.dll echo %sError% %windir%\wmpconf.dll>>%systemdrive%\rapport.txt
VCCLSID -d wmpconf>>%systemdrive%\rapport.txt
)

if exist wmpdev.dll (
attrib -r -s -h wmpdev.dll
del /a /f wmpdev.dll
if NOT exist wmpdev.dll echo %windir%\wmpdev.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmpdev.dll echo %sError% %windir%\wmpdev.dll>>%systemdrive%\rapport.txt
VCCLSID -d wmpdev>>%systemdrive%\rapport.txt
)

if exist wmpenv.dll (
attrib -r -s -h wmpenv.dll
del /a /f wmpenv.dll
if NOT exist wmpenv.dll echo %windir%\wmpenv.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmpenv.dll echo %sError% %windir%\wmpenv.dll>>%systemdrive%\rapport.txt
VCCLSID -d wmpenv>>%systemdrive%\rapport.txt
)

if exist wmphost.dll (
attrib -r -s -h wmphost.dll
del /a /f wmphost.dll
if NOT exist wmphost.dll echo %windir%\wmphost.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmphost.dll echo %sError% %windir%\wmphost.dll>>%systemdrive%\rapport.txt
VCCLSID -d wmphost>>%systemdrive%\rapport.txt
)

if exist wmplayer.dll (
attrib -r -s -h wmplayer.dll
del /a /f wmplayer.dll
if NOT exist wmplayer.dll echo %windir%\wmplayer.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmplayer.dll echo %sError% %windir%\wmplayer.dll>>%systemdrive%\rapport.txt
)

if exist wmsound.dll (
attrib -r -s -h wmsound.dll
del /a /f wmsound.dll
if NOT exist wmsound.dll echo %windir%\wmsound.dll %sDel%>>%systemdrive%\rapport.txt
if exist wmsound.dll echo %sError% %windir%\wmsound.dll>>%systemdrive%\rapport.txt
)

if exist wow.dll (
attrib -r -s -h wow.dll
del /a /f wow.dll
if NOT exist wow.dll echo %windir%\wow.dll %sDel%>>%systemdrive%\rapport.txt
if exist wow.dll echo %sError% %windir%\wow.dll>>%systemdrive%\rapport.txt
)

if exist wowsupport.dll (
attrib -r -s -h wowsupport.dll
del /a /f wowsupport.dll
if NOT exist wowsupport.dll echo %windir%\wowsupport.dll %sDel%>>%systemdrive%\rapport.txt
if exist wowsupport.dll echo %sError% %windir%\wowsupport.dll>>%systemdrive%\rapport.txt
)

if exist wupdmgr.exe (
attrib -r -s -h wupdmgr.exe
del /a /f wupdmgr.exe
if NOT exist wupdmgr.exe echo %windir%\wupdmgr.exe %sDel%>>%systemdrive%\rapport.txt
if exist wupdmgr.exe echo %sError% %windir%\wupdmgr.exe>>%systemdrive%\rapport.txt
)

if exist x.gif (
attrib -r -s -h x.gif
del /a /f x.gif
if NOT exist x.gif echo %windir%\x.gif %sDel%>>%systemdrive%\rapport.txt
if exist x.gif echo %sError% %windir%\x.gif>>%systemdrive%\rapport.txt
)

if exist x.exe (
attrib -r -s -h x.exe
del /a /f x.exe
if NOT exist x.exe echo %windir%\x.exe %sDel%>>%systemdrive%\rapport.txt
if exist x.exe echo %sError% %windir%\x.exe>>%systemdrive%\rapport.txt
)

if exist xplugin.dll (
attrib -r -s -h xplugin.dll
del /a /f xplugin.dll
if NOT exist xplugin.dll echo %windir%\xplugin.dll %sDel%>>%systemdrive%\rapport.txt
if exist xplugin.dll echo %sError% %windir%\xplugin.dll>>%systemdrive%\rapport.txt
)

if exist xpupdate.exe (
attrib -r -s -h xpupdate.exe
del /a /f xpupdate.exe
if NOT exist xpupdate.exe echo %windir%\xpupdate.exe %sDel%>>%systemdrive%\rapport.txt
if exist xpupdate.exe echo %sError% %windir%\xpupdate.exe>>%systemdrive%\rapport.txt
)

if exist xvideo.dll (
attrib -r -s -h xvideo.dll
del /a /f xvideo.dll
if NOT exist xvideo.dll echo %windir%\xvideo.dll %sDel%>>%systemdrive%\rapport.txt
if exist xvideo.dll echo %sError% %windir%\xvideo.dll>>%systemdrive%\rapport.txt
)

if exist xxxvideo.hta (
attrib -r -s -h xxxvideo.hta
del /a /f xxxvideo.hta
if NOT exist xxxvideo.hta echo %windir%\xxxvideo.hta %sDel%>>%systemdrive%\rapport.txt
if exist xxxvideo.hta echo %sError% %windir%\xxxvideo.hta>>%systemdrive%\rapport.txt
)

if exist y.exe (
attrib -r -s -h y.exe
del /a /f y.exe
if NOT exist y.exe echo %windir%\y.exe %sDel%>>%systemdrive%\rapport.txt
if exist y.exe echo %sError% %windir%\y.exe>>%systemdrive%\rapport.txt
)

if exist yellow_warning_ico.gif (
attrib -r -s -h yellow_warning_ico.gif
del /a /f yellow_warning_ico.gif
if NOT exist yellow_warning_ico.gif echo %windir%\yellow_warning_ico.gif %sDel%>>%systemdrive%\rapport.txt
if exist yellow_warning_ico.gif echo %sError% %windir%\yellow_warning_ico.gif>>%systemdrive%\rapport.txt
)

if exist "yes-icon.gif" (
attrib -r -s -h "yes-icon.gif"
del /a /f "yes-icon.gif"
if NOT exist "yes-icon.gif" echo %windir%\yes-icon.gif %sDel%>>%systemdrive%\rapport.txt
if exist "yes-icon.gif" echo %sError% %windir%\yes-icon.gif>>%systemdrive%\rapport.txt
)

if exist "yod.htm" (
attrib -r -s -h "yod.htm"
del /a /f "yod.htm"
if NOT exist "yod.htm" echo %windir%\yod.htm %sDel%>>%systemdrive%\rapport.txt
if exist "yod.htm" echo %sError% %windir%\yod.htm>>%systemdrive%\rapport.txt
)

if exist zloader3.exe (
attrib -r -s -h zloader3.exe
del /a /f zloader3.exe
if NOT exist zloader3.exe echo %windir%\zloader3.exe %sDel%>>%systemdrive%\rapport.txt
if exist zloader3.exe echo %sError% %windir%\zloader3.exe>>%systemdrive%\rapport.txt
)

if exist ZServ.dll (
attrib -r -s -h ZServ.dll
del /a /f ZServ.dll
if NOT exist ZServ.dll echo %windir%\ZServ.dll %sDel%>>%systemdrive%\rapport.txt
if exist ZServ.dll echo %sError% %windir%\ZServ.dll>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__popuper.exe (
attrib -r -s -h __delete_on_reboot__popuper.exe
del /a /f __delete_on_reboot__popuper.exe
if NOT exist __delete_on_reboot__popuper.exe echo %windir%\__delete_on_reboot__popuper.exe %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__popuper.exe echo %sError% %windir%\__delete_on_reboot__popuper.exe>>%systemdrive%\rapport.txt
)

if exist "%windir%\muwq" (
attrib -r -h %windir%\muwq\*.*
del /a /f /q %windir%\muwq\*.*
RD /s /q "%windir%\muwq"
IF NOT exist "%windir%\muwq" echo %windir%\muwq\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\muwq" echo %sError% %windir%\muwq>>%systemdrive%\rapport.txt
)

if exist "%windir%\inet20001" (
attrib -r -h %windir%\inet20001\*.*
del /a /f /q %windir%\inet20001\*.*
RD /s /q "%windir%\inet20001"
IF NOT exist "%windir%\inet20001" echo %windir%\inet20001\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20001" echo %sError% %windir%\inet20001>>%systemdrive%\rapport.txt
)

if exist "%windir%\inet20010" (
attrib -r -h %windir%\inet20010\*.*
del /a /f /q %windir%\inet20010\*.*
RD /s /q "%windir%\inet20010"
IF NOT exist "%windir%\inet20010" echo %windir%\inet20010\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20010" echo %sError% %windir%\inet20010>>%systemdrive%\rapport.txt
)

if exist "%windir%\inet20066" (
attrib -r -h %windir%\inet20066\*.*
del /a /f /q %windir%\inet20066\*.*
RD /s /q "%windir%\inet20066"
IF NOT exist "%windir%\inet20066" echo %windir%\inet20066\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20066" echo %sError% %windir%\inet20066>>%systemdrive%\rapport.txt
)

if exist "%windir%\inet20099" (
attrib -r -h %windir%\inet20099\*.*
del /a /f /q %windir%\inet20099\*.*
RD /s /q "%windir%\inet20099"
IF NOT exist "%windir%\inet20099" echo %windir%\inet20099\ %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\inet20099" echo %sError% %windir%\inet20099>>%systemdrive%\rapport.txt
)


if exist "%windir%\Tasks\At?.job" (
attrib -r -s -h "%windir%\Tasks\At?.job"
del /a /f "%windir%\Tasks\At?.job"
if NOT exist "%windir%\Tasks\At?.job" echo %windir%\Tasks\At?.job %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\Tasks\At?.job" echo %sError% %windir%\Tasks\At?.job>>%systemdrive%\rapport.txt
)

if exist "%windir%\Tasks\At??.job" (
attrib -r -s -h "%windir%\Tasks\At??.job"
del /a /f "%windir%\Tasks\At??.job"
if NOT exist "%windir%\Tasks\At??.job" echo %windir%\Tasks\At??.job %sDel%>>%systemdrive%\rapport.txt
if exist "%windir%\Tasks\At??.job" echo %sError% %windir%\Tasks\At??.job>>%systemdrive%\rapport.txt
)



popd




pushd %windir%\system

if exist csrss.exe (
attrib -r -s -h csrss.exe
del /a /f csrss.exe
if NOT exist csrss.exe echo %windir%\system\csrss.exe %sDel%>>%systemdrive%\rapport.txt
if exist csrss.exe echo %sError% %windir%\system\csrss.exe>>%systemdrive%\rapport.txt
)

if exist eooyt.exe (
attrib -r -s -h eooyt.exe
del /a /f eooyt.exe
if NOT exist eooyt.exe echo %windir%\system\eooyt.exe %sDel%>>%systemdrive%\rapport.txt
if exist eooyt.exe echo %sError% %windir%\system\eooyt.exe>>%systemdrive%\rapport.txt
)

if exist processes.txt (
attrib -r -s -h processes.txt
del /a /f processes.txt
if NOT exist processes.txt echo %windir%\system\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist processes.txt echo %sError% %windir%\system\processes.txt>>%systemdrive%\rapport.txt
)

if exist svchost.exe (
attrib -r -s -h svchost.exe
del /a /f svchost.exe
if NOT exist svchost.exe echo %windir%\system\svchost.exe %sDel%>>%systemdrive%\rapport.txt
if exist svchost.exe echo %sError% %windir%\system\svchost.exe>>%systemdrive%\rapport.txt
)

if exist svchost.dll (
attrib -r -s -h svchost.dll
del /a /f svchost.dll
if NOT exist svchost.dll echo %windir%\system\svchost.dll %sDel%>>%systemdrive%\rapport.txt
if exist svchost.dll echo %sError% %windir%\system\svchost.dll>>%systemdrive%\rapport.txt
)

if exist svwhost.exe (
attrib -r -s -h svwhost.exe
del /a /f svwhost.exe
if NOT exist svwhost.exe echo %windir%\system\svwhost.exe %sDel%>>%systemdrive%\rapport.txt
if exist svwhost.exe echo %sError% %windir%\system\svwhost.exe>>%systemdrive%\rapport.txt
)

if exist svwhost.dll (
attrib -r -s -h svwhost.dll
del /a /f svwhost.dll
if NOT exist svwhost.dll echo %windir%\system\svwhost.dll %sDel%>>%systemdrive%\rapport.txt
if exist svwhost.dll echo %sError% %windir%\system\svwhost.dll>>%systemdrive%\rapport.txt
)

popd





pushd %windir%\Web

if exist desktop.html (
attrib -r -s -h desktop.html
del /a /f desktop.html
if NOT exist desktop.html echo %windir%\Web\desktop.html %sDel%>>%systemdrive%\rapport.txt
if exist desktop.html echo %sError% %windir%\Web\desktop.html>>%systemdrive%\rapport.txt
)

if exist wallpaper.html (
attrib -r -s -h wallpaper.html
del /a /f wallpaper.html
if NOT exist wallpaper.html echo %windir%\Web\wallpaper.html %sDel%>>%systemdrive%\rapport.txt
if exist wallpaper.html echo %sError% %windir%\Web\wallpaper.html>>%systemdrive%\rapport.txt
)

popd




pushd %syspath%

if exist ~update.exe (
attrib -r -s -h ~update.exe
del /a /f ~update.exe
if NOT exist ~update.exe echo %syspath%\~update.exe %sDel%>>%systemdrive%\rapport.txt
if exist ~update.exe echo %sError% %syspath%\~update.exe>>%systemdrive%\rapport.txt
)

if exist 0mcamcap.exe (
attrib -r -s -h 0mcamcap.exe 
del /a /f 0mcamcap.exe 
if NOT exist 0mcamcap.exe echo %syspath%\0mcamcap.exe %sDel%>>%systemdrive%\rapport.txt
if exist 0mcamcap.exe echo %sError% %syspath%\0mcamcap.exe>>%systemdrive%\rapport.txt
)

if exist 977efcdb.exe (
attrib -r -s -h 977efcdb.exe 
del /a /f 977efcdb.exe 
if NOT exist 977efcdb.exe echo %syspath%\977efcdb.exe %sDel%>>%systemdrive%\rapport.txt
if exist 977efcdb.exe echo %sError% %syspath%\977efcdb.exe>>%systemdrive%\rapport.txt
)

if exist a.exe (
attrib -r -s -h a.exe
del /a /f a.exe
if NOT exist a.exe echo %syspath%\a.exe %sDel%>>%systemdrive%\rapport.txt
if exist a.exe echo %sError% %syspath%\a.exe>>%systemdrive%\rapport.txt
)

if exist ace16win.dll (
attrib -r -s -h ace16win.dll
del /a /f ace16win.dll
if NOT exist ace16win.dll echo %syspath%\ace16win.dll %sDel%>>%systemdrive%\rapport.txt
if exist ace16win.dll echo %sError% %syspath%\ace16win.dll>>%systemdrive%\rapport.txt
)

if exist acvgxw.dll (
attrib -r -s -h acvgxw.dll
del /a /f acvgxw.dll
if NOT exist acvgxw.dll echo %syspath%\acvgxw.dll %sDel%>>%systemdrive%\rapport.txt
if exist acvgxw.dll echo %sError% %syspath%\acvgxw.dll>>%systemdrive%\rapport.txt
)

if exist adobepnl.dll (
attrib -r -s -h adobepnl.dll
del /a /f adobepnl.dll
if NOT exist adobepnl.dll echo %syspath%\adobepnl.dll %sDel%>>%systemdrive%\rapport.txt
if exist adobepnl.dll echo %sError% %syspath%\adobepnl.dll>>%systemdrive%\rapport.txt
)

if exist AdService.dll (
attrib -r -s -h AdService.dll
del /a /f AdService.dll
if NOT exist AdService.dll echo %syspath%\AdService.dll %sDel%>>%systemdrive%\rapport.txt
if exist AdService.dll echo %sError% %syspath%\AdService.dll>>%systemdrive%\rapport.txt
)

if exist adsmart.exe (
attrib -r -s -h adsmart.exe
del /a /f adsmart.exe
if NOT exist adsmart.exe echo %syspath%\adsmart.exe %sDel%>>%systemdrive%\rapport.txt
if exist adsmart.exe echo %sError% %syspath%\adsmart.exe>>%systemdrive%\rapport.txt
)

if exist afkvvy.dll (
attrib -r -s -h afkvvy.dll
del /a /f afkvvy.dll
if NOT exist afkvvy.dll echo %syspath%\afkvvy.dll %sDel%>>%systemdrive%\rapport.txt
if exist afkvvy.dll echo %sError% %syspath%\afkvvy.dll>>%systemdrive%\rapport.txt
)

if exist afqgda.exe (
attrib -r -s -h afqgda.exe
del /a /f afqgda.exe
if NOT exist afqgda.exe echo %syspath%\afqgda.exe %sDel%>>%systemdrive%\rapport.txt
if exist afqgda.exe echo %sError% %syspath%\afqgda.exe>>%systemdrive%\rapport.txt
)

if exist afzdbl.dll (
attrib -r -s -h afzdbl.dll
del /a /f afzdbl.dll
if NOT exist afzdbl.dll echo %syspath%\afzdbl.dll %sDel%>>%systemdrive%\rapport.txt
if exist afzdbl.dll echo %sError% %syspath%\afzdbl.dll>>%systemdrive%\rapport.txt
)

if exist alxres.dll (
attrib -r -s -h alxres.dll
del /a /f alxres.dll
if NOT exist alxres.dll echo %syspath%\alxres.dll %sDel%>>%systemdrive%\rapport.txt
if exist alxres.dll echo %sError% %syspath%\alxres.dll>>%systemdrive%\rapport.txt
)

if exist AntiSpy.exe (
attrib -r -s -h AntiSpy.exe
del /a /f AntiSpy.exe
if NOT exist AntiSpy.exe echo %syspath%\AntiSpy.exe %sDel%>>%systemdrive%\rapport.txt
if exist AntiSpy.exe echo %sError% %syspath%\AntiSpy.exe>>%systemdrive%\rapport.txt
)

if exist anti_troj.exe (
attrib -r -s -h anti_troj.exe
del /a /f anti_troj.exe
if NOT exist anti_troj.exe echo %syspath%\anti_troj.exe %sDel%>>%systemdrive%\rapport.txt
if exist anti_troj.exe echo %sError% %syspath%\anti_troj.exe>>%systemdrive%\rapport.txt
)

if exist antzozc.dll (
attrib -r -s -h antzozc.dll
del /a /f antzozc.dll
if NOT exist antzozc.dll echo %syspath%\antzozc.dll %sDel%>>%systemdrive%\rapport.txt
if exist antzozc.dll echo %sError% %syspath%\antzozc.dll>>%systemdrive%\rapport.txt
)

if exist appmagr.dll (
attrib -r -s -h appmagr.dll
del /a /f appmagr.dll
if NOT exist appmagr.dll echo %syspath%\appmagr.dll %sDel%>>%systemdrive%\rapport.txt
if exist appmagr.dll echo %sError% %syspath%\appmagr.dll>>%systemdrive%\rapport.txt
)

if exist asxbbx.dll (
attrib -r -s -h asxbbx.dll
del /a /f asxbbx.dll
if NOT exist asxbbx.dll echo %syspath%\asxbbx.dll %sDel%>>%systemdrive%\rapport.txt
if exist asxbbx.dll echo %sError% %syspath%\asxbbx.dll>>%systemdrive%\rapport.txt
)

if exist atmclk.exe (
attrib -r -s -h atmclk.exe
del /a /f atmclk.exe
if NOT exist atmclk.exe echo %syspath%\atmclk.exe %sDel%>>%systemdrive%\rapport.txt
if exist atmclk.exe echo %sError% %syspath%\atmclk.exe>>%systemdrive%\rapport.txt
)

if exist atzrdada.exe (
attrib -r -s -h atzrdada.exe
del /a /f atzrdada.exe
if NOT exist atzrdada.exe echo %syspath%\atzrdada.exe %sDel%>>%systemdrive%\rapport.txt
if exist atzrdada.exe echo %sError% %syspath%\atzrdada.exe>>%systemdrive%\rapport.txt
)

if exist autodisc32.dll (
attrib -r -s -h autodisc32.dll
del /a /f autodisc32.dll
if NOT exist autodisc32.dll echo %syspath%\autodisc32.dll %sDel%>>%systemdrive%\rapport.txt
if exist autodisc32.dll echo %sError% %syspath%\autodisc32.dll>>%systemdrive%\rapport.txt
)

if exist autosys.exe (
attrib -r -s -h autosys.exe
del /a /f autosys.exe
if NOT exist autosys.exe echo %syspath%\autosys.exe %sDel%>>%systemdrive%\rapport.txt
if exist autosys.exe echo %sError% %syspath%\autosys.exe>>%systemdrive%\rapport.txt
)

if exist "Air Tickets.ico" (
attrib -r -s -h "Air Tickets.ico"
del /a /f "Air Tickets.ico"
if NOT exist "Air Tickets.ico" echo %syspath%\Air Tickets.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Air Tickets.ico" echo %sError% %syspath%\Air Tickets.ico>>%systemdrive%\rapport.txt
)

if exist axlet.dll (
attrib -r -s -h axlet.dll
del /a /f axlet.dll
if NOT exist axlet.dll echo %syspath%\axlet.dll %sDel%>>%systemdrive%\rapport.txt
if exist axlet.dll echo %sError% %syspath%\axlet.dll>>%systemdrive%\rapport.txt
)

if exist bhoimpl.dll (
attrib -r -s -h bhoimpl.dll
del /a /f bhoimpl.dll
if NOT exist bhoimpl.dll echo %syspath%\bhoimpl.dll %sDel%>>%systemdrive%\rapport.txt
if exist bhoimpl.dll echo %sError% %syspath%\bhoimpl.dll>>%systemdrive%\rapport.txt
)

if exist bhoSearchSpy.dll (
attrib -r -s -h bhoSearchSpy.dll
del /a /f bhoSearchSpy.dll
if NOT exist bhoSearchSpy.dll echo %syspath%\bhoSearchSpy.dll %sDel%>>%systemdrive%\rapport.txt
if exist bhoSearchSpy.dll echo %sError% %syspath%\bhoSearchSpy.dll>>%systemdrive%\rapport.txt
)

if exist "Big Tits.ico" (
attrib -r -s -h "Big Tits.ico"
del /a /f "Big Tits.ico"
if NOT exist "Big Tits.ico" echo %syspath%\Big Tits.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Big Tits.ico" echo %sError% %syspath%\Big Tits.ico>>%systemdrive%\rapport.txt
)

if exist bikini.exe (
attrib -r -s -h bikini.exe
del /a /f bikini.exe
if NOT exist bikini.exe echo %syspath%\bikini.exe %sDel%>>%systemdrive%\rapport.txt
if exist bikini.exe echo %sError% %syspath%\bikini.exe>>%systemdrive%\rapport.txt
)

if exist bin29a.log (
attrib -r -s -h bin29a.log
del /a /f bin29a.log
if NOT exist bin29a.log echo %syspath%\bin29a.log %sDel%>>%systemdrive%\rapport.txt
if exist bin29a.log echo %sError% %syspath%\bin29a.log>>%systemdrive%\rapport.txt
)

if exist birdihuy.dll (
attrib -r -s -h birdihuy.dll
del /a /f birdihuy.dll
if NOT exist birdihuy.dll echo %syspath%\birdihuy.dll %sDel%>>%systemdrive%\rapport.txt
if exist birdihuy.dll echo %sError% %syspath%\birdihuy.dll>>%systemdrive%\rapport.txt
)

if exist birdihuy32.dll (
attrib -r -s -h birdihuy32.dll
del /a /f birdihuy32.dll
if NOT exist birdihuy32.dll echo %syspath%\birdihuy32.dll %sDel%>>%systemdrive%\rapport.txt
if exist birdihuy32.dll echo %sError% %syspath%\birdihuy32.dll>>%systemdrive%\rapport.txt
)

if exist Blackjack.ico (
attrib -r -s -h Blackjack.ico
del /a /f Blackjack.ico
if NOT exist Blackjack.ico echo %syspath%\Blackjack.ico %sDel%>>%systemdrive%\rapport.txt
if exist Blackjack.ico echo %sError% %syspath%\Blackjack.ico>>%systemdrive%\rapport.txt
)

if exist bnmsrv.exe (
attrib -r -s -h bnmsrv.exe
del /a /f bnmsrv.exe
if NOT exist bnmsrv.exe echo %syspath%\bnmsrv.exe %sDel%>>%systemdrive%\rapport.txt
if exist bnmsrv.exe echo %sError% %syspath%\bnmsrv.exe>>%systemdrive%\rapport.txt
)

if exist bolnyz.dll (
attrib -r -s -h bolnyz.dll
del /a /f bolnyz.dll
if NOT exist bolnyz.dll echo %syspath%\bolnyz.dll %sDel%>>%systemdrive%\rapport.txt
if exist bolnyz.dll echo %sError% %syspath%\bolnyz.dll>>%systemdrive%\rapport.txt
)

if exist bre.dll (
attrib -r -s -h bre.dll
del /a /f bre.dll
if NOT exist bre.dll echo %syspath%\bre.dll %sDel%>>%systemdrive%\rapport.txt
if exist bre.dll echo %sError% %syspath%\bre.dll>>%systemdrive%\rapport.txt
)

if exist bre32.dll (
attrib -r -s -h bre32.dll
del /a /f bre32.dll
if NOT exist bre32.dll echo %syspath%\bre32.dll %sDel%>>%systemdrive%\rapport.txt
if exist bre32.dll echo %sError% %syspath%\bre32.dll>>%systemdrive%\rapport.txt
)

if exist bridge.dll (
attrib -r -s -h bridge.dll
del /a /f bridge.dll
if NOT exist bridge.dll echo %syspath%\bridge.dll %sDel%>>%systemdrive%\rapport.txt
if exist bridge.dll echo %sError% %syspath%\bridge.dll>>%systemdrive%\rapport.txt
)

if exist "Britney Spears.ico" (
attrib -r -s -h "Britney Spears.ico"
del /a /f "Britney Spears.ico"
if NOT exist "Britney Spears.ico" echo %syspath%\Britney Spears.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Britney Spears.ico" echo %sError% %syspath%\Britney Spears.ico>>%systemdrive%\rapport.txt
)

if exist bpvcou.dll (
attrib -r -s -h bpvcou.dll
del /a /f bpvcou.dll
if NOT exist bpvcou.dll echo %syspath%\bpvcou.dll %sDel%>>%systemdrive%\rapport.txt
if exist bpvcou.dll echo %sError% %syspath%\bpvcou.dll>>%systemdrive%\rapport.txt
)

if exist browsela.dll (
attrib -r -s -h browsela.dll
del /a /f browsela.dll
if NOT exist browsela.dll echo %syspath%\browsela.dll %sDel%>>%systemdrive%\rapport.txt
if exist browsela.dll echo %sError% %syspath%\browsela.dll>>%systemdrive%\rapport.txt
)

if exist bu.exe (
attrib -r -s -h bu.exe
del /a /f bu.exe
if NOT exist bu.exe echo %syspath%\bu.exe %sDel%>>%systemdrive%\rapport.txt
if exist bu.exe echo %sError% %syspath%\bu.exe>>%systemdrive%\rapport.txt
)

if exist "Car Insurance.ico" (
attrib -r -s -h "Car Insurance.ico"
del /a /f "Car Insurance.ico"
if NOT exist "Car Insurance.ico" echo %syspath%\Car Insurance.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Car Insurance.ico" echo %sError% %syspath%\Car Insurance.ico>>%systemdrive%\rapport.txt
)

if exist casino.ico (
attrib -r -s -h casino.ico
del /a /f casino.ico
if NOT exist casino.ico echo %syspath%\casino.ico %sDel%>>%systemdrive%\rapport.txt
if exist casino.ico echo %sError% %syspath%\casino.ico>>%systemdrive%\rapport.txt
)

if exist ccyszwl.dll (
attrib -r -s -h ccyszwl.dll
del /a /f ccyszwl.dll
if NOT exist ccyszwl.dll echo %syspath%\ccyszwl.dll %sDel%>>%systemdrive%\rapport.txt
if exist ccyszwl.dll echo %sError% %syspath%\ccyszwl.dll>>%systemdrive%\rapport.txt
)

if exist cdwvhbf.dll (
attrib -r -s -h cdwvhbf.dll
del /a /f cdwvhbf.dll
if NOT exist cdwvhbf.dll echo %syspath%\cdwvhbf.dll %sDel%>>%systemdrive%\rapport.txt
if exist cdwvhbf.dll echo %sError% %syspath%\cdwvhbf.dll>>%systemdrive%\rapport.txt
)

if exist cefrjsh.dll (
attrib -r -s -h cefrjsh.dll
del /a /f cefrjsh.dll
if NOT exist cefrjsh.dll echo %syspath%\cefrjsh.dll %sDel%>>%systemdrive%\rapport.txt
if exist cefrjsh.dll echo %sError% %syspath%\cefrjsh.dll>>%systemdrive%\rapport.txt
)

if exist cfltygd.dll (
attrib -r -s -h cfltygd.dll
del /a /f cfltygd.dll
if NOT exist cfltygd.dll echo %syspath%\cfltygd.dll %sDel%>>%systemdrive%\rapport.txt
if exist cfltygd.dll echo %sError% %syspath%\cfltygd.dll>>%systemdrive%\rapport.txt
)

if exist "Cheap Cigarettes.ico" (
attrib -r -s -h "Cheap Cigarettes.ico"
del /a /f "Cheap Cigarettes.ico"
if NOT exist "Cheap Cigarettes.ico" echo %syspath%\Cheap Cigarettes.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Cheap Cigarettes.ico" echo %sError% %syspath%\Cheap Cigarettes.ico>>%systemdrive%\rapport.txt
)

if exist child.dll (
attrib -r -s -h child.dll
del /a /f child.dll
if NOT exist child.dll echo %syspath%\child.dll %sDel%>>%systemdrive%\rapport.txt
if exist child.dll echo %sError% %syspath%\child.dll>>%systemdrive%\rapport.txt
)

if exist chp.dll (
attrib -r -s -h chp.dll
del /a /f chp.dll
if NOT exist chp.dll echo %syspath%\chp.dll %sDel%>>%systemdrive%\rapport.txt
if exist chp.dll echo %sError% %syspath%\chp.dll>>%systemdrive%\rapport.txt
)

if exist cmd32.exe (
attrib -r -s -h cmd32.exe
del /a /f cmd32.exe
if NOT exist cmd32.exe echo %syspath%\cmd32.exe %sDel%>>%systemdrive%\rapport.txt
if exist cmd32.exe echo %sError% %syspath%\cmd32.exe>>%systemdrive%\rapport.txt
)

if exist cmdtel.exe (
attrib -r -s -h cmdtel.exe
del /a /f cmdtel.exe
if NOT exist cmdtel.exe echo %syspath%\cmdtel.exe %sDel%>>%systemdrive%\rapport.txt
if exist cmdtel.exe echo %sError% %syspath%\cmdtel.exe>>%systemdrive%\rapport.txt
)

if exist ckimzeb.dll (
attrib -r -s -h ckimzeb.dll
del /a /f ckimzeb.dll
if NOT exist ckimzeb.dll echo %syspath%\ckimzeb.dll %sDel%>>%systemdrive%\rapport.txt
if exist ckimzeb.dll echo %sError% %syspath%\ckimzeb.dll>>%systemdrive%\rapport.txt
)

if exist cnymxw32.dll (
attrib -r -s -h cnymxw32.dll
del /a /f cnymxw32.dll
if NOT exist cnymxw32.dll echo %syspath%\cnymxw32.dll %sDel%>>%systemdrive%\rapport.txt
if exist cnymxw32.dll echo %sError% %syspath%\cnymxw32.dll>>%systemdrive%\rapport.txt
)

if exist combo.exe (
attrib -r -s -h combo.exe
del /a /f combo.exe
if NOT exist combo.exe echo %syspath%\combo.exe %sDel%>>%systemdrive%\rapport.txt
if exist combo.exe echo %sError% %syspath%\combo.exe>>%systemdrive%\rapport.txt
)

if exist comdlg64.dll (
attrib -r -s -h comdlg64.dll
del /a /f comdlg64.dll
if NOT exist comdlg64.dll echo %syspath%\comdlg64.dll %sDel%>>%systemdrive%\rapport.txt
if exist comdlg64.dll echo %sError% %syspath%\comdlg64.dll>>%systemdrive%\rapport.txt
)

if exist cqsfk.dll (
attrib -r -s -h cqsfk.dll
del /a /f cqsfk.dll
if NOT exist cqsfk.dll echo %syspath%\cqsfk.dll %sDel%>>%systemdrive%\rapport.txt
if exist cqsfk.dll echo %sError% %syspath%\cqsfk.dll>>%systemdrive%\rapport.txt
)

if exist ctpmon.exe (
attrib -r -s -h ctpmon.exe
del /a /f ctpmon.exe
if NOT exist ctpmon.exe echo %syspath%\ctpmon.exe %sDel%>>%systemdrive%\rapport.txt
if exist ctpmon.exe echo %sError% %syspath%\ctpmon.exe>>%systemdrive%\rapport.txt
)

if exist countrydial.exe (
attrib -r -s -h countrydial.exe
del /a /f countrydial.exe
if NOT exist countrydial.exe echo %syspath%\countrydial.exe %sDel%>>%systemdrive%\rapport.txt
if exist countrydial.exe echo %sError% %syspath%\countrydial.exe>>%systemdrive%\rapport.txt
)

if exist "Credit Card.ico" (
attrib -r -s -h "Credit Card.ico"
del /a /f "Credit Card.ico"
if NOT exist "Credit Card.ico" echo %syspath%\Credit Card.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Credit Card.ico" echo %sError% %syspath%\Credit Card.ico>>%systemdrive%\rapport.txt
)

if exist Cruises.ico (
attrib -r -s -h Cruises.ico
del /a /f Cruises.ico
if NOT exist Cruises.ico echo %syspath%\Cruises.ico %sDel%>>%systemdrive%\rapport.txt
if exist Cruises.ico echo %sError% %syspath%\Cruises.ico>>%systemdrive%\rapport.txt
)

if exist cthkpcv.dll (
attrib -r -s -h cthkpcv.dll
del /a /f cthkpcv.dll
if NOT exist cthkpcv.dll echo %syspath%\cthkpcv.dll %sDel%>>%systemdrive%\rapport.txt
if exist cthkpcv.dll echo %sError% %syspath%\cthkpcv.dll>>%systemdrive%\rapport.txt
)

if exist "Currency Trading.ico" (
attrib -r -s -h "Currency Trading.ico"
del /a /f "Currency Trading.ico"
if NOT exist "Currency Trading.ico" echo %syspath%\Currency Trading.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Currency Trading.ico" echo %sError% %syspath%\Currency Trading.ico>>%systemdrive%\rapport.txt
)

if exist cvnzie.dll (
attrib -r -s -h cvnzie.dll
del /a /f cvnzie.dll
if NOT exist cvnzie.dll echo %syspath%\cvnzie.dll %sDel%>>%systemdrive%\rapport.txt
if exist cvnzie.dll echo %sError% %syspath%\cvnzie.dll>>%systemdrive%\rapport.txt
)

if exist cvxh8jkdq?.exe (
attrib -r -s -h cvxh8jkdq?.exe
del /a /f /q cvxh8jkdq?.exe
if NOT exist cvxh8jkdq?.exe echo %syspath%\cvxh8jkdq?.exe %sDel%>>%systemdrive%\rapport.txt
if exist cvxh8jkdq?.exe echo %sError% %syspath%\cvxh8jkdq?.exe>>%systemdrive%\rapport.txt
)

if exist cwgppb.dll (
attrib -r -s -h cwgppb.dll
del /a /f cwgppb.dll
if NOT exist cwgppb.dll echo %syspath%\cwgppb.dll %sDel%>>%systemdrive%\rapport.txt
if exist cwgppb.dll echo %sError% %syspath%\cwgppb.dll>>%systemdrive%\rapport.txt
)

if exist CWS_iestart.exe (
attrib -r -s -h CWS_iestart.exe
del /a /f CWS_iestart.exe
if NOT exist CWS_iestart.exe echo %syspath%\CWS_iestart.exe %sDel%>>%systemdrive%\rapport.txt
if exist CWS_iestart.exe echo %sError% %syspath%\CWS_iestart.exe>>%systemdrive%\rapport.txt
)

if exist czxtyx.dll (
attrib -r -s -h czxtyx.dll
del /a /f czxtyx.dll
if NOT exist czxtyx.dll echo %syspath%\czxtyx.dll %sDel%>>%systemdrive%\rapport.txt
if exist czxtyx.dll echo %sError% %syspath%\czxtyx.dll>>%systemdrive%\rapport.txt
)

if exist date.ico (
attrib -r -s -h date.ico
del /a /f date.ico
if NOT exist date.ico echo %syspath%\date.ico %sDel%>>%systemdrive%\rapport.txt
if exist date.ico echo %sError% %syspath%\date.ico>>%systemdrive%\rapport.txt
)

if exist dailytoolbar.dll (
attrib -r -s -h dailytoolbar.dll
del /a /f dailytoolbar.dll
if NOT exist dailytoolbar.dll echo %syspath%\dailytoolbar.dll %sDel%>>%systemdrive%\rapport.txt
if exist dailytoolbar.dll echo %sError% %syspath%\dailytoolbar.dll>>%systemdrive%\rapport.txt
)

if exist dbqlrij.dll (
attrib -r -s -h dbqlrij.dll
del /a /f dbqlrij.dll
if NOT exist dbqlrij.dll echo %syspath%\dbqlrij.dll %sDel%>>%systemdrive%\rapport.txt
if exist dbqlrij.dll echo %sError% %syspath%\dbqlrij.dll>>%systemdrive%\rapport.txt
)

if exist dcom_14.dll (
attrib -r -s -h dcom_14.dll
del /a /f dcom_14.dll
if NOT exist dcom_14.dll echo %syspath%\dcom_14.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_14.dll echo %sError% %syspath%\dcom_14.dll>>%systemdrive%\rapport.txt
)

if exist dcom_15.dll (
attrib -r -s -h dcom_15.dll
del /a /f dcom_15.dll
if NOT exist dcom_15.dll echo %syspath%\dcom_15.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_15.dll echo %sError% %syspath%\dcom_15.dll>>%systemdrive%\rapport.txt
)

if exist dcom_16.dll (
attrib -r -s -h dcom_16.dll
del /a /f dcom_16.dll
if NOT exist dcom_16.dll echo %syspath%\dcom_16.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_16.dll echo %sError% %syspath%\dcom_16.dll>>%systemdrive%\rapport.txt
)

if exist dcom_18.dll (
attrib -r -s -h dcom_18.dll
del /a /f dcom_18.dll
if NOT exist dcom_18.dll echo %syspath%\dcom_18.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_18.dll echo %sError% %syspath%\dcom_18.dll>>%systemdrive%\rapport.txt
)

if exist dcom_19.dll (
attrib -r -s -h dcom_19.dll
del /a /f dcom_19.dll
if NOT exist dcom_19.dll echo %syspath%\dcom_19.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_19.dll echo %sError% %syspath%\dcom_19.dll>>%systemdrive%\rapport.txt
)

if exist dcom_20.dll (
attrib -r -s -h dcom_20.dll
del /a /f dcom_20.dll
if NOT exist dcom_20.dll echo %syspath%\dcom_20.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_20.dll echo %sError% %syspath%\dcom_20.dll>>%systemdrive%\rapport.txt
)

if exist dcom_21.dll (
attrib -r -s -h dcom_21.dll
del /a /f dcom_21.dll
if NOT exist dcom_21.dll echo %syspath%\dcom_21.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcom_21.dll echo %sError% %syspath%\dcom_21.dll>>%systemdrive%\rapport.txt
)

if exist dcomcfg.exe (
attrib -r -s -h dcomcfg.exe
del /a /f dcomcfg.exe
if NOT exist dcomcfg.exe echo %syspath%\dcomcfg.exe %sDel%>>%systemdrive%\rapport.txt
if exist dcomcfg.exe echo %sError% %syspath%\dcomcfg.exe>>%systemdrive%\rapport.txt
)

if exist dcvwaah.dll (
attrib -r -s -h dcvwaah.dll
del /a /f dcvwaah.dll
if NOT exist dcvwaah.dll echo %syspath%\dcvwaah.dll %sDel%>>%systemdrive%\rapport.txt
if exist dcvwaah.dll echo %sError% %syspath%\dcvwaah.dll>>%systemdrive%\rapport.txt
)

if exist Delete_Me_Dummy_hadjajr.ini (
attrib -r -s -h Delete_Me_Dummy_hadjajr.ini
del /a /f Delete_Me_Dummy_hadjajr.ini
if NOT exist Delete_Me_Dummy_hadjajr.ini echo %syspath%\Delete_Me_Dummy_hadjajr.ini %sDel%>>%systemdrive%\rapport.txt
if exist Delete_Me_Dummy_hadjajr.ini echo %sError% %syspath%\Delete_Me_Dummy_hadjajr.ini>>%systemdrive%\rapport.txt
)

if exist Delete_Me_Dummy_hanonvt.ini (
attrib -r -s -h Delete_Me_Dummy_hanonvt.ini
del /a /f Delete_Me_Dummy_hanonvt.ini
if NOT exist Delete_Me_Dummy_hanonvt.ini echo %syspath%\Delete_Me_Dummy_hanonvt.ini %sDel%>>%systemdrive%\rapport.txt
if exist Delete_Me_Dummy_hanonvt.ini echo %sError% %syspath%\Delete_Me_Dummy_hanonvt.ini>>%systemdrive%\rapport.txt
)

if exist Delete_Me_Dummy_hrum.txt (
attrib -r -s -h Delete_Me_Dummy_hrum.txt
del /a /f Delete_Me_Dummy_hrum.txt
if NOT exist Delete_Me_Dummy_hrum.txt echo %syspath%\Delete_Me_Dummy_hrum.txt %sDel%>>%systemdrive%\rapport.txt
if exist Delete_Me_Dummy_hrum.txt echo %sError% %syspath%\Delete_Me_Dummy_hrum.txt>>%systemdrive%\rapport.txt
)

if exist Delete_Me_Dummy_hrum323.txt (
attrib -r -s -h Delete_Me_Dummy_hrum323.txt
del /a /f Delete_Me_Dummy_hrum323.txt
if NOT exist Delete_Me_Dummy_hrum323.txt echo %syspath%\Delete_Me_Dummy_hrum323.txt %sDel%>>%systemdrive%\rapport.txt
if exist Delete_Me_Dummy_hrum323.txt echo %sError% %syspath%\Delete_Me_Dummy_hrum323.txt>>%systemdrive%\rapport.txt
)

if exist dtjby.dll (
attrib -r -s -h dtjby.dll
del /a /f dtjby.dll
if NOT exist dtjby.dll echo %syspath%\dtjby.dll %sDel%>>%systemdrive%\rapport.txt
if exist dtjby.dll echo %sError% %syspath%\dtjby.dll>>%systemdrive%\rapport.txt
)

if exist dial23.exe (
attrib -r -s -h dial23.exe
del /a /f dial23.exe
if NOT exist dial23.exe echo %syspath%\dial23.exe %sDel%>>%systemdrive%\rapport.txt
if exist dial23.exe echo %sError% %syspath%\dial23.exe>>%systemdrive%\rapport.txt
)

if exist dload.exe (
attrib -r -s -h dload.exe
del /a /f dload.exe
if NOT exist dload.exe echo %syspath%\dload.exe %sDel%>>%systemdrive%\rapport.txt
if exist dload.exe echo %sError% %syspath%\dload.exe>>%systemdrive%\rapport.txt
)

if exist dlh9jkdq?.exe (
attrib -r -s -h dlh9jkdq?.exe
del /a /f dlh9jkdq?.exe
if NOT exist dlh9jkdq?.exe echo %syspath%\dlh9jkdq?.exe %sDel%>>%systemdrive%\rapport.txt
if exist dlh9jkdq?.exe echo %sError% %syspath%\dlh9jkdq?.exe>>%systemdrive%\rapport.txt
)

if exist dnefhw.dll (
attrib -r -s -h dnefhw.dll
del /a /f dnefhw.dll
if NOT exist dnefhw.dll echo %syspath%\dnefhw.dll %sDel%>>%systemdrive%\rapport.txt
if exist dnefhw.dll echo %sError% %syspath%\dnefhw.dll>>%systemdrive%\rapport.txt
)

if exist dooep.dll (
attrib -r -s -h dooep.dll
del /a /f dooep.dll
if NOT exist dooep.dll echo %syspath%\dooep.dll %sDel%>>%systemdrive%\rapport.txt
if exist dooep.dll echo %sError% %syspath%\dooep.dll>>%systemdrive%\rapport.txt
)

if exist dpfwu.dll (
attrib -r -s -h dpfwu.dll
del /a /f dpfwu.dll
if NOT exist dpfwu.dll echo %syspath%\dpfwu.dll %sDel%>>%systemdrive%\rapport.txt
if exist dpfwu.dll echo %sError% %syspath%\dpfwu.dll>>%systemdrive%\rapport.txt
)


if exist doser.exe (
attrib -r -s -h doser.exe
del /a /f doser.exe
if NOT exist doser.exe echo %syspath%\doser.exe %sDel%>>%systemdrive%\rapport.txt
if exist doser.exe echo %sError% %syspath%\doser.exe>>%systemdrive%\rapport.txt
)

if exist dfrgsrv.exe (
attrib -r -s -h dfrgsrv.exe
del /a /f dfrgsrv.exe
if NOT exist dfrgsrv.exe echo %syspath%\dfrgsrv.exe %sDel%>>%systemdrive%\rapport.txt
if exist dfrgsrv.exe echo %sError% %syspath%\dfrgsrv.exe>>%systemdrive%\rapport.txt
)

if exist duxzj.dll (
attrib -r -s -h duxzj.dll
del /a /f duxzj.dll
if NOT exist duxzj.dll echo %syspath%\duxzj.dll %sDel%>>%systemdrive%\rapport.txt
if exist duxzj.dll echo %sError% %syspath%\duxzj.dll>>%systemdrive%\rapport.txt
)

if exist dvdcap.dll (
attrib -r -s -h dvdcap.dll
del /a /f dvdcap.dll
if NOT exist dvdcap.dll echo %syspath%\dvdcap.dll %sDel%>>%systemdrive%\rapport.txt
if exist dvdcap.dll echo %sError% %syspath%\dvdcap.dll>>%systemdrive%\rapport.txt
)

if exist dxole32.exe (
attrib -r -s -h dxole32.exe
del /a /f dxole32.exe
if NOT exist dxole32.exe echo %syspath%\dxole32.exe %sDel%>>%systemdrive%\rapport.txt
if exist dxole32.exe echo %sError% %syspath%\dxole32.exe>>%systemdrive%\rapport.txt
)

if exist dxmpp.dll (
attrib -r -s -h dxmpp.dll
del /a /f dxmpp.dll
if NOT exist dxmpp.dll echo %syspath%\dxmpp.dll %sDel%>>%systemdrive%\rapport.txt
if exist dxmpp.dll echo %sError% %syspath%\dxmpp.dll>>%systemdrive%\rapport.txt
)

if exist dxovx.dll (
attrib -r -s -h dxovx.dll
del /a /f dxovx.dll
if NOT exist dxovx.dll echo %syspath%\dxovx.dll %sDel%>>%systemdrive%\rapport.txt
if exist dxovx.dll echo %sError% %syspath%\dxovx.dll>>%systemdrive%\rapport.txt
)

if exist eeuydc.dll (
attrib -r -s -h eeuydc.dll
del /a /f eeuydc.dll
if NOT exist eeuydc.dll echo %syspath%\eeuydc.dll %sDel%>>%systemdrive%\rapport.txt
if exist eeuydc.dll echo %sError% %syspath%\eeuydc.dll>>%systemdrive%\rapport.txt
)

if exist efsdfgxg.exe (
attrib -r -s -h efsdfgxg.exe
del /a /f efsdfgxg.exe
if NOT exist efsdfgxg.exe echo %syspath%\efsdfgxg.exe %sDel%>>%systemdrive%\rapport.txt
if exist efsdfgxg.exe echo %sError% %syspath%\efsdfgxg.exe>>%systemdrive%\rapport.txt
)

if exist egzcqg.dll (
attrib -r -s -h egzcqg.dll
del /a /f egzcqg.dll
if NOT exist egzcqg.dll echo %syspath%\egzcqg.dll %sDel%>>%systemdrive%\rapport.txt
if exist egzcqg.dll echo %sError% %syspath%\egzcqg.dll>>%systemdrive%\rapport.txt
)

if exist eigbbb.dll (
attrib -r -s -h eigbbb.dll
del /a /f eigbbb.dll
if NOT exist eigbbb.dll echo %syspath%\eigbbb.dll %sDel%>>%systemdrive%\rapport.txt
if exist eigbbb.dll echo %sError% %syspath%\eigbbb.dll>>%systemdrive%\rapport.txt
)

if exist ekvrlfzz.exe (
attrib -r -s -h ekvrlfzz.exe
del /a /f ekvrlfzz.exe
if NOT exist ekvrlfzz.exe echo %syspath%\ekvrlfzz.exe %sDel%>>%systemdrive%\rapport.txt
if exist ekvrlfzz.exe echo %sError% %syspath%\ekvrlfzz.exe>>%systemdrive%\rapport.txt
)

if exist eowygj.dll (
attrib -r -s -h eowygj.dll
del /a /f eowygj.dll
if NOT exist eowygj.dll echo %syspath%\eowygj.dll %sDel%>>%systemdrive%\rapport.txt
if exist eowygj.dll echo %sError% %syspath%\eowygj.dll>>%systemdrive%\rapport.txt
)

if exist erxbx.dll (
attrib -r -s -h erxbx.dll
del /a /f erxbx.dll
if NOT exist erxbx.dll echo %syspath%\erxbx.dll %sDel%>>%systemdrive%\rapport.txt
if exist erxbx.dll echo %sError% %syspath%\erxbx.dll>>%systemdrive%\rapport.txt
)

if exist exa32.exe (
attrib -r -s -h exa32.exe
del /a /f exa32.exe
if NOT exist exa32.exe echo %syspath%\exa32.exe %sDel%>>%systemdrive%\rapport.txt
if exist exa32.exe echo %sError% %syspath%\exa32.exe>>%systemdrive%\rapport.txt
)

if exist exeha2.exe (
attrib -r -s -h exeha2.exe
del /a /f exeha2.exe
if NOT exist exeha2.exe echo %syspath%\exeha2.exe %sDel%>>%systemdrive%\rapport.txt
if exist exeha2.exe echo %sError% %syspath%\exeha2.exe>>%systemdrive%\rapport.txt
)

if exist exeha3.exe (
attrib -r -s -h exeha3.exe
del /a /f exeha3.exe
if NOT exist exeha3.exe echo %syspath%\exeha3.exe %sDel%>>%systemdrive%\rapport.txt
if exist exeha3.exe echo %sError% %syspath%\exeha3.exe>>%systemdrive%\rapport.txt
)

if exist ext32inc.dll (
attrib -r -s -h ext32inc.dll
del /a /f ext32inc.dll
if NOT exist ext32inc.dll echo %syspath%\ext32inc.dll %sDel%>>%systemdrive%\rapport.txt
if exist ext32inc.dll echo %sError% %syspath%\ext32inc.dll>>%systemdrive%\rapport.txt
)

if exist exuc32.tmp (
attrib -r -s -h exuc32.tmp
del /a /f exuc32.tmp
if NOT exist exuc32.tmp echo %syspath%\exuc32.tmp %sDel%>>%systemdrive%\rapport.txt
if exist exuc32.tmp echo %sError% %syspath%\exuc32.tmp>>%systemdrive%\rapport.txt
)

if exist fdpzgi.dll (
attrib -r -s -h fdpzgi.dll
del /a /f fdpzgi.dll
if NOT exist fdpzgi.dll echo %syspath%\fdpzgi.dll %sDel%>>%systemdrive%\rapport.txt
if exist fdpzgi.dll echo %sError% %syspath%\fdpzgi.dll>>%systemdrive%\rapport.txt
)

if exist fhmfes.dll (
attrib -r -s -h fhmfes.dll
del /a /f fhmfes.dll
if NOT exist fhmfes.dll echo %syspath%\fhmfes.dll %sDel%>>%systemdrive%\rapport.txt
if exist fhmfes.dll echo %sError% %syspath%\fhmfes.dll>>%systemdrive%\rapport.txt
)

if exist ficqv.dll (
attrib -r -s -h ficqv.dll
del /a /f ficqv.dll
if NOT exist ficqv.dll echo %syspath%\ficqv.dll %sDel%>>%systemdrive%\rapport.txt
if exist ficqv.dll echo %sError% %syspath%\ficqv.dll>>%systemdrive%\rapport.txt
)

if exist fjdcy.dll (
attrib -r -s -h fjdcy.dll
del /a /f fjdcy.dll
if NOT exist fjdcy.dll echo %syspath%\fjdcy.dll %sDel%>>%systemdrive%\rapport.txt
if exist fjdcy.dll echo %sError% %syspath%\fjdcy.dll>>%systemdrive%\rapport.txt
)

if exist fmrmhc.dll (
attrib -r -s -h fmrmhc.dll
del /a /f fmrmhc.dll
if NOT exist fmrmhc.dll echo %syspath%\fmrmhc.dll %sDel%>>%systemdrive%\rapport.txt
if exist fmrmhc.dll echo %sError% %syspath%\fmrmhc.dll>>%systemdrive%\rapport.txt
)

if exist fqdqs.dll (
attrib -r -s -h fqdqs.dll
del /a /f fqdqs.dll
if NOT exist fqdqs.dll echo %syspath%\fqdqs.dll %sDel%>>%systemdrive%\rapport.txt
if exist fqdqs.dll echo %sError% %syspath%\fqdqs.dll>>%systemdrive%\rapport.txt
)

if exist fshqaln.dll (
attrib -r -s -h fshqaln.dll
del /a /f fshqaln.dll
if NOT exist fshqaln.dll echo %syspath%\fshqaln.dll %sDel%>>%systemdrive%\rapport.txt
if exist fshqaln.dll echo %sError% %syspath%\fshqaln.dll>>%systemdrive%\rapport.txt
)

if exist fwrkqfl.dll (
attrib -r -s -h fwrkqfl.dll
del /a /f fwrkqfl.dll
if NOT exist fwrkqfl.dll echo %syspath%\fwrkqfl.dll %sDel%>>%systemdrive%\rapport.txt
if exist fwrkqfl.dll echo %sError% %syspath%\fwrkqfl.dll>>%systemdrive%\rapport.txt
)

if exist fyhhxw.dll (
attrib -r -s -h fyhhxw.dll
del /a /f fyhhxw.dll
if NOT exist fyhhxw.dll echo %syspath%\fyhhxw.dll %sDel%>>%systemdrive%\rapport.txt
if exist fyhhxw.dll echo %sError% %syspath%\fyhhxw.dll>>%systemdrive%\rapport.txt
)

if exist fyhwfc.dll (
attrib -r -s -h fyhwfc.dll
del /a /f fyhwfc.dll
if NOT exist fyhwfc.dll echo %syspath%\fyhwfc.dll %sDel%>>%systemdrive%\rapport.txt
if exist fyhwfc.dll echo %sError% %syspath%\fyhwfc.dll>>%systemdrive%\rapport.txt
)

if exist fyxkaah.dll (
attrib -r -s -h fyxkaah.dll
del /a /f fyxkaah.dll
if NOT exist fyxkaah.dll echo %syspath%\fyxkaah.dll %sDel%>>%systemdrive%\rapport.txt
if exist fyxkaah.dll echo %sError% %syspath%\fyxkaah.dll>>%systemdrive%\rapport.txt
)

if exist games.ico (
attrib -r -s -h games.ico
del /a /f games.ico
if NOT exist games.ico echo %syspath%\games.ico %sDel%>>%systemdrive%\rapport.txt
if exist games.ico echo %sError% %syspath%\games.ico>>%systemdrive%\rapport.txt
)

if exist gbjkog.dll (
attrib -r -s -h gbjkog.dll
del /a /f gbjkog.dll
if NOT exist gbjkog.dll echo %syspath%\gbjkog.dll %sDel%>>%systemdrive%\rapport.txt
if exist gbjkog.dll echo %sError% %syspath%\gbjkog.dll>>%systemdrive%\rapport.txt
)

if exist geplxss.dll (
attrib -r -s -h geplxss.dll
del /a /f geplxss.dll
if NOT exist geplxss.dll echo %syspath%\geplxss.dll %sDel%>>%systemdrive%\rapport.txt
if exist geplxss.dll echo %sError% %syspath%\geplxss.dll>>%systemdrive%\rapport.txt
)

if exist ginuerep.dll (
attrib -r -s -h ginuerep.dll
del /a /f ginuerep.dll
if NOT exist ginuerep.dll echo %syspath%\ginuerep.dll %sDel%>>%systemdrive%\rapport.txt
if exist ginuerep.dll echo %sError% %syspath%\ginuerep.dll>>%systemdrive%\rapport.txt
)

if exist gopa.exe (
attrib -r -s -h gopa.exe
del /a /f gopa.exe
if NOT exist gopa.exe echo %syspath%\gopa.exe %sDel%>>%systemdrive%\rapport.txt
if exist gopa.exe echo %sError% %syspath%\gopa.exe>>%systemdrive%\rapport.txt
)

if exist gqagksr.dll (
attrib -r -s -h gqagksr.dll
del /a /f gqagksr.dll
if NOT exist gqagksr.dll echo %syspath%\gqagksr.dll %sDel%>>%systemdrive%\rapport.txt
if exist gqagksr.dll echo %sError% %syspath%\gqagksr.dll>>%systemdrive%\rapport.txt
)

if exist gsrnxgh.dll (
attrib -r -s -h gsrnxgh.dll
del /a /f gsrnxgh.dll
if NOT exist gsrnxgh.dll echo %syspath%\gsrnxgh.dll %sDel%>>%systemdrive%\rapport.txt
if exist gsrnxgh.dll echo %sError% %syspath%\gsrnxgh.dll>>%systemdrive%\rapport.txt
)

if exist gtawclv.dll (
attrib -r -s -h gtawclv.dll
del /a /f gtawclv.dll
if NOT exist gtawclv.dll echo %syspath%\gtawclv.dll %sDel%>>%systemdrive%\rapport.txt
if exist gtawclv.dll echo %sError% %syspath%\gtawclv.dll>>%systemdrive%\rapport.txt
)

if exist gtpbx.dll (
attrib -r -s -h gtpbx.dll
del /a /f gtpbx.dll
if NOT exist gtpbx.dll echo %syspath%\gtpbx.dll %sDel%>>%systemdrive%\rapport.txt
if exist gtpbx.dll echo %sError% %syspath%\gtpbx.dll>>%systemdrive%\rapport.txt
)

if exist gunist.exe (
attrib -r -s -h gunist.exe
del /a /f gunist.exe
if NOT exist gunist.exe echo %syspath%\gunist.exe %sDel%>>%systemdrive%\rapport.txt
if exist gunist.exe echo %sError% %syspath%\gunist.exe>>%systemdrive%\rapport.txt
)

if exist gusur.dll (
attrib -r -s -h gusur.dll
del /a /f gusur.dll
if NOT exist gusur.dll echo %syspath%\gusur.dll %sDel%>>%systemdrive%\rapport.txt
if exist gusur.dll echo %sError% %syspath%\gusur.dll>>%systemdrive%\rapport.txt
)

if exist guxmhcd.dll (
attrib -r -s -h guxmhcd.dll
del /a /f guxmhcd.dll
if NOT exist guxmhcd.dll echo %syspath%\guxmhcd.dll %sDel%>>%systemdrive%\rapport.txt
if exist guxmhcd.dll echo %sError% %syspath%\guxmhcd.dll>>%systemdrive%\rapport.txt
)

if exist guxxa.dll (
attrib -r -s -h guxxa.dll
del /a /f guxxa.dll
if NOT exist guxxa.dll echo %syspath%\guxxa.dll %sDel%>>%systemdrive%\rapport.txt
if exist guxxa.dll echo %sError% %syspath%\guxxa.dll>>%systemdrive%\rapport.txt
)

if exist gwquvw.dll (
attrib -r -s -h gwquvw.dll
del /a /f gwquvw.dll
if NOT exist gwquvw.dll echo %syspath%\gwquvw.dll %sDel%>>%systemdrive%\rapport.txt
if exist gwquvw.dll echo %sError% %syspath%\gwquvw.dll>>%systemdrive%\rapport.txt
)

if exist helper.exe (
attrib -r -s -h helper.exe
del /a /f helper.exe
if NOT exist helper.exe echo %syspath%\helper.exe %sDel%>>%systemdrive%\rapport.txt
if exist helper.exe echo %sError% %syspath%\helper.exe>>%systemdrive%\rapport.txt
)

if exist hhk.dll (
attrib -r -s -h hhk.dll
del /a /f hhk.dll
if NOT exist hhk.dll echo %syspath%\hhk.dll %sDel%>>%systemdrive%\rapport.txt
if exist hhk.dll echo %sError% %syspath%\hhk.dll>>%systemdrive%\rapport.txt
)

if exist higehsg.dll (
attrib -r -s -h higehsg.dll
del /a /f higehsg.dll
if NOT exist higehsg.dll echo %syspath%\higehsg.dll %sDel%>>%systemdrive%\rapport.txt
if exist higehsg.dll echo %sError% %syspath%\higehsg.dll>>%systemdrive%\rapport.txt
)

if exist higjxe.dll (
attrib -r -s -h higjxe.dll
del /a /f higjxe.dll
if NOT exist higjxe.dll echo %syspath%\higjxe.dll %sDel%>>%systemdrive%\rapport.txt
if exist higjxe.dll echo %sError% %syspath%\higjxe.dll>>%systemdrive%\rapport.txt
)

if exist hjpprpu.dll (
attrib -r -s -h hjpprpu.dll
del /a /f hjpprpu.dll
if NOT exist hjpprpu.dll echo %syspath%\hjpprpu.dll %sDel%>>%systemdrive%\rapport.txt
if exist hjpprpu.dll echo %sError% %syspath%\hjpprpu.dll>>%systemdrive%\rapport.txt
)

if exist hookdump.exe (
attrib -r -s -h hookdump.exe
del /a /f hookdump.exe
if NOT exist hookdump.exe echo %syspath%\hookdump.exe %sDel%>>%systemdrive%\rapport.txt
if exist hookdump.exe echo %sError% %syspath%\hookdump.exe>>%systemdrive%\rapport.txt
)

if exist hp???.tmp (
attrib -r -s -h hp???.tmp
del /a /f hp???.tmp
if NOT exist hp???.tmp echo %syspath%\hp???.tmp %sDel%>>%systemdrive%\rapport.txt
if exist hp???.tmp echo %sError% %syspath%\hp???.tmp>>%systemdrive%\rapport.txt
)

if exist hp????.tmp (
attrib -r -s -h hp????.tmp
del /a /f hp????.tmp
if NOT exist hp????.tmp echo %syspath%\hp????.tmp %sDel%>>%systemdrive%\rapport.txt
if exist hp????.tmp echo %sError% %syspath%\hp????.tmp>>%systemdrive%\rapport.txt
)

if exist htey.dll (
attrib -r -s -h htey.dll
del /a /f htey.dll
if NOT exist htey.dll echo %syspath%\htey.dll %sDel%>>%systemdrive%\rapport.txt
if exist htey.dll echo %sError% %syspath%\htey.dll>>%systemdrive%\rapport.txt
)

if exist httge.dll (
attrib -r -s -h httge.dll
del /a /f httge.dll
if NOT exist httge.dll echo %syspath%\httge.dll %sDel%>>%systemdrive%\rapport.txt
if exist httge.dll echo %sError% %syspath%\httge.dll>>%systemdrive%\rapport.txt
)

if exist hvcycg.dll (
attrib -r -s -h hvcycg.dll
del /a /f hvcycg.dll
if NOT exist hvcycg.dll echo %syspath%\hvcycg.dll %sDel%>>%systemdrive%\rapport.txt
if exist hvcycg.dll echo %sError% %syspath%\hvcycg.dll>>%systemdrive%\rapport.txt
)

if exist hvnwm.dll (
attrib -r -s -h hvnwm.dll
del /a /f hvnwm.dll
if NOT exist hvnwm.dll echo %syspath%\hvnwm.dll %sDel%>>%systemdrive%\rapport.txt
if exist hvnwm.dll echo %sError% %syspath%\hvnwm.dll>>%systemdrive%\rapport.txt
)

if exist hzclqhc.dll (
attrib -r -s -h hzclqhc.dll
del /a /f hzclqhc.dll
if NOT exist hzclqhc.dll echo %syspath%\hzclqhc.dll %sDel%>>%systemdrive%\rapport.txt
if exist hzclqhc.dll echo %sError% %syspath%\hzclqhc.dll>>%systemdrive%\rapport.txt
)

if exist iauoi.dll (
attrib -r -s -h iauoi.dll
del /a /f iauoi.dll
if NOT exist iauoi.dll echo %syspath%\iauoi.dll %sDel%>>%systemdrive%\rapport.txt
if exist iauoi.dll echo %sError% %syspath%\iauoi.dll>>%systemdrive%\rapport.txt
)

if exist icima.dll (
attrib -r -s -h icima.dll
del /a /f icima.dll
if NOT exist icima.dll echo %syspath%\icima.dll %sDel%>>%systemdrive%\rapport.txt
if exist icima.dll echo %sError% %syspath%\icima.dll>>%systemdrive%\rapport.txt
)

if exist IeHelperEx.dll (
attrib -r -s -h IeHelperEx.dll
del /a /f IeHelperEx.dll
if NOT exist IeHelperEx.dll echo %syspath%\IeHelperEx.dll %sDel%>>%systemdrive%\rapport.txt
if exist IeHelperEx.dll echo %sError% %syspath%\IeHelperEx.dll>>%systemdrive%\rapport.txt
)

if exist iewd.exe (
attrib -r -s -h iewd.exe
del /a /f iewd.exe
if NOT exist iewd.exe echo %syspath%\iewd.exe %sDel%>>%systemdrive%\rapport.txt
if exist iewd.exe echo %sError% %syspath%\iewd.exe>>%systemdrive%\rapport.txt
)

if exist igpfced.dll (
attrib -r -s -h igpfced.dll
del /a /f igpfced.dll
if NOT exist igpfced.dll echo %syspath%\igpfced.dll %sDel%>>%systemdrive%\rapport.txt
if exist igpfced.dll echo %sError% %syspath%\igpfced.dll>>%systemdrive%\rapport.txt
)

if exist igzxwrl.dll (
attrib -r -s -h igzxwrl.dll
del /a /f igzxwrl.dll
if NOT exist igzxwrl.dll echo %syspath%\igzxwrl.dll %sDel%>>%systemdrive%\rapport.txt
if exist igzxwrl.dll echo %sError% %syspath%\igzxwrl.dll>>%systemdrive%\rapport.txt
)

if exist ilmpjy.dll (
attrib -r -s -h ilmpjy.dll
del /a /f ilmpjy.dll
if NOT exist ilmpjy.dll echo %syspath%\ilmpjy.dll %sDel%>>%systemdrive%\rapport.txt
if exist ilmpjy.dll echo %sError% %syspath%\ilmpjy.dll>>%systemdrive%\rapport.txt
)

if exist imfdfcj.dll (
attrib -r -s -h imfdfcj.dll
del /a /f imfdfcj.dll
if NOT exist imfdfcj.dll echo %syspath%\imfdfcj.dll %sDel%>>%systemdrive%\rapport.txt
if exist imfdfcj.dll echo %sError% %syspath%\imfdfcj.dll>>%systemdrive%\rapport.txt
)

if exist impgsje.dll (
attrib -r -s -h impgsje.dll
del /a /f impgsje.dll
if NOT exist impgsje.dll echo %syspath%\impgsje.dll %sDel%>>%systemdrive%\rapport.txt
if exist impgsje.dll echo %sError% %syspath%\impgsje.dll>>%systemdrive%\rapport.txt
)

if exist indwvm.dll (
attrib -r -s -h indwvm.dll
del /a /f indwvm.dll
if NOT exist indwvm.dll echo %syspath%\indwvm.dll %sDel%>>%systemdrive%\rapport.txt
if exist indwvm.dll echo %sError% %syspath%\indwvm.dll>>%systemdrive%\rapport.txt
)

if exist intel32.exe (
attrib -r -s -h intel32.exe
del /a /f intel32.exe
if NOT exist intel32.exe echo %syspath%\intel32.exe %sDel%>>%systemdrive%\rapport.txt
if exist intel32.exe echo %sError% %syspath%\intel32.exe>>%systemdrive%\rapport.txt
)

if exist intell321.exe (
attrib -r -s -h intell321.exe
del /a /f intell321.exe
if NOT exist intell321.exe echo %syspath%\intell321.exe %sDel%>>%systemdrive%\rapport.txt
if exist intell321.exe echo %sError% %syspath%\intell321.exe>>%systemdrive%\rapport.txt
)

if exist intell32.exe (
attrib -r -s -h intell32.exe
del /a /f intell32.exe
if NOT exist intell32.exe echo %syspath%\intell32.exe %sDel%>>%systemdrive%\rapport.txt
if exist intell32.exe echo %sError% %syspath%\intell32.exe>>%systemdrive%\rapport.txt
)

if exist interf.tlb (
attrib -r -s -h interf.tlb
del /a /f interf.tlb
if NOT exist interf.tlb echo %syspath%\interf.tlb %sDel%>>%systemdrive%\rapport.txt
if exist interf.tlb echo %sError% %syspath%\interf.tlb>>%systemdrive%\rapport.txt
)

if exist intmon.exe (
attrib -r -s -h intmon.exe
del /a /f intmon.exe
if NOT exist intmon.exe echo %syspath%\intmon.exe %sDel%>>%systemdrive%\rapport.txt
if exist intmon.exe echo %sError% %syspath%\intmon.exe>>%systemdrive%\rapport.txt
)

if exist intmonp.exe (
attrib -r -s -h intmonp.exe 
del /a /f intmonp.exe 
if NOT exist intmonp.exe echo %syspath%\intmonp.exe %sDel%>>%systemdrive%\rapport.txt
if exist intmonp.exe echo %sError% %syspath%\intmonp.exe >>%systemdrive%\rapport.txt
)

if exist intxt.exe (
attrib -r -s -h intxt.exe
del /a /f intxt.exe
if NOT exist intxt.exe echo %syspath%\intxt.exe %sDel%>>%systemdrive%\rapport.txt
if exist intxt.exe echo %sError% %syspath%\intxt.exe>>%systemdrive%\rapport.txt
)

if exist ioctrl.dll (
attrib -r -s -h ioctrl.dll
del /a /f ioctrl.dll
if NOT exist ioctrl.dll echo %syspath%\ioctrl.dll %sDel%>>%systemdrive%\rapport.txt
if exist ioctrl.dll echo %sError% %syspath%\ioctrl.dll>>%systemdrive%\rapport.txt
)

if exist ipmon.exe (
attrib -r -s -h ipmon.exe 
del /a /f ipmon.exe 
if NOT exist ipmon.exe echo %syspath%\ipmon.exe %sDel%>>%systemdrive%\rapport.txt
if exist ipmon.exe echo %sError% %syspath%\ipmon.exe>>%systemdrive%\rapport.txt
)

if exist ipztub.dll (
attrib -r -s -h ipztub.dll
del /a /f ipztub.dll
if NOT exist ipztub.dll echo %syspath%\ipztub.dll %sDel%>>%systemdrive%\rapport.txt
if exist ipztub.dll echo %sError% %syspath%\ipztub.dll>>%systemdrive%\rapport.txt
)

if exist iqzv.dll (
attrib -r -s -h iqzv.dll
del /a /f iqzv.dll
if NOT exist iqzv.dll echo %syspath%\iqzv.dll %sDel%>>%systemdrive%\rapport.txt
if exist iqzv.dll echo %sError% %syspath%\iqzv.dll>>%systemdrive%\rapport.txt
)

if exist ishost.exe (
attrib -r -s -h ishost.exe
del /a /f ishost.exe
if NOT exist ishost.exe echo %syspath%\ishost.exe %sDel%>>%systemdrive%\rapport.txt
if exist ishost.exe echo %sError% %syspath%\ishost.exe>>%systemdrive%\rapport.txt
)

if exist ismini.exe (
attrib -r -s -h ismini.exe
del /a /f ismini.exe
if NOT exist ismini.exe echo %syspath%\ismini.exe %sDel%>>%systemdrive%\rapport.txt
if exist ismini.exe echo %sError% %syspath%\ismini.exe>>%systemdrive%\rapport.txt
)

if exist ismon.exe (
attrib -r -s -h ismon.exe
del /a /f ismon.exe
if NOT exist ismon.exe echo %syspath%\ismon.exe %sDel%>>%systemdrive%\rapport.txt
if exist ismon.exe echo %sError% %syspath%\ismon.exe>>%systemdrive%\rapport.txt
)

if exist isnotify.exe (
attrib -r -s -h isnotify.exe
del /a /f isnotify.exe
if NOT exist isnotify.exe echo %syspath%\isnotify.exe %sDel%>>%systemdrive%\rapport.txt
if exist isnotify.exe echo %sError% %syspath%\isnotify.exe>>%systemdrive%\rapport.txt
)

if exist issearch.exe (
attrib -r -s -h issearch.exe
del /a /f issearch.exe
if NOT exist issearch.exe echo %syspath%\issearch.exe %sDel%>>%systemdrive%\rapport.txt
if exist issearch.exe echo %sError% %syspath%\issearch.exe>>%systemdrive%\rapport.txt
)

if exist ixt?.dll (
attrib -r -s -h ixt?.dll
del /a /f ixt?.dll
if NOT exist ixt?.dll echo %syspath%\ixt?.dll %sDel%>>%systemdrive%\rapport.txt
if exist ixt?.dll echo %sError% %syspath%\ixt?.dll>>%systemdrive%\rapport.txt
)

if exist ixt??.dll (
attrib -r -s -h ixt??.dll
del /a /f ixt??.dll
if NOT exist ixt??.dll echo %syspath%\ixt??.dll %sDel%>>%systemdrive%\rapport.txt
if exist ixt??.dll echo %sError% %syspath%\ixt??.dll>>%systemdrive%\rapport.txt
)

if exist iwwvh.dll (
attrib -r -s -h iwwvh.dll
del /a /f iwwvh.dll
if NOT exist iwwvh.dll echo %syspath%\iwwvh.dll %sDel%>>%systemdrive%\rapport.txt
if exist iwwvh.dll echo %sError% %syspath%\iwwvh.dll>>%systemdrive%\rapport.txt
)

if exist jao.dll (
attrib -r -s -h jao.dll
del /a /f jao.dll
if NOT exist jao.dll echo %syspath%\jao.dll %sDel%>>%systemdrive%\rapport.txt
if exist jao.dll echo %sError% %syspath%\jao.dll>>%systemdrive%\rapport.txt
)

if exist jbtazy.dll (
attrib -r -s -h jbtazy.dll
del /a /f jbtazy.dll
if NOT exist jbtazy.dll echo %syspath%\jbtazy.dll %sDel%>>%systemdrive%\rapport.txt
if exist jbtazy.dll echo %sError% %syspath%\jbtazy.dll>>%systemdrive%\rapport.txt
)

if exist jevtxpg.dll (
attrib -r -s -h jevtxpg.dll
del /a /f jevtxpg.dll
if NOT exist jevtxpg.dll echo %syspath%\jevtxpg.dll %sDel%>>%systemdrive%\rapport.txt
if exist jevtxpg.dll echo %sError% %syspath%\jevtxpg.dll>>%systemdrive%\rapport.txt
)

if exist jpqet.dll (
attrib -r -s -h jpqet.dll
del /a /f jpqet.dll
if NOT exist jpqet.dll echo %syspath%\jpqet.dll %sDel%>>%systemdrive%\rapport.txt
if exist jpqet.dll echo %sError% %syspath%\jpqet.dll>>%systemdrive%\rapport.txt
)

if exist kernels8.exe (
attrib -r -s -h kernels8.exe
del /a /f kernels8.exe
if NOT exist kernels8.exe echo %syspath%\kernels8.exe %sDel%>>%systemdrive%\rapport.txt
if exist kernels8.exe echo %sError% %syspath%\kernels8.exe>>%systemdrive%\rapport.txt
)

if exist kernels32.exe (
attrib -r -s -h kernels32.exe
del /a /f kernels32.exe
if NOT exist kernels32.exe echo %syspath%\kernels32.exe %sDel%>>%systemdrive%\rapport.txt
if exist kernels32.exe echo %sError% %syspath%\kernels32.exe>>%systemdrive%\rapport.txt
)

if exist kernels64.exe (
attrib -r -s -h kernels64.exe
del /a /f kernels64.exe
if NOT exist kernels64.exe echo %syspath%\kernels64.exe %sDel%>>%systemdrive%\rapport.txt
if exist kernels64.exe echo %sError% %syspath%\kernels64.exe>>%systemdrive%\rapport.txt
)

if exist kfhrvq.dll (
attrib -r -s -h kfhrvq.dll
del /a /f kfhrvq.dll
if NOT exist kfhrvq.dll echo %syspath%\kfhrvq.dll %sDel%>>%systemdrive%\rapport.txt
if exist kfhrvq.dll echo %sError% %syspath%\kfhrvq.dll>>%systemdrive%\rapport.txt
)

if exist kgkdbsk.dll (
attrib -r -s -h kgkdbsk.dll
del /a /f kgkdbsk.dll
if NOT exist kgkdbsk.dll echo %syspath%\kgkdbsk.dll %sDel%>>%systemdrive%\rapport.txt
if exist kgkdbsk.dll echo %sError% %syspath%\kgkdbsk.dll>>%systemdrive%\rapport.txt
)

if exist khtbpdl.dll (
attrib -r -s -h khtbpdl.dll
del /a /f khtbpdl.dll
if NOT exist khtbpdl.dll echo %syspath%\khtbpdl.dll %sDel%>>%systemdrive%\rapport.txt
if exist khtbpdl.dll echo %sError% %syspath%\khtbpdl.dll>>%systemdrive%\rapport.txt
)

if exist kkqfb.dll (
attrib -r -s -h kkqfb.dll
del /a /f kkqfb.dll
if NOT exist kkqfb.dll echo %syspath%\kkqfb.dll %sDel%>>%systemdrive%\rapport.txt
if exist kkqfb.dll echo %sError% %syspath%\kkqfb.dll>>%systemdrive%\rapport.txt
)

if exist ktrxe.dll (
attrib -r -s -h ktrxe.dll
del /a /f ktrxe.dll
if NOT exist ktrxe.dll echo %syspath%\ktrxe.dll %sDel%>>%systemdrive%\rapport.txt
if exist ktrxe.dll echo %sError% %syspath%\ktrxe.dll>>%systemdrive%\rapport.txt
)

if exist kuhmk.dll (
attrib -r -s -h kuhmk.dll
del /a /f kuhmk.dll
if NOT exist kuhmk.dll echo %syspath%\kuhmk.dll %sDel%>>%systemdrive%\rapport.txt
if exist kuhmk.dll echo %sError% %syspath%\kuhmk.dll>>%systemdrive%\rapport.txt
)

if exist kvfvw.dll (
attrib -r -s -h kvfvw.dll
del /a /f kvfvw.dll
if NOT exist kvfvw.dll echo %syspath%\kvfvw.dll %sDel%>>%systemdrive%\rapport.txt
if exist kvfvw.dll echo %sError% %syspath%\kvfvw.dll>>%systemdrive%\rapport.txt
)

if exist lapmvzf.dll (
attrib -r -s -h lapmvzf.dll
del /a /f lapmvzf.dll
if NOT exist lapmvzf.dll echo %syspath%\lapmvzf.dll %sDel%>>%systemdrive%\rapport.txt
if exist lapmvzf.dll echo %sError% %syspath%\lapmvzf.dll>>%systemdrive%\rapport.txt
)

if exist latest.exe (
attrib -r -s -h latest.exe
del /a /f latest.exe
if NOT exist latest.exe echo %syspath%\latest.exe %sDel%>>%systemdrive%\rapport.txt
if exist latest.exe echo %sError% %syspath%\latest.exe>>%systemdrive%\rapport.txt
)

if exist lcsrsrv.dll (
attrib -r -s -h lcsrsrv.dll
del /a /f lcsrsrv.dll
if NOT exist lcsrsrv.dll echo %syspath%\lcsrsrv.dll %sDel%>>%systemdrive%\rapport.txt
if exist lcsrsrv.dll echo %sError% %syspath%\lcsrsrv.dll>>%systemdrive%\rapport.txt
)

if exist lfd.dat (
attrib -r -s -h lfd.dat
del /a /f lfd.dat
if NOT exist lfd.dat echo %syspath%\lfd.dat %sDel%>>%systemdrive%\rapport.txt
if exist lfd.dat echo %sError% %syspath%\lfd.dat>>%systemdrive%\rapport.txt
)

if exist ld???.tmp (
attrib -r -s -h ld???.tmp
del /a /f ld???.tmp
if NOT exist ld???.tmp echo %syspath%\ld???.tmp %sDel%>>%systemdrive%\rapport.txt
if exist ld???.tmp echo %sError% %syspath%\ld???.tmp>>%systemdrive%\rapport.txt
)

if exist ld????.tmp (
attrib -r -s -h ld????.tmp
del /a /f ld????.tmp
if NOT exist ld????.tmp echo %syspath%\ld????.tmp %sDel%>>%systemdrive%\rapport.txt
if exist ld????.tmp echo %sError% %syspath%\ld????.tmp>>%systemdrive%\rapport.txt
)

if exist "Lesbian Sex.ico" (
attrib -r -s -h "Lesbian Sex.ico"
del /a /f "Lesbian Sex.ico"
if NOT exist "Lesbian Sex.ico" echo %syspath%\Lesbian Sex.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Lesbian Sex.ico" echo %sError% %syspath%\Lesbian Sex.ico>>%systemdrive%\rapport.txt
)

if exist lich.exe (
attrib -r -s -h lich.exe
del /a /f lich.exe
if NOT exist lich.exe echo %syspath%\lich.exe %sDel%>>%systemdrive%\rapport.txt
if exist lich.exe echo %sError% %syspath%\lich.exe>>%systemdrive%\rapport.txt
)

if exist links.exe (
attrib -r -s -h links.exe
del /a /f links.exe
if NOT exist links.exe echo %syspath%\links.exe %sDel%>>%systemdrive%\rapport.txt
if exist links.exe echo %sError% %syspath%\links.exe>>%systemdrive%\rapport.txt
)

if exist ll.exe (
attrib -r -s -h ll.exe
del /a /f ll.exe
if NOT exist ll.exe echo %syspath%\ll.exe %sDel%>>%systemdrive%\rapport.txt
if exist ll.exe echo %sError% %syspath%\ll.exe>>%systemdrive%\rapport.txt
)

if exist lrnjnzf.dll (
attrib -r -s -h lrnjnzf.dll
del /a /f lrnjnzf.dll
if NOT exist lrnjnzf.dll echo %syspath%\lrnjnzf.dll %sDel%>>%systemdrive%\rapport.txt
if exist lrnjnzf.dll echo %sError% %syspath%\lrnjnzf.dll>>%systemdrive%\rapport.txt
)

if exist lwpfwjb.dll (
attrib -r -s -h lwpfwjb.dll
del /a /f lwpfwjb.dll
if NOT exist lwpfwjb.dll echo %syspath%\lwpfwjb.dll %sDel%>>%systemdrive%\rapport.txt
if exist lwpfwjb.dll echo %sError% %syspath%\lwpfwjb.dll>>%systemdrive%\rapport.txt
)

if exist main.exe (
attrib -r -s -h main.exe
del /a /f main.exe
if NOT exist main.exe echo %syspath%\main.exe %sDel%>>%systemdrive%\rapport.txt
if exist main.exe echo %sError% %syspath%\main.exe>>%systemdrive%\rapport.txt
)

if exist maxd64.exe (
attrib -r -s -h maxd64.exe
del /a /f maxd64.exe
if NOT exist maxd64.exe echo %syspath%\maxd64.exe %sDel%>>%systemdrive%\rapport.txt
if exist maxd64.exe echo %sError% %syspath%\maxd64.exe>>%systemdrive%\rapport.txt
)

if exist maxd1.exe (
attrib -r -s -h maxd1.exe
del /a /f maxd1.exe
if NOT exist maxd1.exe echo %syspath%\maxd1.exe %sDel%>>%systemdrive%\rapport.txt
if exist maxd1.exe echo %sError% %syspath%\maxd1.exe>>%systemdrive%\rapport.txt
)

if exist migicons.exe (
attrib -r -s -h migicons.exe 
del /a /f migicons.exe 
if NOT exist migicons.exe echo %syspath%\migicons.exe %sDel%>>%systemdrive%\rapport.txt
if exist migicons.exe echo %sError% %syspath%\migicons.exe>>%systemdrive%\rapport.txt
)

if exist mirarsearch_toolbar.exe (
attrib -r -s -h mirarsearch_toolbar.exe 
del /a /f mirarsearch_toolbar.exe 
if NOT exist mirarsearch_toolbar.exe echo %syspath%\mirarsearch_toolbar.exe %sDel%>>%systemdrive%\rapport.txt
if exist mirarsearch_toolbar.exe echo %sError% %syspath%\mirarsearch_toolbar.exe>>%systemdrive%\rapport.txt
)

if exist mobile.ico (
attrib -r -s -h mobile.ico
del /a /f mobile.ico
if NOT exist mobile.ico echo %syspath%\mobile.ico %sDel%>>%systemdrive%\rapport.txt
if exist mobile.ico echo %sError% %syspath%\mobile.ico>>%systemdrive%\rapport.txt
)

if exist MP3.ico (
attrib -r -s -h MP3.ico
del /a /f MP3.ico
if NOT exist MP3.ico echo %syspath%\MP3.ico %sDel%>>%systemdrive%\rapport.txt
if exist MP3.ico echo %sError% %syspath%\MP3.ico>>%systemdrive%\rapport.txt
)

if exist mpsegment.exe (
attrib -r -s -h mpsegment.exe 
del /a /f mpsegment.exe 
if NOT exist mpsegment.exe echo %syspath%\mpsegment.exe %sDel%>>%systemdrive%\rapport.txt
if exist mpsegment.exe echo %sError% %syspath%\mpsegment.exe>>%systemdrive%\rapport.txt
)

if exist mivmv.dll (
attrib -r -s -h mivmv.dll
del /a /f mivmv.dll
if NOT exist mivmv.dll echo %syspath%\mivmv.dll %sDel%>>%systemdrive%\rapport.txt
if exist mivmv.dll echo %sError% %syspath%\mivmv.dll>>%systemdrive%\rapport.txt
)

if exist mlraakb.dll (
attrib -r -s -h mlraakb.dll
del /a /f mlraakb.dll
if NOT exist mlraakb.dll echo %syspath%\mlraakb.dll %sDel%>>%systemdrive%\rapport.txt
if exist mlraakb.dll echo %sError% %syspath%\mlraakb.dll>>%systemdrive%\rapport.txt
)

if exist msmapi32.exe (
attrib -r -s -h msmapi32.exe
del /a /f msmapi32.exe
if NOT exist msmapi32.exe echo %syspath%\msmapi32.exe %sDel%>>%systemdrive%\rapport.txt
if exist msmapi32.exe echo %sError% %syspath%\msmapi32.exe>>%systemdrive%\rapport.txt
)

if exist msmapi32.exe.MANIFEST (
attrib -r -s -h msmapi32.exe.MANIFEST
del /a /f msmapi32.exe.MANIFEST
if NOT exist msmapi32.exe.MANIFEST echo %syspath%\msmapi32.exe.MANIFEST %sDel%>>%systemdrive%\rapport.txt
if exist msmapi32.exe.MANIFEST echo %sError% %syspath%\msmapi32.exe.MANIFEST>>%systemdrive%\rapport.txt
)

if exist msbe.dll (
attrib -r -s -h msbe.dll
del /a /f msbe.dll
if NOT exist msbe.dll echo %syspath%\msbe.dll %sDel%>>%systemdrive%\rapport.txt
if exist msbe.dll echo %sError% %syspath%\msbe.dll>>%systemdrive%\rapport.txt
)

if exist mscornet.exe (
attrib -r -s -h mscornet.exe
del /a /f mscornet.exe
if NOT exist mscornet.exe echo %syspath%\mscornet.exe %sDel%>>%systemdrive%\rapport.txt
if exist mscornet.exe echo %sError% %syspath%\mscornet.exe>>%systemdrive%\rapport.txt
)

if exist mshtml32.tdb (
attrib -r -s -h mshtml32.tdb
del /a /f mshtml32.tdb
if NOT exist mshtml32.tdb echo %syspath%\mshtml32.tdb %sDel%>>%systemdrive%\rapport.txt
if exist mshtml32.tdb echo %sError% %syspath%\mshtml32.tdb>>%systemdrive%\rapport.txt
)

if exist mssearchnet.exe (
attrib -r -s -h mssearchnet.exe
del /a /f mssearchnet.exe
if NOT exist mssearchnet.exe echo %syspath%\mssearchnet.exe %sDel%>>%systemdrive%\rapport.txt
if exist mssearchnet.exe echo %sError% %syspath%\mssearchnet.exe>>%systemdrive%\rapport.txt
)

if exist msnscps.dll (
attrib -r -s -h msnscps.dll
del /a /f msnscps.dll
if NOT exist msnscps.dll echo %syspath%\msnscps.dll %sDel%>>%systemdrive%\rapport.txt
if exist msnscps.dll echo %sError% %syspath%\msnscps.dll>>%systemdrive%\rapport.txt
)

if exist mshlpp.exe (
attrib -r -s -h mshlpp.exe
del /a /f mshlpp.exe
if NOT exist mshlpp.exe echo %syspath%\mshlpp.exe %sDel%>>%systemdrive%\rapport.txt
if exist mshlpp.exe echo %sError% %syspath%\mshlpp.exe>>%systemdrive%\rapport.txt
)

if exist msmsgs.exe (
attrib -r -s -h msmsgs.exe
del /a /f msmsgs.exe
if NOT exist msmsgs.exe echo %syspath%\msmsgs.exe %sDel%>>%systemdrive%\rapport.txt
if exist msmsgs.exe echo %sError% %syspath%\msmsgs.exe>>%systemdrive%\rapport.txt
)

if exist msmsn.exe (
attrib -r -s -h msmsn.exe
del /a /f msmsn.exe
if NOT exist msmsn.exe echo %syspath%\msmsn.exe %sDel%>>%systemdrive%\rapport.txt
if exist msmsn.exe echo %sError% %syspath%\msmsn.exe>>%systemdrive%\rapport.txt
)

if exist msole32.exe (
attrib -r -s -h msole32.exe
del /a /f msole32.exe
if NOT exist msole32.exe echo %syspath%\msole32.exe %sDel%>>%systemdrive%\rapport.txt
if exist msole32.exe echo %sError% %syspath%\msole32.exe>>%systemdrive%\rapport.txt
)

if exist mspostsp.exe (
attrib -r -s -h mspostsp.exe
del /a /f mspostsp.exe
if NOT exist mspostsp.exe echo %syspath%\mspostsp.exe %sDel%>>%systemdrive%\rapport.txt
if exist mspostsp.exe echo %sError% %syspath%\mspostsp.exe>>%systemdrive%\rapport.txt
)

if exist msupdate32.dll (
attrib -r -s -h msupdate32.dll
del /a /f msupdate32.dll
if NOT exist msupdate32.dll echo %syspath%\msupdate32.dll %sDel%>>%systemdrive%\rapport.txt
if exist msupdate32.dll echo %sError% %syspath%\msupdate32.dll>>%systemdrive%\rapport.txt
)

if exist msvcp.exe (
attrib -r -s -h msvcp.exe
del /a /f msvcp.exe
if NOT exist msvcp.exe echo %syspath%\msvcp.exe %sDel%>>%systemdrive%\rapport.txt
if exist msvcp.exe echo %sError% %syspath%\msvcp.exe>>%systemdrive%\rapport.txt
)

if exist msvol.tlb (
attrib -r -s -h msvol.tlb
del /a /f msvol.tlb
if NOT exist msvol.tlb echo %syspath%\msvol.tlb %sDel%>>%systemdrive%\rapport.txt
if exist msvol.tlb echo %sError% %syspath%\msvol.tlb>>%systemdrive%\rapport.txt
)

if exist mswinb32.dll (
attrib -r -s -h mswinb32.dll
del /a /f mswinb32.dll
if NOT exist mswinb32.dll echo %syspath%\mswinb32.dll %sDel%>>%systemdrive%\rapport.txt
if exist mswinb32.dll echo %sError% %syspath%\mswinb32.dll>>%systemdrive%\rapport.txt
)

if exist mswinb32.exe (
attrib -r -s -h mswinb32.exe
del /a /f mswinb32.exe
if NOT exist mswinb32.exe echo %syspath%\mswinb32.exe %sDel%>>%systemdrive%\rapport.txt
if exist mswinb32.exe echo %sError% %syspath%\mswinb32.exe>>%systemdrive%\rapport.txt
)

if exist mswinf32.dll (
attrib -r -s -h mswinf32.dll
del /a /f mswinf32.dll
if NOT exist mswinf32.dll echo %syspath%\mswinf32.dll %sDel%>>%systemdrive%\rapport.txt
if exist mswinf32.dll echo %sError% %syspath%\mswinf32.dll>>%systemdrive%\rapport.txt
)

if exist mswinf32.exe (
attrib -r -s -h mswinf32.exe
del /a /f mswinf32.exe
if NOT exist mswinf32.exe echo %syspath%\mswinf32.exe %sDel%>>%systemdrive%\rapport.txt
if exist mswinf32.exe echo %sError% %syspath%\mswinf32.exe>>%systemdrive%\rapport.txt
)

if exist mswinup32.dll (
attrib -r -s -h mswinup32.dll
del /a /f mswinup32.dll
if NOT exist mswinup32.dll echo %syspath%\mswinup32.dll %sDel%>>%systemdrive%\rapport.txt
if exist mswinup32.dll echo %sError% %syspath%\mswinup32.dll>>%systemdrive%\rapport.txt
)

if exist mswinxml.dll (
attrib -r -s -h mswinxml.dll
del /a /f mswinxml.dll
if NOT exist mswinxml.dll echo %syspath%\mswinxml.dll %sDel%>>%systemdrive%\rapport.txt
if exist mswinxml.dll echo %sError% %syspath%\mswinxml.dll>>%systemdrive%\rapport.txt
)

if exist MTC.dll (
attrib -r -s -h MTC.dll
del /a /f MTC.dll
if NOT exist MTC.dll echo %syspath%\MTC.dll %sDel%>>%systemdrive%\rapport.txt
if exist MTC.dll echo %sError% %syspath%\MTC.dll>>%systemdrive%\rapport.txt
)

if exist MTC.ini (
attrib -r -s -h MTC.ini
del /a /f MTC.ini
if NOT exist MTC.ini echo %syspath%\MTC.ini %sDel%>>%systemdrive%\rapport.txt
if exist MTC.ini echo %sError% %syspath%\MTC.ini>>%systemdrive%\rapport.txt
)

if exist multitran.exe (
attrib -r -s -h multitran.exe
del /a /f multitran.exe
if NOT exist multitran.exe echo %syspath%\multitran.exe %sDel%>>%systemdrive%\rapport.txt
if exist multitran.exe echo %sError% %syspath%\multitran.exe>>%systemdrive%\rapport.txt
)

if exist muvdjo.dll (
attrib -r -s -h muvdjo.dll
del /a /f muvdjo.dll
if NOT exist muvdjo.dll echo %syspath%\muvdjo.dll %sDel%>>%systemdrive%\rapport.txt
if exist muvdjo.dll echo %sError% %syspath%\muvdjo.dll>>%systemdrive%\rapport.txt
)

if exist myqlejy.dll (
attrib -r -s -h myqlejy.dll
del /a /f myqlejy.dll
if NOT exist myqlejy.dll echo %syspath%\myqlejy.dll %sDel%>>%systemdrive%\rapport.txt
if exist myqlejy.dll echo %sError% %syspath%\myqlejy.dll>>%systemdrive%\rapport.txt
)

if exist mzoeut.dll (
attrib -r -s -h mzoeut.dll
del /a /f mzoeut.dll
if NOT exist mzoeut.dll echo %syspath%\mzoeut.dll %sDel%>>%systemdrive%\rapport.txt
if exist mzoeut.dll echo %sError% %syspath%\mzoeut.dll>>%systemdrive%\rapport.txt
)

if exist nbbrhbd.dll (
attrib -r -s -h nbbrhbd.dll
del /a /f nbbrhbd.dll
if NOT exist nbbrhbd.dll echo %syspath%\nbbrhbd.dll %sDel%>>%systemdrive%\rapport.txt
if exist nbbrhbd.dll echo %sError% %syspath%\nbbrhbd.dll>>%systemdrive%\rapport.txt
)

if exist ncompat.tlb (
attrib -r -s -h ncompat.tlb
del /a /f ncompat.tlb
if NOT exist ncompat.tlb echo %syspath%\ncompat.tlb %sDel%>>%systemdrive%\rapport.txt
if exist ncompat.tlb echo %sError% %syspath%\ncompat.tlb>>%systemdrive%\rapport.txt
)

if exist netfilt4.exe (
attrib -r -s -h netfilt4.exe
del /a /f netfilt4.exe
if NOT exist netfilt4.exe echo %syspath%\netfilt4.exe %sDel%>>%systemdrive%\rapport.txt
if exist netfilt4.exe echo %sError% %syspath%\netfilt4.exe>>%systemdrive%\rapport.txt
)

if exist netstat2.exe (
attrib -r -s -h netstat2.exe
del /a /f netstat2.exe
if NOT exist netstat2.exe echo %syspath%\netstat2.exe %sDel%>>%systemdrive%\rapport.txt
if exist netstat2.exe echo %sError% %syspath%\netstat2.exe>>%systemdrive%\rapport.txt
)

if exist network.ico (
attrib -r -s -h network.ico
del /a /f network.ico
if NOT exist network.ico echo %syspath%\network.ico %sDel%>>%systemdrive%\rapport.txt
if exist network.ico echo %sError% %syspath%\network.ico>>%systemdrive%\rapport.txt
)

if exist netwrap.dll (
attrib -r -s -h netwrap.dll
del /a /f netwrap.dll
if NOT exist netwrap.dll echo %syspath%\netwrap.dll %sDel%>>%systemdrive%\rapport.txt
if exist netwrap.dll echo %sError% %syspath%\netwrap.dll>>%systemdrive%\rapport.txt
)

if exist nexpegp.dll (
attrib -r -s -h nexpegp.dll
del /a /f nexpegp.dll
if NOT exist nexpegp.dll echo %syspath%\nexpegp.dll %sDel%>>%systemdrive%\rapport.txt
if exist nexpegp.dll echo %sError% %syspath%\nexpegp.dll>>%systemdrive%\rapport.txt
)

if exist notepad.com (
attrib -r -s -h notepad.com
del /a /f notepad.com
if NOT exist notepad.com echo %syspath%\notepad.com %sDel%>>%systemdrive%\rapport.txt
if exist notepad.com echo %sError% %syspath%\notepad.com>>%systemdrive%\rapport.txt
)

if exist notifysb.dll (
attrib -r -s -h notifysb.dll
del /a /f notifysb.dll
if NOT exist notifysb.dll echo %syspath%\notifysb.dll %sDel%>>%systemdrive%\rapport.txt
if exist notifysb.dll echo %sError% %syspath%\notifysb.dll>>%systemdrive%\rapport.txt
)

if exist NTCommLib3.exe (
attrib -r -s -h NTCommLib3.exe
del /a /f NTCommLib3.exe
if NOT exist NTCommLib3.exe echo %syspath%\NTCommLib3.exe %sDel%>>%systemdrive%\rapport.txt
if exist NTCommLib3.exe echo %sError% %syspath%\NTCommLib3.exe>>%systemdrive%\rapport.txt
)

if exist nvctrl.exe (
attrib -r -s -h nvctrl.exe
del /a /f nvctrl.exe
if NOT exist nvctrl.exe echo %syspath%\nvctrl.exe %sDel%>>%systemdrive%\rapport.txt
if exist nvctrl.exe echo %sError% %syspath%\nvctrl.exe>>%systemdrive%\rapport.txt
)

if exist nuclabdll.dll (
attrib -r -s -h nuclabdll.dll
del /a /f nuclabdll.dll
if NOT exist nuclabdll.dll echo %syspath%\nuclabdll.dll %sDel%>>%systemdrive%\rapport.txt
if exist nuclabdll.dll echo %sError% %syspath%\nuclabdll.dll>>%systemdrive%\rapport.txt
)

if exist nuqjici.dll (
attrib -r -s -h nuqjici.dll
del /a /f nuqjici.dll
if NOT exist nuqjici.dll echo %syspath%\nuqjici.dll %sDel%>>%systemdrive%\rapport.txt
if exist nuqjici.dll echo %sError% %syspath%\nuqjici.dll>>%systemdrive%\rapport.txt
)

if exist nvms.dll (
attrib -r -s -h nvms.dll
del /a /f nvms.dll
if NOT exist nvms.dll echo %syspath%\nvms.dll %sDel%>>%systemdrive%\rapport.txt
if exist nvms.dll echo %sError% %syspath%\nvms.dll>>%systemdrive%\rapport.txt
)

if exist oerucu.dll (
attrib -r -s -h oerucu.dll
del /a /f oerucu.dll
if NOT exist oerucu.dll echo %syspath%\oerucu.dll %sDel%>>%systemdrive%\rapport.txt
if exist oerucu.dll echo %sError% %syspath%\oerucu.dll>>%systemdrive%\rapport.txt
)

if exist oebxpba.dll (
attrib -r -s -h oebxpba.dll
del /a /f oebxpba.dll
if NOT exist oebxpba.dll echo %syspath%\oebxpba.dll %sDel%>>%systemdrive%\rapport.txt
if exist oebxpba.dll echo %sError% %syspath%\oebxpba.dll>>%systemdrive%\rapport.txt
)

if exist ofcukiz.dll (
attrib -r -s -h ofcukiz.dll
del /a /f ofcukiz.dll
if NOT exist ofcukiz.dll echo %syspath%\ofcukiz.dll %sDel%>>%systemdrive%\rapport.txt
if exist ofcukiz.dll echo %sError% %syspath%\ofcukiz.dll>>%systemdrive%\rapport.txt
)

if exist office_pnl.dll (
attrib -r -s -h office_pnl.dll
del /a /f office_pnl.dll
if NOT exist office_pnl.dll echo %syspath%\office_pnl.dll %sDel%>>%systemdrive%\rapport.txt
if exist office_pnl.dll echo %sError% %syspath%\office_pnl.dll>>%systemdrive%\rapport.txt
)

if exist officescan.exe (
attrib -r -s -h officescan.exe
del /a /f officescan.exe
if NOT exist officescan.exe echo %syspath%\officescan.exe %sDel%>>%systemdrive%\rapport.txt
if exist officescan.exe echo %sError% %syspath%\officescan.exe>>%systemdrive%\rapport.txt
)

if exist oiso.bin (
attrib -r -s -h oiso.bin
del /a /f oiso.bin
if NOT exist oiso.bin echo %syspath%\oiso.bin %sDel%>>%systemdrive%\rapport.txt
if exist oiso.bin echo %sError% %syspath%\oiso.bin>>%systemdrive%\rapport.txt
)

if exist okkmtv.dll (
attrib -r -s -h okkmtv.dll
del /a /f okkmtv.dll
if NOT exist okkmtv.dll echo %syspath%\okkmtv.dll %sDel%>>%systemdrive%\rapport.txt
if exist okkmtv.dll echo %sError% %syspath%\okkmtv.dll>>%systemdrive%\rapport.txt
)

if exist oksrqqu.dll (
attrib -r -s -h oksrqqu.dll
del /a /f oksrqqu.dll
if NOT exist oksrqqu.dll echo %syspath%\oksrqqu.dll %sDel%>>%systemdrive%\rapport.txt
if exist oksrqqu.dll echo %sError% %syspath%\oksrqqu.dll>>%systemdrive%\rapport.txt
)

if exist ole32vbs.exe (
attrib -r -s -h ole32vbs.exe
del /a /f ole32vbs.exe
if NOT exist ole32vbs.exe echo %syspath%\ole32vbs.exe %sDel%>>%systemdrive%\rapport.txt
if exist ole32vbs.exe echo %sError% %syspath%\ole32vbs.exe>>%systemdrive%\rapport.txt
)

if exist oleadm.dll (
attrib -r -s -h oleadm.dll
del /a /f oleadm.dll
if NOT exist oleadm.dll echo %syspath%\oleadm.dll %sDel%>>%systemdrive%\rapport.txt
if exist oleadm.dll echo %sError% %syspath%\oleadm.dll>>%systemdrive%\rapport.txt
)

if exist oleadm32.dll (
attrib -r -s -h oleadm32.dll
del /a /f oleadm32.dll
if NOT exist oleadm32.dll echo %syspath%\oleadm32.dll %sDel%>>%systemdrive%\rapport.txt
if exist oleadm32.dll echo %sError% %syspath%\oleadm32.dll>>%systemdrive%\rapport.txt
)

if exist oleext.dll (
attrib -r -s -h oleext.dll
del /a /f oleext.dll
if NOT exist oleext.dll echo %syspath%\oleext.dll %sDel%>>%systemdrive%\rapport.txt
if exist oleext.dll echo %sError% %syspath%\oleext.dll>>%systemdrive%\rapport.txt
)

if exist oleext32.dll (
attrib -r -s -h oleext32.dll
del /a /f oleext32.dll
if NOT exist oleext32.dll echo %syspath%\oleext32.dll %sDel%>>%systemdrive%\rapport.txt
if exist oleext32.dll echo %sError% %syspath%\oleext32.dll>>%systemdrive%\rapport.txt
)

if exist olnohdw.dll (
attrib -r -s -h olnohdw.dll
del /a /f olnohdw.dll
if NOT exist olnohdw.dll echo %syspath%\olnohdw.dll %sDel%>>%systemdrive%\rapport.txt
if exist olnohdw.dll echo %sError% %syspath%\olnohdw.dll>>%systemdrive%\rapport.txt
)

if exist "Online Betting.ico" (
attrib -r -s -h "Online Betting.ico"
del /a /f "Online Betting.ico"
if NOT exist "Online Betting.ico" echo %syspath%\Online Betting.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Online Betting.ico" echo %sError% %syspath%\Online Betting.ico>>%systemdrive%\rapport.txt
)

if exist "Online Gambling.ico" (
attrib -r -s -h "Online Gambling.ico"
del /a /f "Online Gambling.ico"
if NOT exist "Online Gambling.ico" echo %syspath%\Online Gambling.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Online Gambling.ico" echo %sError% %syspath%\Online Gambling.ico>>%systemdrive%\rapport.txt
)

if exist onljweo.dll (
attrib -r -s -h onljweo.dll
del /a /f onljweo.dll
if NOT exist onljweo.dll echo %syspath%\onljweo.dll %sDel%>>%systemdrive%\rapport.txt
if exist onljweo.dll echo %sError% %syspath%\onljweo.dll>>%systemdrive%\rapport.txt
)

if exist onofub.dll (
attrib -r -s -h onofub.dll
del /a /f onofub.dll
if NOT exist onofub.dll echo %syspath%\onofub.dll %sDel%>>%systemdrive%\rapport.txt
if exist onofub.dll echo %sError% %syspath%\onofub.dll>>%systemdrive%\rapport.txt
)

if exist onwtj.dll (
attrib -r -s -h onwtj.dll
del /a /f onwtj.dll
if NOT exist onwtj.dll echo %syspath%\onwtj.dll %sDel%>>%systemdrive%\rapport.txt
if exist onwtj.dll echo %sError% %syspath%\onwtj.dll>>%systemdrive%\rapport.txt
)

if exist oqabf.dll (
attrib -r -s -h oqabf.dll
del /a /f oqabf.dll
if NOT exist oqabf.dll echo %syspath%\oqabf.dll %sDel%>>%systemdrive%\rapport.txt
if exist oqabf.dll echo %sError% %syspath%\oqabf.dll>>%systemdrive%\rapport.txt
)

if exist oqipt.dll (
attrib -r -s -h oqipt.dll
del /a /f oqipt.dll
if NOT exist oqipt.dll echo %syspath%\oqipt.dll %sDel%>>%systemdrive%\rapport.txt
if exist oqipt.dll echo %sError% %syspath%\oqipt.dll>>%systemdrive%\rapport.txt
)

if exist "Oral Sex.ico" (
attrib -r -s -h "Oral Sex.ico"
del /a /f "Oral Sex.ico"
if NOT exist "Oral Sex.ico" echo %syspath%\Oral Sex.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Oral Sex.ico" echo %sError% %syspath%\Oral Sex.ico>>%systemdrive%\rapport.txt
)

if exist ornzq.dll (
attrib -r -s -h ornzq.dll
del /a /f ornzq.dll
if NOT exist ornzq.dll echo %syspath%\ornzq.dll %sDel%>>%systemdrive%\rapport.txt
if exist ornzq.dll echo %sError% %syspath%\ornzq.dll>>%systemdrive%\rapport.txt
)

if exist ot.ico (
attrib -r -s -h ot.ico
del /a /f ot.ico
if NOT exist ot.ico echo %syspath%\ot.ico %sDel%>>%systemdrive%\rapport.txt
if exist ot.ico echo %sError% %syspath%\ot.ico>>%systemdrive%\rapport.txt
)

if exist ownyhr.dll (
attrib -r -s -h ownyhr.dll
del /a /f ownyhr.dll
if NOT exist ownyhr.dll echo %syspath%\ownyhr.dll %sDel%>>%systemdrive%\rapport.txt
if exist ownyhr.dll echo %sError% %syspath%\ownyhr.dll>>%systemdrive%\rapport.txt
)

if exist oybgrql.dll (
attrib -r -s -h oybgrql.dll
del /a /f oybgrql.dll
if NOT exist oybgrql.dll echo %syspath%\oybgrql.dll %sDel%>>%systemdrive%\rapport.txt
if exist oybgrql.dll echo %sError% %syspath%\oybgrql.dll>>%systemdrive%\rapport.txt
)

if exist oyopu.dll (
attrib -r -s -h oyopu.dll
del /a /f oyopu.dll
if NOT exist oyopu.dll echo %syspath%\oyopu.dll %sDel%>>%systemdrive%\rapport.txt
if exist oyopu.dll echo %sError% %syspath%\oyopu.dll>>%systemdrive%\rapport.txt
)

if exist parad.raw.exe (
attrib -r -s -h parad.raw.exe
del /a /f parad.raw.exe
if NOT exist parad.raw.exe echo %syspath%\parad.raw.exe %sDel%>>%systemdrive%\rapport.txt
if exist parad.raw.exe echo %sError% %syspath%\parad.raw.exe>>%systemdrive%\rapport.txt
)

if exist paradise.raw.exe (
attrib -r -s -h paradise.raw.exe
del /a /f paradise.raw.exe
if NOT exist paradise.raw.exe echo %syspath%\paradise.raw.exe %sDel%>>%systemdrive%\rapport.txt
if exist paradise.raw.exe echo %sError% %syspath%\paradise.raw.exe>>%systemdrive%\rapport.txt
)

if exist param32.dll (
attrib -r -s -h param32.dll 
del /a /f param32.dll 
if NOT exist param32.dll echo %syspath%\param32.dll %sDel%>>%systemdrive%\rapport.txt
if exist param32.dll echo %sError% %syspath%\param32.dll>>%systemdrive%\rapport.txt
)

if exist "Party Poker.ico" (
attrib -r -s -h "Party Poker.ico"
del /a /f "Party Poker.ico"
if NOT exist "Party Poker.ico" echo %syspath%\Party Poker.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Party Poker.ico" echo %sError% %syspath%\Party Poker.ico>>%systemdrive%\rapport.txt
)

if exist paytime.exe (
attrib -r -s -h paytime.exe
del /a /f paytime.exe
if NOT exist paytime.exe echo %syspath%\paytime.exe %sDel%>>%systemdrive%\rapport.txt
if exist paytime.exe echo %sError% %syspath%\paytime.exe>>%systemdrive%\rapport.txt
)

if exist pcf.pdf (
attrib -r -s -h pcf.pdf 
del /a /f pcf.pdf 
if NOT exist pcf.pdf echo %syspath%\pcf.pdf %sDel%>>%systemdrive%\rapport.txt
if exist pcf.pdf echo %sError% %syspath%\pcf.pdf>>%systemdrive%\rapport.txt
)

if exist perfont.exe (
attrib -r -s -h perfont.exe
del /a /f perfont.exe
if NOT exist perfont.exe echo %syspath%\perfont.exe %sDel%>>%systemdrive%\rapport.txt
if exist perfont.exe echo %sError% %syspath%\perfont.exe>>%systemdrive%\rapport.txt
)

if exist perfcii.ini (
attrib -r -s -h perfcii.ini 
del /a /f perfcii.ini 
if NOT exist perfcii.ini echo %syspath%\perfcii.ini %sDel%>>%systemdrive%\rapport.txt
if exist perfcii.ini echo %sError% %syspath%\perfcii.ini>>%systemdrive%\rapport.txt
)

if exist performent202.dll (
attrib -r -s -h performent202.dll 
del /a /f performent202.dll
if NOT exist performent202.dll echo %syspath%\performent202.dll %sDel%>>%systemdrive%\rapport.txt
if exist performent202.dll echo %sError% %syspath%\performent202.dll>>%systemdrive%\rapport.txt
)

if exist performent217.dll (
attrib -r -s -h performent217.dll 
del /a /f performent217.dll
if NOT exist performent217.dll echo %syspath%\performent217.dll %sDel%>>%systemdrive%\rapport.txt
if exist performent217.dll echo %sError% %syspath%\performent217.dll>>%systemdrive%\rapport.txt
)

if exist pharm.ico (
attrib -r -s -h pharm.ico
del /a /f pharm.ico
if NOT exist pharm.ico echo %syspath%\pharm.ico %sDel%>>%systemdrive%\rapport.txt
if exist pharm.ico echo %sError% %syspath%\pharm.ico>>%systemdrive%\rapport.txt
)

if exist pharm2.ico (
attrib -r -s -h pharm2.ico
del /a /f pharm2.ico
if NOT exist pharm2.ico echo %syspath%\pharm2.ico %sDel%>>%systemdrive%\rapport.txt
if exist pharm2.ico echo %sError% %syspath%\pharm2.ico>>%systemdrive%\rapport.txt
)

if exist Pharmacy.ico (
attrib -r -s -h Pharmacy.ico
del /a /f Pharmacy.ico
if NOT exist Pharmacy.ico echo %syspath%\Pharmacy.ico %sDel%>>%systemdrive%\rapport.txt
if exist Pharmacy.ico echo %sError% %syspath%\Pharmacy.ico>>%systemdrive%\rapport.txt
)

if exist Phentermine.ico (
attrib -r -s -h Phentermine.ico
del /a /f Phentermine.ico
if NOT exist Phentermine.ico echo %syspath%\Phentermine.ico %sDel%>>%systemdrive%\rapport.txt
if exist Phentermine.ico echo %sError% %syspath%\Phentermine.ico>>%systemdrive%\rapport.txt
)

if exist pigglett.exe (
attrib -r -s -h pigglett.exe
del /a /f pigglett.exe
if NOT exist pigglett.exe echo %syspath%\pigglett.exe %sDel%>>%systemdrive%\rapport.txt
if exist pigglett.exe echo %sError% %syspath%\pigglett.exe>>%systemdrive%\rapport.txt
)

if exist pjgerka.dll (
attrib -r -s -h pjgerka.dll 
del /a /f pjgerka.dll 
if NOT exist pjgerka.dll echo %syspath%\pjgerka.dll %sDel%>>%systemdrive%\rapport.txt
if exist pjgerka.dll echo %sError% %syspath%\pjgerka.dll>>%systemdrive%\rapport.txt
)

if exist pkgvyg.dll (
attrib -r -s -h pkgvyg.dll 
del /a /f pkgvyg.dll 
if NOT exist pkgvyg.dll echo %syspath%\pkgvyg.dll %sDel%>>%systemdrive%\rapport.txt
if exist pkgvyg.dll echo %sError% %syspath%\pkgvyg.dll>>%systemdrive%\rapport.txt
)

if exist pkjcoxq.dll (
attrib -r -s -h pkjcoxq.dll 
del /a /f pkjcoxq.dll 
if NOT exist pkjcoxq.dll echo %syspath%\pkjcoxq.dll %sDel%>>%systemdrive%\rapport.txt
if exist pkjcoxq.dll echo %sError% %syspath%\pkjcoxq.dll>>%systemdrive%\rapport.txt
)

if exist pmnqguh.dll (
attrib -r -s -h pmnqguh.dll 
del /a /f pmnqguh.dll 
if NOT exist pmnqguh.dll echo %syspath%\pmnqguh.dll %sDel%>>%systemdrive%\rapport.txt
if exist pmnqguh.dll echo %sError% %syspath%\pmnqguh.dll>>%systemdrive%\rapport.txt
)

if exist POPCORN72.EXE (
attrib -r -s -h POPCORN72.EXE 
del /a /f POPCORN72.EXE 
if NOT exist POPCORN72.EXE echo %syspath%\POPCORN72.EXE %sDel%>>%systemdrive%\rapport.txt
if exist POPCORN72.EXE echo %sError% %syspath%\POPCORN72.EXE>>%systemdrive%\rapport.txt
)

if exist pop_up.dll (
attrib -r -s -h pop_up.dll 
del /a /f pop_up.dll 
if NOT exist pop_up.dll echo %syspath%\pop_up.dll %sDel%>>%systemdrive%\rapport.txt
if exist pop_up.dll echo %sError% %syspath%\pop_up.dll>>%systemdrive%\rapport.txt
)

if exist popspig (
attrib -r -s -h popspig 
del /a /f popspig 
if NOT exist popspig echo %syspath%\popspig %sDel%>>%systemdrive%\rapport.txt
if exist popspig echo %sError% %syspath%\popspig>>%systemdrive%\rapport.txt
)

if exist Pornstars.ico (
attrib -r -s -h Pornstars.ico
del /a /f Pornstars.ico
if NOT exist Pornstars.ico echo %syspath%\Pornstars.ico %sDel%>>%systemdrive%\rapport.txt
if exist Pornstars.ico echo %sError% %syspath%\Pornstars.ico>>%systemdrive%\rapport.txt
)

if exist posem.dll (
attrib -r -s -h posem.dll
del /a /f /q posem.dll
if NOT exist posem.dll echo %syspath%\posem.dll %sDel%>>%systemdrive%\rapport.txt
if exist posem.dll echo %sError% %syspath%\posem.dll>>%systemdrive%\rapport.txt
)

if exist printer.exe (
attrib -r -s -h printer.exe
del /a /f /q printer.exe
if NOT exist printer.exe echo %syspath%\printer.exe %sDel%>>%systemdrive%\rapport.txt
if exist printer.exe echo %sError% %syspath%\printer.exe>>%systemdrive%\rapport.txt
)

if exist priva.exe (
attrib -r -s -h priva.exe
del /a /f /q priva.exe
if NOT exist priva.exe echo %syspath%\priva.exe %sDel%>>%systemdrive%\rapport.txt
if exist priva.exe echo %sError% %syspath%\priva.exe>>%systemdrive%\rapport.txt
)

if exist processes.txt (
attrib -r -s -h processes.txt 
del /a /f processes.txt 
if NOT exist processes.txt echo %syspath%\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist processes.txt echo %sError% %syspath%\processes.txt>>%systemdrive%\rapport.txt
)

if exist proqlaim.exe (
attrib -r -s -h proqlaim.exe
del /a /f /q proqlaim.exe
if NOT exist proqlaim.exe echo %syspath%\proqlaim.exe %sDel%>>%systemdrive%\rapport.txt
if exist proqlaim.exe echo %sError% %syspath%\proqlaim.exe>>%systemdrive%\rapport.txt
)

if exist qjrkvy.exe (
attrib -r -s -h qjrkvy.exe
del /a /f /q qjrkvy.exe
if NOT exist qjrkvy.exe echo %syspath%\qjrkvy.exe %sDel%>>%systemdrive%\rapport.txt
if exist qjrkvy.exe echo %sError% %syspath%\qjrkvy.exe>>%systemdrive%\rapport.txt
)

if exist psndz.dll (
attrib -r -s -h psndz.dll
del /a /f /q psndz.dll
if NOT exist psndz.dll echo %syspath%\psndz.dll %sDel%>>%systemdrive%\rapport.txt
if exist psndz.dll echo %sError% %syspath%\psndz.dll>>%systemdrive%\rapport.txt
)

if exist prflbmsgp32.dll (
attrib -r -s -h prflbmsgp32.dll
del /a /f /q prflbmsgp32.dll
if NOT exist prflbmsgp32.dll echo %syspath%\prflbmsgp32.dll %sDel%>>%systemdrive%\rapport.txt
if exist prflbmsgp32.dll echo %sError% %syspath%\prflbmsgp32.dll>>%systemdrive%\rapport.txt
)

if exist qnusjji.dll (
attrib -r -s -h qnusjji.dll
del /a /f /q qnusjji.dll
if NOT exist qnusjji.dll echo %syspath%\qnusjji.dll %sDel%>>%systemdrive%\rapport.txt
if exist qnusjji.dll echo %sError% %syspath%\qnusjji.dll>>%systemdrive%\rapport.txt
)

if exist questmod.dll (
attrib -r -s -h questmod.dll
del /a /f /q questmod.dll
if NOT exist questmod.dll echo %syspath%\questmod.dll %sDel%>>%systemdrive%\rapport.txt
if exist questmod.dll echo %sError% %syspath%\questmod.dll>>%systemdrive%\rapport.txt
)

if exist qvjpt.dll (
attrib -r -s -h qvjpt.dll
del /a /f /q qvjpt.dll
if NOT exist qvjpt.dll echo %syspath%\qvjpt.dll %sDel%>>%systemdrive%\rapport.txt
if exist qvjpt.dll echo %sError% %syspath%\qvjpt.dll>>%systemdrive%\rapport.txt
)

if exist qvxgamet?.exe (
attrib -r -s -h qvxgamet?.exe
del /a /f /q qvxgamet?.exe
if NOT exist qvxgamet?.exe echo %syspath%\qvxgamet?.exe %sDel%>>%systemdrive%\rapport.txt
if exist qvxgamet?.exe echo %sError% %syspath%\qvxgamet?.exe>>%systemdrive%\rapport.txt
)

if exist qrzsyr.dll (
attrib -r -s -h qrzsyr.dll
del /a /f /q qrzsyr.dll
if NOT exist qrzsyr.dll echo %syspath%\qrzsyr.dll %sDel%>>%systemdrive%\rapport.txt
if exist qrzsyr.dll echo %sError% %syspath%\qrzsyr.dll>>%systemdrive%\rapport.txt
)

if exist qxfgcg.dll (
attrib -r -s -h qxfgcg.dll
del /a /f /q qxfgcg.dll
if NOT exist qxfgcg.dll echo %syspath%\qxfgcg.dll %sDel%>>%systemdrive%\rapport.txt
if exist qxfgcg.dll echo %sError% %syspath%\qxfgcg.dll>>%systemdrive%\rapport.txt
)

if exist qzviz.dll (
attrib -r -s -h qzviz.dll
del /a /f /q qzviz.dll
if NOT exist qzviz.dll echo %syspath%\qzviz.dll %sDel%>>%systemdrive%\rapport.txt
if exist qzviz.dll echo %sError% %syspath%\qzviz.dll>>%systemdrive%\rapport.txt
)

if exist rcohty.dll (
attrib -r -s -h rcohty.dll
del /a /f /q rcohty.dll
if NOT exist rcohty.dll echo %syspath%\rcohty.dll %sDel%>>%systemdrive%\rapport.txt
if exist rcohty.dll echo %sError% %syspath%\rcohty.dll>>%systemdrive%\rapport.txt
)

if exist reger.exe (
attrib -r -s -h reger.exe 
del /a /f reger.exe 
if NOT exist reger.exe echo %syspath%\reger.exe %sDel%>>%systemdrive%\rapport.txt
if exist reger.exe echo %sError% %syspath%\reger.exe>>%systemdrive%\rapport.txt
)

if exist RegistryCleanerSetup.exe (
attrib -r -s -h RegistryCleanerSetup.exe 
del /a /f RegistryCleanerSetup.exe 
if NOT exist RegistryCleanerSetup.exe echo %syspath%\RegistryCleanerSetup.exe %sDel%>>%systemdrive%\rapport.txt
if exist RegistryCleanerSetup.exe echo %sError% %syspath%\RegistryCleanerSetup.exe>>%systemdrive%\rapport.txt
)

if exist regperf.exe (
attrib -r -s -h regperf.exe 
del /a /f regperf.exe 
if NOT exist regperf.exe echo %syspath%\regperf.exe %sDel%>>%systemdrive%\rapport.txt
if exist regperf.exe echo %sError% %syspath%\regperf.exe>>%systemdrive%\rapport.txt
)

if exist reglogs.dll (
attrib -r -s -h reglogs.dll
del /a /f /q reglogs.dll
if NOT exist reglogs.dll echo %syspath%\reglogs.dll %sDel%>>%systemdrive%\rapport.txt
if exist reglogs.dll echo %sError% %syspath%\reglogs.dll>>%systemdrive%\rapport.txt
)

if exist "Remove Spyware.ico" (
attrib -r -s -h "Remove Spyware.ico"
del /a /f "Remove Spyware.ico"
if NOT exist "Remove Spyware.ico" echo %syspath%\Remove Spyware.ico %sDel%>>%systemdrive%\rapport.txt
if exist "Remove Spyware.ico" echo %sError% %syspath%\Remove Spyware.ico>>%systemdrive%\rapport.txt
)

if exist repigsp.exe (
attrib -r -s -h repigsp.exe 
del /a /f repigsp.exe 
if NOT exist repigsp.exe echo %syspath%\repigsp.exe %sDel%>>%systemdrive%\rapport.txt
if exist repigsp.exe echo %sError% %syspath%\repigsp.exe>>%systemdrive%\rapport.txt
)

if exist replmap.dll (
attrib -r -s -h replmap.dll
del /a /f /q replmap.dll
if NOT exist replmap.dll echo %syspath%\replmap.dll %sDel%>>%systemdrive%\rapport.txt
if exist replmap.dll echo %sError% %syspath%\replmap.dll>>%systemdrive%\rapport.txt
)

if exist rjxdexau.exe (
attrib -r -s -h rjxdexau.exe 
del /a /f rjxdexau.exe 
if NOT exist rjxdexau.exe echo %syspath%\rjxdexau.exe %sDel%>>%systemdrive%\rapport.txt
if exist rjxdexau.exe echo %sError% %syspath%\rjxdexau.exe>>%systemdrive%\rapport.txt
)

if exist rmzdzx.dll (
attrib -r -s -h rmzdzx.dll
del /a /f /q rmzdzx.dll
if NOT exist rmzdzx.dll echo %syspath%\rmzdzx.dll %sDel%>>%systemdrive%\rapport.txt
if exist rmzdzx.dll echo %sError% %syspath%\rmzdzx.dll>>%systemdrive%\rapport.txt
)

if exist rosdzop.dll (
attrib -r -s -h rosdzop.dll
del /a /f /q rosdzop.dll
if NOT exist rosdzop.dll echo %syspath%\rosdzop.dll %sDel%>>%systemdrive%\rapport.txt
if exist rosdzop.dll echo %sError% %syspath%\rosdzop.dll>>%systemdrive%\rapport.txt
)

if exist RpcxSs.dll (
attrib -r -s -h RpcxSs.dll
del /a /f /q RpcxSs.dll
if NOT exist RpcxSs.dll echo %syspath%\RpcxSs.dll %sDel%>>%systemdrive%\rapport.txt
if exist RpcxSs.dll echo %sError% %syspath%\RpcxSs.dll>>%systemdrive%\rapport.txt
)

if exist rrtcany.dll (
attrib -r -s -h rrtcany.dll
del /a /f /q rrtcany.dll
if NOT exist rrtcany.dll echo %syspath%\rrtcany.dll %sDel%>>%systemdrive%\rapport.txt
if exist rrtcany.dll echo %sError% %syspath%\rrtcany.dll>>%systemdrive%\rapport.txt
)

if exist rtwwf.exe (
attrib -r -s -h rtwwf.exe 
del /a /f rtwwf.exe 
if NOT exist rtwwf.exe echo %syspath%\rtwwf.exe %sDel%>>%systemdrive%\rapport.txt
if exist rtwwf.exe echo %sError% %syspath%\rtwwf.exe>>%systemdrive%\rapport.txt
)

if exist runsrv32.dll (
attrib -r -s -h runsrv32.dll
del /a /f runsrv32.dll 
if NOT exist runsrv32.dll echo %syspath%\runsrv32.dll %sDel%>>%systemdrive%\rapport.txt
if exist runsrv32.dll echo %sError% %syspath%\runsrv32.dll>>%systemdrive%\rapport.txt
)

if exist runsrv32.exe (
attrib -r -s -h runsrv32.exe 
del /a /f runsrv32.exe 
if NOT exist runsrv32.exe echo %syspath%\runsrv32.exe %sDel%>>%systemdrive%\rapport.txt
if exist runsrv32.exe echo %sError% %syspath%\runsrv32.exe>>%systemdrive%\rapport.txt
)

if exist rxqcpn.dll (
attrib -r -s -h rxqcpn.dll
del /a /f rxqcpn.dll 
if NOT exist rxqcpn.dll echo %syspath%\rxqcpn.dll %sDel%>>%systemdrive%\rapport.txt
if exist rxqcpn.dll echo %sError% %syspath%\rxqcpn.dll>>%systemdrive%\rapport.txt
)

if exist ryxrho.dll (
attrib -r -s -h ryxrho.dll
del /a /f ryxrho.dll 
if NOT exist ryxrho.dll echo %syspath%\ryxrho.dll %sDel%>>%systemdrive%\rapport.txt
if exist ryxrho.dll echo %sError% %syspath%\ryxrho.dll>>%systemdrive%\rapport.txt
)

if exist sachostc.exe (
attrib -r -s -h sachostc.exe
del /a /f sachostc.exe
if NOT exist sachostc.exe echo %syspath%\sachostc.exe %sDel%>>%systemdrive%\rapport.txt
if exist sachostc.exe echo %sError% %syspath%\sachostc.exe>>%systemdrive%\rapport.txt
)

if exist sachostp.exe (
attrib -r -s -h sachostp.exe
del /a /f sachostp.exe
if NOT exist sachostp.exe echo %syspath%\sachostp.exe %sDel%>>%systemdrive%\rapport.txt
if exist sachostp.exe echo %sError% %syspath%\sachostp.exe>>%systemdrive%\rapport.txt
)

if exist sachosts.exe (
attrib -r -s -h sachosts.exe
del /a /f sachosts.exe
if NOT exist sachosts.exe echo %syspath%\sachosts.exe %sDel%>>%systemdrive%\rapport.txt
if exist sachosts.exe echo %sError% %syspath%\sachosts.exe>>%systemdrive%\rapport.txt
)

if exist sacskza.dll (
attrib -r -s -h sacskza.dll
del /a /f sacskza.dll
if NOT exist sacskza.dll echo %syspath%\sacskza.dll %sDel%>>%systemdrive%\rapport.txt
if exist sacskza.dll echo %sError% %syspath%\sacskza.dll>>%systemdrive%\rapport.txt
)

if exist sbnudh.dll (
attrib -r -s -h sbnudh.dll
del /a /f sbnudh.dll
if NOT exist sbnudh.dll echo %syspath%\sbnudh.dll %sDel%>>%systemdrive%\rapport.txt
if exist sbnudh.dll echo %sError% %syspath%\sbnudh.dll>>%systemdrive%\rapport.txt
)

if exist scanner.ico (
attrib -r -s -h scanner.ico
del /a /f scanner.ico
if NOT exist scanner.ico echo %syspath%\scanner.ico %sDel%>>%systemdrive%\rapport.txt
if exist scanner.ico echo %sError% %syspath%\scanner.ico>>%systemdrive%\rapport.txt
)

if exist sdfdil.exe (
attrib -r -s -h sdfdil.exe
del /a /f sdfdil.exe
if NOT exist sdfdil.exe echo %syspath%\sdfdil.exe %sDel%>>%systemdrive%\rapport.txt
if exist sdfdil.exe echo %sError% %syspath%\sdfdil.exe>>%systemdrive%\rapport.txt
)

if exist searchdll.dll (
attrib -r -s -h searchdll.dll 
del /a /f searchdll.dll 
if NOT exist searchdll.dll echo %syspath%\searchdll.dll %sDel%>>%systemdrive%\rapport.txt
if exist searchdll.dll echo %sError% %syspath%\searchdll.dll>>%systemdrive%\rapport.txt
)

if exist "Security Toolbar.dll" (
attrib -r -s -h "Security Toolbar.dll" 
del /a /f "Security Toolbar.dll" 
if NOT exist "Security Toolbar.dll" echo %syspath%\sender.exe %sDel%>>%systemdrive%\rapport.txt
if exist "Security Toolbar.dll" echo %sError% %syspath%\sender.exe>>%systemdrive%\rapport.txt
)

if exist sender.exe (
attrib -r -s -h sender.exe 
del /a /f sender.exe 
if NOT exist sender.exe echo %syspath%\sender.exe %sDel%>>%systemdrive%\rapport.txt
if exist sender.exe echo %sError% %syspath%\sender.exe>>%systemdrive%\rapport.txt
)

if exist shdochp.dll (
attrib -r -s -h shdochp.dll
del /a /f shdochp.dll
if NOT exist shdochp.dll echo %syspath%\shdochp.dll %sDel%>>%systemdrive%\rapport.txt
if exist shdochp.dll echo %sError% %syspath%\shdochp.dll>>%systemdrive%\rapport.txt
)

if exist shdochp.exe (
attrib -r -s -h shdochp.exe
del /a /f shdochp.exe
if NOT exist shdochp.exe echo %syspath%\shdochp.exe %sDel%>>%systemdrive%\rapport.txt
if exist shdochp.exe echo %sError% %syspath%\shdochp.exe>>%systemdrive%\rapport.txt
)

if exist shdochop.dll (
attrib -r -s -h shdochop.dll
del /a /f shdochop.dll
if NOT exist shdochop.dll echo %syspath%\shdochop.dll %sDel%>>%systemdrive%\rapport.txt
if exist shdochop.dll echo %sError% %syspath%\shdochop.dll>>%systemdrive%\rapport.txt
)

if exist shdocsvc.dll (
attrib -r -s -h shdocsvc.dll
del /a /f shdocsvc.dll
if NOT exist shdocsvc.dll echo %syspath%\shdocsvc.dll %sDel%>>%systemdrive%\rapport.txt
if exist shdocsvc.dll echo %sError% %syspath%\shdocsvc.dll>>%systemdrive%\rapport.txt
)

if exist shdocsvc.exe (
attrib -r -s -h shdocsvc.exe
del /a /f shdocsvc.exe
if NOT exist shdocsvc.exe echo %syspath%\shdocsvc.exe %sDel%>>%systemdrive%\rapport.txt
if exist shdocsvc.exe echo %sError% %syspath%\shdocsvc.exe>>%systemdrive%\rapport.txt
)

if exist shdocnva.dll (
attrib -r -s -h shdocnva.dll
del /a /f shdocnva.dll
if NOT exist shdocnva.dll echo %syspath%\shdocnva.dll %sDel%>>%systemdrive%\rapport.txt
if exist shdocnva.dll echo %sError% %syspath%\shdocnva.dll>>%systemdrive%\rapport.txt
)

if exist shell386.exe (
attrib -r -s -h shell386.exe 
del /a /f shell386.exe 
if NOT exist shell386.exe echo %syspath%\shell386.exe %sDel%>>%systemdrive%\rapport.txt
if exist shell386.exe echo %sError% %syspath%\shell386.exe>>%systemdrive%\rapport.txt
)

if exist shellgui32.dll (
attrib -r -s -h shellgui32.dll
del /a /f shellgui32.dll
if NOT exist shellgui32.dll echo %syspath%\shellgui32.dll %sDel%>>%systemdrive%\rapport.txt
if exist shellgui32.dll echo %sError% %syspath%\shellgui32.dll>>%systemdrive%\rapport.txt
)

if exist shnlog.exe (
attrib -r -s -h shnlog.exe 
del /a /f shnlog.exe 
if NOT exist shnlog.exe echo %syspath%\shnlog.exe %sDel%>>%systemdrive%\rapport.txt
if exist shnlog.exe echo %sError% %syspath%\shnlog.exe>>%systemdrive%\rapport.txt
)

if exist shsexl32.dll (
attrib -r -s -h shsexl32.dll
del /a /f shsexl32.dll
if NOT exist shsexl32.dll echo %syspath%\shsexl32.dll %sDel%>>%systemdrive%\rapport.txt
if exist shsexl32.dll echo %sError% %syspath%\shsexl32.dll>>%systemdrive%\rapport.txt
)

if exist simpole.tlb (
attrib -r -s -h simpole.tlb
del /a /f simpole.tlb
if NOT exist simpole.tlb echo %syspath%\simpole.tlb %sDel%>>%systemdrive%\rapport.txt
if exist simpole.tlb echo %sError% %syspath%\simpole.tlb>>%systemdrive%\rapport.txt
)

if exist sivudro.dll (
attrib -r -s -h sivudro.dll
del /a /f sivudro.dll
if NOT exist sivudro.dll echo %syspath%\sivudro.dll %sDel%>>%systemdrive%\rapport.txt
if exist sivudro.dll echo %sError% %syspath%\sivudro.dll>>%systemdrive%\rapport.txt
)

if exist smaexp32.dll (
attrib -r -s -h smaexp32.dll
del /a /f smaexp32.dll
if NOT exist smaexp32.dll echo %syspath%\smaexp32.dll %sDel%>>%systemdrive%\rapport.txt
if exist smaexp32.dll echo %sError% %syspath%\smaexp32.dll>>%systemdrive%\rapport.txt
)

if exist smartdrv.exe (
attrib -r -s -h smartdrv.exe 
del /a /f smartdrv.exe 
if NOT exist smartdrv.exe echo %syspath%\smartdrv.exe %sDel%>>%systemdrive%\rapport.txt
if exist smartdrv.exe echo %sError% %syspath%\smartdrv.exe>>%systemdrive%\rapport.txt
)

if exist socks.exe (
attrib -r -s -h socks.exe 
del /a /f socks.exe 
if NOT exist socks.exe echo %syspath%\socks.exe %sDel%>>%systemdrive%\rapport.txt
if exist socks.exe echo %sError% %syspath%\socks.exe>>%systemdrive%\rapport.txt
)

if exist spam.ico (
attrib -r -s -h spam.ico
del /a /f spam.ico
if NOT exist spam.ico echo %syspath%\spam.ico %sDel%>>%systemdrive%\rapport.txt
if exist spam.ico echo %sError% %syspath%\spam.ico>>%systemdrive%\rapport.txt
)

if exist split.exe (
attrib -r -s -h split.exe 
del /a /f split.exe 
if NOT exist split.exe echo %syspath%\split.exe %sDel%>>%systemdrive%\rapport.txt
if exist split.exe echo %sError% %syspath%\split.exe>>%systemdrive%\rapport.txt
)

if exist split1.exe (
attrib -r -s -h split1.exe 
del /a /f split1.exe 
if NOT exist split1.exe echo %syspath%\split1.exe %sDel%>>%systemdrive%\rapport.txt
if exist split1.exe echo %sError% %syspath%\split1.exe>>%systemdrive%\rapport.txt
)

if exist split2.exe (
attrib -r -s -h split2.exe 
del /a /f split2.exe 
if NOT exist split2.exe echo %syspath%\split2.exe %sDel%>>%systemdrive%\rapport.txt
if exist split2.exe echo %sError% %syspath%\split2.exe>>%systemdrive%\rapport.txt
)

if exist spoolvs.exe (
attrib -r -s -h spoolvs.exe 
del /a /f spoolvs.exe 
if NOT exist spoolvs.exe echo %syspath%\spoolvs.exe %sDel%>>%systemdrive%\rapport.txt
if exist spoolvs.exe echo %sError% %syspath%\spoolvs.exe>>%systemdrive%\rapport.txt
)

if exist spoolsrv32.exe (
attrib -r -s -h spoolsrv32.exe 
del /a /f spoolsrv32.exe 
if NOT exist spoolsrv32.exe echo %syspath%\spoolsrv32.exe %sDel%>>%systemdrive%\rapport.txt
if exist spoolsrv32.exe echo %sError% %syspath%\spoolsrv32.exe>>%systemdrive%\rapport.txt
)

if exist Spykiller.exe (
attrib -r -s -h Spykiller.exe 
del /a /f Spykiller.exe 
if NOT exist Spykiller.exe echo %syspath%\Spykiller.exe %sDel%>>%systemdrive%\rapport.txt
if exist Spykiller.exe echo %sError% %syspath%\Spykiller.exe>>%systemdrive%\rapport.txt
)

if exist spyware.ico (
attrib -r -s -h spyware.ico
del /a /f spyware.ico
if NOT exist spyware.ico echo %syspath%\spyware.ico %sDel%>>%systemdrive%\rapport.txt
if exist spyware.ico echo %sError% %syspath%\spyware.ico>>%systemdrive%\rapport.txt
)

if exist srpcsrv32.dll (
attrib -r -s -h srpcsrv32.dll
del /a /f srpcsrv32.dll 
if NOT exist srpcsrv32.dll echo %syspath%\srpcsrv32.dll %sDel%>>%systemdrive%\rapport.txt
if exist srpcsrv32.dll echo %sError% %syspath%\srpcsrv32.dll>>%systemdrive%\rapport.txt
)

if exist srpcsrv32.exe (
attrib -r -s -h srpcsrv32.exe 
del /a /f srpcsrv32.exe 
if NOT exist srpcsrv32.exe echo %syspath%\srpcsrv32.exe %sDel%>>%systemdrive%\rapport.txt
if exist srpcsrv32.exe echo %sError% %syspath%\srpcsrv32.exe>>%systemdrive%\rapport.txt
)

if exist st3.dll (
attrib -r -s -h st3.dll
del /a /f st3.dll
if NOT exist st3.dll echo %syspath%\st3.dll %sDel%>>%systemdrive%\rapport.txt
if exist st3.dll echo %sError% %syspath%\st3.dll>>%systemdrive%\rapport.txt
)

if exist stdole3.tlb (
attrib -r -s -h stdole3.tlb
del /a /f stdole3.tlb
if NOT exist stdole3.tlb echo %syspath%\stdole3.tlb %sDel%>>%systemdrive%\rapport.txt
if exist stdole3.tlb echo %sError% %syspath%\stdole3.tlb>>%systemdrive%\rapport.txt
)

if exist stickrep.dll (
attrib -r -s -h stickrep.dll
del /a /f stickrep.dll
if NOT exist stickrep.dll echo %syspath%\stickrep.dll %sDel%>>%systemdrive%\rapport.txt
if exist stickrep.dll echo %sError% %syspath%\stickrep.dll>>%systemdrive%\rapport.txt
)

if exist sumsw32.exe (
attrib -r -s -h sumsw32.exe 
del /a /f sumsw32.exe 
if NOT exist sumsw32.exe echo %syspath%\sumsw32.exe %sDel%>>%systemdrive%\rapport.txt
if exist sumsw32.exe echo %sError% %syspath%\sumsw32.exe>>%systemdrive%\rapport.txt
)

if exist suprox.dll (
attrib -r -s -h suprox.dll 
del /a /f suprox.dll 
if NOT exist suprox.dll echo %syspath%\suprox.dll %sDel%>>%systemdrive%\rapport.txt
if exist suprox.dll echo %sError% %syspath%\suprox.dll>>%systemdrive%\rapport.txt
)

if exist surzzh.dll (
attrib -r -s -h surzzh.dll 
del /a /f surzzh.dll 
if NOT exist surzzh.dll echo %syspath%\surzzh.dll %sDel%>>%systemdrive%\rapport.txt
if exist surzzh.dll echo %sError% %syspath%\surzzh.dll>>%systemdrive%\rapport.txt
)

if exist susp.exe (
attrib -r -s -h susp.exe 
del /a /f susp.exe 
if NOT exist susp.exe echo %syspath%\susp.exe %sDel%>>%systemdrive%\rapport.txt
if exist susp.exe echo %sError% %syspath%\susp.exe>>%systemdrive%\rapport.txt
)

if exist svchop.exe (
attrib -r -s -h svchop.exe 
del /a /f svchop.exe 
if NOT exist svchop.exe echo %syspath%\svchop.exe %sDel%>>%systemdrive%\rapport.txt
if exist svchop.exe echo %sError% %syspath%\svchop.exe>>%systemdrive%\rapport.txt
)

if exist svchosts.dll (
attrib -r -s -h svchosts.dll
del /a /f svchosts.dll
if NOT exist svchosts.dll echo %syspath%\svchosts.dll %sDel%>>%systemdrive%\rapport.txt
if exist svchosts.dll echo %sError% %syspath%\svchosts.dll>>%systemdrive%\rapport.txt
)

if exist svchosts.exe (
attrib -r -s -h svchosts.exe 
del /a /f svchosts.exe 
if NOT exist svchosts.exe echo %syspath%\svchosts.exe %sDel%>>%systemdrive%\rapport.txt
if exist svchosts.exe echo %sError% %syspath%\svchosts.exe>>%systemdrive%\rapport.txt
)

if exist svcnt.exe (
attrib -r -s -h svcnt.exe 
del /a /f svcnt.exe 
if NOT exist svcnt.exe echo %syspath%\svcnt.exe %sDel%>>%systemdrive%\rapport.txt
if exist svcnt.exe echo %sError% %syspath%\svcnt.exe>>%systemdrive%\rapport.txt
)

if exist svcnt32.exe (
attrib -r -s -h svcnt32.exe 
del /a /f svcnt32.exe 
if NOT exist svcnt32.exe echo %syspath%\svcnt32.exe %sDel%>>%systemdrive%\rapport.txt
if exist svcnt32.exe echo %sError% %syspath%\svcnt32.exe>>%systemdrive%\rapport.txt
)

if exist svcnva.exe (
attrib -r -s -h svcnva.exe 
del /a /f svcnva.exe 
if NOT exist svcnva.exe echo %syspath%\svcnva.exe %sDel%>>%systemdrive%\rapport.txt
if exist svcnva.exe echo %sError% %syspath%\svcnva.exe>>%systemdrive%\rapport.txt
)

if exist svshost.dll (
attrib -r -s -h svshost.dll 
del /a /f svshost.dll 
if NOT exist svshost.dll echo %syspath%\svshost.dll %sDel%>>%systemdrive%\rapport.txt
if exist svshost.dll echo %sError% %syspath%\svshost.dll>>%systemdrive%\rapport.txt
)

if exist svwhost.exe (
attrib -r -s -h svwhost.exe 
del /a /f svwhost.exe 
if NOT exist svwhost.exe echo %syspath%\svwhost.exe %sDel%>>%systemdrive%\rapport.txt
if exist svwhost.exe echo %sError% %syspath%\svwhost.exe>>%systemdrive%\rapport.txt
)

if exist symsvcsa.exe (
attrib -r -s -h symsvcsa.exe 
del /a /f symsvcsa.exe 
if NOT exist symsvcsa.exe echo %syspath%\symsvcsa.exe %sDel%>>%systemdrive%\rapport.txt
if exist symsvcsa.exe echo %sError% %syspath%\symsvcsa.exe>>%systemdrive%\rapport.txt
)

if exist sysbho.exe (
attrib -r -s -h sysbho.exe 
del /a /f sysbho.exe 
if NOT exist sysbho.exe echo %syspath%\sysbho.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysbho.exe echo %sError% %syspath%\sysbho.exe>>%systemdrive%\rapport.txt
)

if exist sysinit32z.exe (
attrib -r -s -h sysinit32z.exe 
del /a /f sysinit32z.exe 
if NOT exist sysinit32z.exe echo %syspath%\sysinit32z.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysinit32z.exe echo %sError% %syspath%\sysinit32z.exe>>%systemdrive%\rapport.txt
)

if exist sysjv32.exe (
attrib -r -s -h sysjv32.exe 
del /a /f sysjv32.exe 
if NOT exist sysjv32.exe echo %syspath%\sysjv32.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysjv32.exe echo %sError% %syspath%\sysjv32.exe>>%systemdrive%\rapport.txt
)

if exist sysmain.dll (
attrib -r -s -h sysmain.dll 
del /a /f sysmain.dll 
if NOT exist sysmain.dll echo %syspath%\sysmain.dll %sDel%>>%systemdrive%\rapport.txt
if exist sysmain.dll echo %sError% %syspath%\sysmain.dll>>%systemdrive%\rapport.txt
)

if exist sysvcs.exe (
attrib -r -s -h sysvcs.exe 
del /a /f sysvcs.exe 
if NOT exist sysvcs.exe echo %syspath%\sysvcs.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysvcs.exe echo %sError% %syspath%\sysvcs.exe>>%systemdrive%\rapport.txt
)

if exist sysvx.exe (
attrib -r -s -h sysvx.exe 
del /a /f sysvx.exe 
if NOT exist sysvx.exe echo %syspath%\sysvx.exe %sDel%>>%systemdrive%\rapport.txt
if exist sysvx.exe echo %sError% %syspath%\sysvx.exe>>%systemdrive%\rapport.txt
)

if exist sywsvcs.exe (
attrib -r -s -h sywsvcs.exe 
del /a /f sywsvcs.exe 
if NOT exist sywsvcs.exe echo %syspath%\sywsvcs.exe %sDel%>>%systemdrive%\rapport.txt
if exist sywsvcs.exe echo %sError% %syspath%\sywsvcs.exe>>%systemdrive%\rapport.txt
)

if exist syycum.dll (
attrib -r -s -h syycum.dll 
del /a /f syycum.dll 
if NOT exist syycum.dll echo %syspath%\syycum.dll %sDel%>>%systemdrive%\rapport.txt
if exist syycum.dll echo %sError% %syspath%\syycum.dll>>%systemdrive%\rapport.txt
)

if exist tahxqcj.dll (
attrib -r -s -h tahxqcj.dll 
del /a /f tahxqcj.dll 
if NOT exist tahxqcj.dll echo %syspath%\tahxqcj.dll %sDel%>>%systemdrive%\rapport.txt
if exist tahxqcj.dll echo %sError% %syspath%\tahxqcj.dll>>%systemdrive%\rapport.txt
)

if exist taras.exe (
attrib -r -s -h taras.exe 
del /a /f taras.exe 
if NOT exist taras.exe echo %syspath%\taras.exe %sDel%>>%systemdrive%\rapport.txt
if exist taras.exe echo %sError% %syspath%\taras.exe>>%systemdrive%\rapport.txt
)

if exist taskdir.dll (
attrib -r -s -h taskdir.dll
del /a /f taskdir.dll
if NOT exist taskdir.dll echo %syspath%\taskdir.dll %sDel%>>%systemdrive%\rapport.txt
if exist taskdir.dll echo %sError% %syspath%\taskdir.dll>>%systemdrive%\rapport.txt
)

if exist taskdir.exe (
attrib -r -s -h taskdir.exe
del /a /f taskdir.exe
if NOT exist taskdir.exe echo %syspath%\taskdir.exe %sDel%>>%systemdrive%\rapport.txt
if exist taskdir.exe echo %sError% %syspath%\taskdir.exe>>%systemdrive%\rapport.txt
)

if exist taskdir~.exe (
attrib -r -s -h taskdir~.exe
del /a /f taskdir~.exe
if NOT exist taskdir~.exe echo %syspath%\taskdir~.exe %sDel%>>%systemdrive%\rapport.txt
if exist taskdir~.exe echo %sError% %syspath%\taskdir~.exe>>%systemdrive%\rapport.txt
)

if exist tazth.dll (
attrib -r -s -h tazth.dll
del /a /f tazth.dll
if NOT exist tazth.dll echo %syspath%\tazth.dll %sDel%>>%systemdrive%\rapport.txt
if exist tazth.dll echo %sError% %syspath%\tazth.dll>>%systemdrive%\rapport.txt
)

if exist tcpipmon.exe (
attrib -r -s -h tcpipmon.exe 
del /a /f tcpipmon.exe 
if NOT exist tcpipmon.exe echo %syspath%\tcpipmon.exe %sDel%>>%systemdrive%\rapport.txt
if exist tcpipmon.exe echo %sError% %syspath%\tcpipmon.exe>>%systemdrive%\rapport.txt
)

if exist tcpservice2.exe (
attrib -r -s -h tcpservice2.exe 
del /a /f tcpservice2.exe 
if NOT exist tcpservice2.exe echo %syspath%\tcpservice2.exe %sDel%>>%systemdrive%\rapport.txt
if exist tcpservice2.exe echo %sError% %syspath%\tcpservice2.exe>>%systemdrive%\rapport.txt
)

if exist tczij.dll (
attrib -r -s -h tczij.dll
del /a /f tczij.dll
if NOT exist tczij.dll echo %syspath%\tczij.dll %sDel%>>%systemdrive%\rapport.txt
if exist tczij.dll echo %sError% %syspath%\tczij.dll>>%systemdrive%\rapport.txt
)

if exist tetriz3.exe (
attrib -r -s -h tetriz3.exe 
del /a /f tetriz3.exe 
if NOT exist tetriz3.exe echo %syspath%\tetriz3.exe %sDel%>>%systemdrive%\rapport.txt
if exist tetriz3.exe echo %sError% %syspath%\tetriz3.exe>>%systemdrive%\rapport.txt
)

if exist tkrsw.dll (
attrib -r -s -h tkrsw.dll
del /a /f tkrsw.dll
if NOT exist tkrsw.dll echo %syspath%\tkrsw.dll %sDel%>>%systemdrive%\rapport.txt
if exist tkrsw.dll echo %sError% %syspath%\tkrsw.dll>>%systemdrive%\rapport.txt
)

if exist TheMatrixHasYou.exe (
attrib -r -s -h TheMatrixHasYou.exe 
del /a /f TheMatrixHasYou.exe 
if NOT exist TheMatrixHasYou.exe echo %syspath%\TheMatrixHasYou.exe %sDel%>>%systemdrive%\rapport.txt
if exist TheMatrixHasYou.exe echo %sError% %syspath%\TheMatrixHasYou.exe>>%systemdrive%\rapport.txt
)

if exist thlwin32.dll (
attrib -r -s -h thlwin32.dll
del /a /f thlwin32.dll
if NOT exist thlwin32.dll echo %syspath%\thlwin32.dll %sDel%>>%systemdrive%\rapport.txt
if exist thlwin32.dll echo %sError% %syspath%\thlwin32.dll>>%systemdrive%\rapport.txt
)

if exist tiqmcx.dll (
attrib -r -s -h tiqmcx.dll
del /a /f tiqmcx.dll
if NOT exist tiqmcx.dll echo %syspath%\tiqmcx.dll %sDel%>>%systemdrive%\rapport.txt
if exist tiqmcx.dll echo %sError% %syspath%\tiqmcx.dll>>%systemdrive%\rapport.txt
)

if exist titiau.dll (
attrib -r -s -h titiau.dll
del /a /f titiau.dll
if NOT exist titiau.dll echo %syspath%\titiau.dll %sDel%>>%systemdrive%\rapport.txt
if exist titiau.dll echo %sError% %syspath%\titiau.dll>>%systemdrive%\rapport.txt
)

if exist tnvocyn.dll (
attrib -r -s -h tnvocyn.dll
del /a /f tnvocyn.dll
if NOT exist tnvocyn.dll echo %syspath%\tnvocyn.dll %sDel%>>%systemdrive%\rapport.txt
if exist tnvocyn.dll echo %sError% %syspath%\tnvocyn.dll>>%systemdrive%\rapport.txt
)

if exist tmxxxh.dll (
attrib -r -s -h tmxxxh.dll
del /a /f tmxxxh.dll
if NOT exist tmxxxh.dll echo %syspath%\tmxxxh.dll %sDel%>>%systemdrive%\rapport.txt
if exist tmxxxh.dll echo %sError% %syspath%\tmxxxh.dll>>%systemdrive%\rapport.txt
)

if exist tpedvf.dll (
attrib -r -s -h tpedvf.dll
del /a /f tpedvf.dll
if NOT exist tpedvf.dll echo %syspath%\tpedvf.dll %sDel%>>%systemdrive%\rapport.txt
if exist tpedvf.dll echo %sError% %syspath%\tpedvf.dll>>%systemdrive%\rapport.txt
)

if exist tqcwm.dll (
attrib -r -s -h tqcwm.dll
del /a /f tqcwm.dll
if NOT exist tqcwm.dll echo %syspath%\tqcwm.dll %sDel%>>%systemdrive%\rapport.txt
if exist tqcwm.dll echo %sError% %syspath%\tqcwm.dll>>%systemdrive%\rapport.txt
)

if exist trf32.dll (
attrib -r -s -h trf32.dll
del /a /f trf32.dll
if NOT exist trf32.dll echo %syspath%\trf32.dll %sDel%>>%systemdrive%\rapport.txt
if exist trf32.dll echo %sError% %syspath%\trf32.dll>>%systemdrive%\rapport.txt
)

if exist truetype.exe (
attrib -r -s -h truetype.exe 
del /a /f truetype.exe 
if NOT exist truetype.exe echo %syspath%\truetype.exe %sDel%>>%systemdrive%\rapport.txt
if exist truetype.exe echo %sError% %syspath%\truetype.exe>>%systemdrive%\rapport.txt
)

if exist ts.ico (
attrib -r -s -h ts.ico 
del /a /f ts.ico 
if NOT exist ts.ico echo %syspath%\ts.ico %sDel%>>%systemdrive%\rapport.txt
if exist ts.ico echo %sError% %syspath%\ts.ico>>%systemdrive%\rapport.txt
)

if exist tvomnc.dll (
attrib -r -s -h tvomnc.dll
del /a /f tvomnc.dll 
if NOT exist tvomnc.dll echo %syspath%\tvomnc.dll %sDel%>>%systemdrive%\rapport.txt
if exist tvomnc.dll echo %sError% %syspath%\tvomnc.dll>>%systemdrive%\rapport.txt
)

if exist twain32.dll (
attrib -r -s -h twain32.dll
del /a /f twain32.dll 
if NOT exist twain32.dll echo %syspath%\twain32.dll %sDel%>>%systemdrive%\rapport.txt
if exist twain32.dll echo %sError% %syspath%\twain32.dll>>%systemdrive%\rapport.txt
)

if exist txfdb32.dll (
attrib -r -s -h txfdb32.dll
del /a /f txfdb32.dll 
if NOT exist txfdb32.dll echo %syspath%\txfdb32.dll %sDel%>>%systemdrive%\rapport.txt
if exist txfdb32.dll echo %sError% %syspath%\txfdb32.dll>>%systemdrive%\rapport.txt
)

if exist ucbrrt.dll (
attrib -r -s -h ucbrrt.dll
del /a /f ucbrrt.dll 
if NOT exist ucbrrt.dll echo %syspath%\ucbrrt.dll %sDel%>>%systemdrive%\rapport.txt
if exist ucbrrt.dll echo %sError% %syspath%\ucbrrt.dll>>%systemdrive%\rapport.txt
)

if exist udpmod.dll (
attrib -r -s -h udpmod.dll
del /a /f udpmod.dll 
if NOT exist udpmod.dll echo %syspath%\udpmod.dll %sDel%>>%systemdrive%\rapport.txt
if exist udpmod.dll echo %sError% %syspath%\udpmod.dll>>%systemdrive%\rapport.txt
)

if exist ugofuq.dll (
attrib -r -s -h ugofuq.dll
del /a /f ugofuq.dll 
if NOT exist ugofuq.dll echo %syspath%\ugofuq.dll %sDel%>>%systemdrive%\rapport.txt
if exist ugofuq.dll echo %sError% %syspath%\ugofuq.dll>>%systemdrive%\rapport.txt
)

if exist uimcu.dll (
attrib -r -s -h uimcu.dll
del /a /f uimcu.dll 
if NOT exist uimcu.dll echo %syspath%\uimcu.dll %sDel%>>%systemdrive%\rapport.txt
if exist uimcu.dll echo %sError% %syspath%\uimcu.dll>>%systemdrive%\rapport.txt
)

if exist ulztc.dll (
attrib -r -s -h ulztc.dll
del /a /f ulztc.dll
if NOT exist ulztc.dll echo %syspath%\ulztc.dll %sDel%>>%systemdrive%\rapport.txt
if exist ulztc.dll echo %sError% %syspath%\ulztc.dll>>%systemdrive%\rapport.txt
)

if exist urroxtl.dll (
attrib -r -s -h urroxtl.dll
del /a /f urroxtl.dll
if NOT exist urroxtl.dll echo %syspath%\urroxtl.dll %sDel%>>%systemdrive%\rapport.txt
if exist urroxtl.dll echo %sError% %syspath%\urroxtl.dll>>%systemdrive%\rapport.txt
)

if exist users32.exe (
attrib -r -s -h users32.exe
del /a /f users32.exe
if NOT exist users32.exe echo %syspath%\users32.exe %sDel%>>%systemdrive%\rapport.txt
if exist users32.exe echo %sError% %syspath%\users32.exe>>%systemdrive%\rapport.txt
)

if exist vblhanf.dll (
attrib -r -s -h vblhanf.dll
del /a /f vblhanf.dll
if NOT exist vblhanf.dll echo %syspath%\vblhanf.dll %sDel%>>%systemdrive%\rapport.txt
if exist vblhanf.dll echo %sError% %syspath%\vblhanf.dll>>%systemdrive%\rapport.txt
)

if exist vcehaeb.dll (
attrib -r -s -h vcehaeb.dll
del /a /f vcehaeb.dll
if NOT exist vcehaeb.dll echo %syspath%\vcehaeb.dll %sDel%>>%systemdrive%\rapport.txt
if exist vcehaeb.dll echo %sError% %syspath%\vcehaeb.dll>>%systemdrive%\rapport.txt
)

if exist veklo.dll (
attrib -r -s -h veklo.dll
del /a /f veklo.dll
if NOT exist veklo.dll echo %syspath%\veklo.dll %sDel%>>%systemdrive%\rapport.txt
if exist veklo.dll echo %sError% %syspath%\veklo.dll>>%systemdrive%\rapport.txt
)

if exist vgibz.dll (
attrib -r -s -h vgibz.dll
del /a /f vgibz.dll
if NOT exist vgibz.dll echo %syspath%\vgibz.dll %sDel%>>%systemdrive%\rapport.txt
if exist vgibz.dll echo %sError% %syspath%\vgibz.dll>>%systemdrive%\rapport.txt
)

if exist vhywj.dll (
attrib -r -s -h vhywj.dll
del /a /f vhywj.dll
if NOT exist vhywj.dll echo %syspath%\vhywj.dll %sDel%>>%systemdrive%\rapport.txt
if exist vhywj.dll echo %sError% %syspath%\vhywj.dll>>%systemdrive%\rapport.txt
)

if exist viagra.ico (
attrib -r -s -h viagra.ico
del /a /f viagra.ico
if NOT exist viagra.ico echo %syspath%\viagra.ico %sDel%>>%systemdrive%\rapport.txt
if exist viagra.ico echo %sError% %syspath%\viagra.ico>>%systemdrive%\rapport.txt
)

if exist viruxz.dll (
attrib -r -s -h viruxz.dll
del /a /f viruxz.dll
if NOT exist viruxz.dll echo %syspath%\viruxz.dll %sDel%>>%systemdrive%\rapport.txt
if exist viruxz.dll echo %sError% %syspath%\viruxz.dll>>%systemdrive%\rapport.txt
)

if exist viuaoq.dll (
attrib -r -s -h viuaoq.dll
del /a /f viuaoq.dll
if NOT exist viuaoq.dll echo %syspath%\viuaoq.dll %sDel%>>%systemdrive%\rapport.txt
if exist viuaoq.dll echo %sError% %syspath%\viuaoq.dll>>%systemdrive%\rapport.txt
)

if exist viwpzla.dll (
attrib -r -s -h viwpzla.dll
del /a /f viwpzla.dll
if NOT exist viwpzla.dll echo %syspath%\viwpzla.dll %sDel%>>%systemdrive%\rapport.txt
if exist viwpzla.dll echo %sError% %syspath%\viwpzla.dll>>%systemdrive%\rapport.txt
)

if exist vjxwnn.dll (
attrib -r -s -h vjxwnn.dll
del /a /f vjxwnn.dll
if NOT exist vjxwnn.dll echo %syspath%\vjxwnn.dll %sDel%>>%systemdrive%\rapport.txt
if exist vjxwnn.dll echo %sError% %syspath%\vjxwnn.dll>>%systemdrive%\rapport.txt
)

if exist vophqmn.dll (
attrib -r -s -h vophqmn.dll
del /a /f vophqmn.dll
if NOT exist vophqmn.dll echo %syspath%\vophqmn.dll %sDel%>>%systemdrive%\rapport.txt
if exist vophqmn.dll echo %sError% %syspath%\vophqmn.dll>>%systemdrive%\rapport.txt
)

if exist vpccw.dll (
attrib -r -s -h vpccw.dll
del /a /f vpccw.dll
if NOT exist vpccw.dll echo %syspath%\vpccw.dll %sDel%>>%systemdrive%\rapport.txt
if exist vpccw.dll echo %sError% %syspath%\vpccw.dll>>%systemdrive%\rapport.txt
)

if exist vpxnk.dll (
attrib -r -s -h vpxnk.dll
del /a /f vpxnk.dll
if NOT exist vpxnk.dll echo %syspath%\vpxnk.dll %sDel%>>%systemdrive%\rapport.txt
if exist vpxnk.dll echo %sError% %syspath%\vpxnk.dll>>%systemdrive%\rapport.txt
)

if exist vtr???.dll (
attrib -r -s -h vtr???.dll
del /a /f vtr???.dll
if NOT exist vtr???.dll echo %syspath%\vtr???.dll %sDel%>>%systemdrive%\rapport.txt
if exist vtr???.dll echo %sError% %syspath%\vtr???.dll>>%systemdrive%\rapport.txt
)

if exist vwfps.dll (
attrib -r -s -h vwfps.dll
del /a /f vwfps.dll
if NOT exist vwfps.dll echo %syspath%\vwfps.dll %sDel%>>%systemdrive%\rapport.txt
if exist vwfps.dll echo %sError% %syspath%\vwfps.dll>>%systemdrive%\rapport.txt
)

if exist vwlummc.dll (
attrib -r -s -h vwlummc.dll
del /a /f vwlummc.dll
if NOT exist vwlummc.dll echo %syspath%\vwlummc.dll %sDel%>>%systemdrive%\rapport.txt
if exist vwlummc.dll echo %sError% %syspath%\vwlummc.dll>>%systemdrive%\rapport.txt
)

if exist vxgame?.exe (
attrib -r -s -h vxgame?.exe
del /a /f /q vxgame?.exe
if NOT exist vxgame?.exe echo %syspath%\vxgame?.exe %sDel%>>%systemdrive%\rapport.txt
if exist vxgame?.exe echo %sError% %syspath%\vxgame?.exe>>%systemdrive%\rapport.txt
)

if exist vxgame?.exe????.exe.bak (
attrib -r -s -h vxgame?.exe????.exe.bak
del /a /f /q vxgame?.exe????.exe.bak
if NOT exist vxgame?.exe????.exe.bak echo %syspath%\vxgame?.exe????.exe.bak %sDel%>>%systemdrive%\rapport.txt
if exist vxgame?.exe????.exe.bak echo %sError% %syspath%\vxgame?.exe????.exe.bak>>%systemdrive%\rapport.txt
)

if exist vxgame?.exe????.exe (
attrib -r -s -h vxgame?.exe????.exe
del /a /f /q vxgame?.exe????.exe
if NOT exist vxgame?.exe????.exe echo %syspath%\vxgame?.exe????.exe %sDel%>>%systemdrive%\rapport.txt
if exist vxgame?.exe????.exe echo %sError% %syspath%\vxgame?.exe????.exe>>%systemdrive%\rapport.txt
)

if exist vxgamet?.exe (
attrib -r -s -h vxgamet?.exe
del /a /f /q vxgamet?.exe
if NOT exist vxgamet?.exe echo %syspath%\vxgamet?.exe %sDel%>>%systemdrive%\rapport.txt
if exist vxgamet?.exe echo %sError% %syspath%\vxgamet?.exe>>%systemdrive%\rapport.txt
)

if exist vxgamet?.exe?????.exe (
attrib -r -s -h vxgamet?.exe?????.exe
del /a /f /q vxgamet?.exe?????.exe
if NOT exist vxgamet?.exe?????.exe echo %syspath%\vxgamet?.exe?????.exe %sDel%>>%systemdrive%\rapport.txt
if exist vxgamet?.exe?????.exe echo %sError% %syspath%\vxgamet?.exe?????.exe>>%systemdrive%\rapport.txt
)

if exist vxh8jkdq?.exe (
attrib -r -s -h vxh8jkdq?.exe
del /a /f /q vxh8jkdq?.exe
if NOT exist vxh8jkdq?.exe echo %syspath%\vxh8jkdq?.exe %sDel%>>%systemdrive%\rapport.txt
if exist vxh8jkdq?.exe echo %sError% %syspath%\vxh8jkdq?.exe>>%systemdrive%\rapport.txt
)

if exist w8673492.exe (
attrib -r -s -h w8673492.exe
del /a /f w8673492.exe
if NOT exist w8673492.exe echo %syspath%\w8673492.exe %sDel%>>%systemdrive%\rapport.txt
if exist w8673492.exe echo %sError% %syspath%\w8673492.exe>>%systemdrive%\rapport.txt
)

if exist wbeconm.dll (
attrib -r -s -h wbeconm.dll
del /a /f wbeconm.dll
if NOT exist wbeconm.dll echo %syspath%\wbeconm.dll %sDel%>>%systemdrive%\rapport.txt
if exist wbeconm.dll echo %sError% %syspath%\wbeconm.dll>>%systemdrive%\rapport.txt
)

if exist web.exe (
attrib -r -s -h web.exe
del /a /f web.exe
if NOT exist web.exe echo %syspath%\web.exe %sDel%>>%systemdrive%\rapport.txt
if exist web.exe echo %sError% %syspath%\web.exe>>%systemdrive%\rapport.txt
)

if exist wfcof.dll (
attrib -r -s -h wfcof.dll
del /a /f wfcof.dll
if NOT exist wfcof.dll echo %syspath%\wfcof.dll %sDel%>>%systemdrive%\rapport.txt
if exist wfcof.dll echo %sError% %syspath%\wfcof.dll>>%systemdrive%\rapport.txt
)

if exist wfkduei.dll (
attrib -r -s -h wfkduei.dll
del /a /f wfkduei.dll
if NOT exist wfkduei.dll echo %syspath%\wfkduei.dll %sDel%>>%systemdrive%\rapport.txt
if exist wfkduei.dll echo %sError% %syspath%\wfkduei.dll>>%systemdrive%\rapport.txt
)

if exist whitevx.lst (
attrib -r -s -h whitevx.lst
del /a /f whitevx.lst
if NOT exist whitevx.lst echo %syspath%\whitevx.lst %sDel%>>%systemdrive%\rapport.txt
if exist whitevx.lst echo %sError% %syspath%\whitevx.lst>>%systemdrive%\rapport.txt
)

if exist wiatwain.dll (
attrib -r -s -h wiatwain.dll
del /a /f wiatwain.dll
if NOT exist wiatwain.dll echo %syspath%\wiatwain.dll %sDel%>>%systemdrive%\rapport.txt
if exist wiatwain.dll echo %sError% %syspath%\wiatwain.dll>>%systemdrive%\rapport.txt
)

if exist win64.exe (
attrib -r -s -h win64.exe
del /a /f win64.exe
if NOT exist win64.exe echo %syspath%\win64.exe %sDel%>>%systemdrive%\rapport.txt
if exist win64.exe echo %sError% %syspath%\win64.exe>>%systemdrive%\rapport.txt
)

if exist win32hp.dll (
attrib -r -s -h win32hp.dll
del /a /f win32hp.dll
if NOT exist win32hp.dll echo %syspath%\win32hp.dll %sDel%>>%systemdrive%\rapport.txt
if exist win32hp.dll echo %sError% %syspath%\win32hp.dll>>%systemdrive%\rapport.txt
)

if exist winapi32.dll (
attrib -r -s -h winapi32.dll
del /a /f winapi32.dll
if NOT exist winapi32.dll echo %syspath%\winapi32.dll %sDel%>>%systemdrive%\rapport.txt
if exist winapi32.dll echo %sError% %syspath%\winapi32.dll>>%systemdrive%\rapport.txt
)

if exist WinAvX.exe (
attrib -r -s -h WinAvX.exe
del /a /f WinAvX.exe
if NOT exist WinAvX.exe echo %syspath%\WinAvX.exe %sDel%>>%systemdrive%\rapport.txt
if exist WinAvX.exe echo %sError% %syspath%\WinAvX.exe>>%systemdrive%\rapport.txt
)

if exist WinAvXX.exe (
attrib -r -s -h WinAvXX.exe
del /a /f WinAvXX.exe
if NOT exist WinAvXX.exe echo %syspath%\WinAvXX.exe %sDel%>>%systemdrive%\rapport.txt
if exist WinAvXX.exe echo %sError% %syspath%\WinAvXX.exe>>%systemdrive%\rapport.txt
)

if exist winbl32.dll (
attrib -r -s -h winbl32.dll
del /a /f winbl32.dll
if NOT exist winbl32.dll echo %syspath%\winbl32.dll %sDel%>>%systemdrive%\rapport.txt
if exist winbl32.dll echo %sError% %syspath%\winbl32.dll>>%systemdrive%\rapport.txt
)

if exist winblsrv.dll (
attrib -r -s -h winblsrv.dll
del /a /f winblsrv.dll
if NOT exist winblsrv.dll echo %syspath%\winblsrv.dll %sDel%>>%systemdrive%\rapport.txt
if exist winblsrv.dll echo %sError% %syspath%\winblsrv.dll>>%systemdrive%\rapport.txt
)

if exist winbrume.dll (
attrib -r -s -h winbrume.dll
del /a /f winbrume.dll
if NOT exist winbrume.dll echo %syspath%\winbrume.dll %sDel%>>%systemdrive%\rapport.txt
if exist winbrume.dll echo %sError% %syspath%\winbrume.dll>>%systemdrive%\rapport.txt
)

if exist winlfl32.dll (
attrib -r -s -h winlfl32.dll
del /a /f winlfl32.dll
if NOT exist winlfl32.dll echo %syspath%\winlfl32.dll %sDel%>>%systemdrive%\rapport.txt
if exist winlfl32.dll echo %sError% %syspath%\winlfl32.dll>>%systemdrive%\rapport.txt
)

if exist wincrt.exe (
attrib -r -s -h wincrt.exe
del /a /f wincrt.exe
if NOT exist wincrt.exe echo %syspath%\wincrt.exe %sDel%>>%systemdrive%\rapport.txt
if exist wincrt.exe echo %sError% %syspath%\wincrt.exe>>%systemdrive%\rapport.txt
)

if exist windesktop.dll (
attrib -r -s -h windesktop.dll
del /a /f windesktop.dll
if NOT exist windesktop.dll echo %syspath%\windesktop.dll %sDel%>>%systemdrive%\rapport.txt
if exist windesktop.dll echo %sError% %syspath%\windesktop.dll>>%systemdrive%\rapport.txt
)

if exist windesktop.exe (
attrib -r -s -h windesktop.exe
del /a /f windesktop.exe
if NOT exist windesktop.exe echo %syspath%\windesktop.exe %sDel%>>%systemdrive%\rapport.txt
if exist windesktop.exe echo %sError% %syspath%\windesktop.exe>>%systemdrive%\rapport.txt
)

if exist winflash.dll (
attrib -r -s -h winflash.dll
del /a /f winflash.dll
if NOT exist winflash.dll echo %syspath%\winflash.dll %sDel%>>%systemdrive%\rapport.txt
if exist winflash.dll echo %sError% %syspath%\winflash.dll>>%systemdrive%\rapport.txt
)

if exist wininet.exe (
attrib -r -s -h wininet.exe
del /a /f wininet.exe
if NOT exist wininet.exe echo %syspath%\wininet.exe %sDel%>>%systemdrive%\rapport.txt
if exist wininet.exe echo %sError% %syspath%\wininet.exe>>%systemdrive%\rapport.txt
)

if exist winldra.exe (
attrib -r -s -h winldra.exe
del /a /f winldra.exe
if NOT exist winldra.exe echo %syspath%\winldra.exe %sDel%>>%systemdrive%\rapport.txt
if exist winldra.exe echo %sError% %syspath%\winldra.exe>>%systemdrive%\rapport.txt
)

if exist winmuse.exe (
attrib -r -s -h winmuse.exe
del /a /f winmuse.exe
if NOT exist winmuse.exe echo %syspath%\winmuse.exe %sDel%>>%systemdrive%\rapport.txt
if exist winmuse.exe echo %sError% %syspath%\winmuse.exe>>%systemdrive%\rapport.txt
)

if exist winnook.exe (
attrib -r -s -h winnook.exe
del /a /f winnook.exe
if NOT exist winnook.exe echo %syspath%\winnook.exe %sDel%>>%systemdrive%\rapport.txt
if exist winnook.exe echo %sError% %syspath%\winnook.exe>>%systemdrive%\rapport.txt
)

if exist winsrv32.exe (
attrib -r -s -h winsrv32.exe
del /a /f winsrv32.exe
if NOT exist winsrv32.exe echo %syspath%\winsrv32.exe %sDel%>>%systemdrive%\rapport.txt
if exist winsrv32.exe echo %sError% %syspath%\winsrv32.exe>>%systemdrive%\rapport.txt
)

if exist winstyle2.dll (
attrib -r -s -h winstyle2.dll
del /a /f winstyle2.dll  
if NOT exist winstyle2.dll echo %syspath%\winstyle2.dll %sDel%>>%systemdrive%\rapport.txt
if exist winstyle2.dll echo %sError% %syspath%\winstyle2.dll>>%systemdrive%\rapport.txt
)

if exist winstyle3.dll (
attrib -r -s -h winstyle3.dll
del /a /f winstyle3.dll  
if NOT exist winstyle3.dll echo %syspath%\winstyle3.dll %sDel%>>%systemdrive%\rapport.txt
if exist winstyle3.dll echo %sError% %syspath%\winstyle3.dll>>%systemdrive%\rapport.txt
)

if exist winstyle32.dll (
attrib -r -s -h winstyle32.dll
del /a /f winstyle32.dll  
if NOT exist winstyle32.dll echo %syspath%\winstyle32.dll %sDel%>>%systemdrive%\rapport.txt
if exist winstyle32.dll echo %sError% %syspath%\winstyle32.dll>>%systemdrive%\rapport.txt
)

if exist winntify.exe (
attrib -r -s -h winntify.exe
del /a /f winntify.exe
if NOT exist winntify.exe echo %syspath%\winntify.exe %sDel%>>%systemdrive%\rapport.txt
if exist winntify.exe echo %sError% %syspath%\winntify.exe>>%systemdrive%\rapport.txt
)

if exist wldr.dll (
attrib -r -s -h wldr.dll
del /a /f wldr.dll  
if NOT exist wldr.dll echo %syspath%\wldr.dll %sDel%>>%systemdrive%\rapport.txt
if exist wldr.dll echo %sError% %syspath%\wldr.dll>>%systemdrive%\rapport.txt
)

if exist wp.bmp (
attrib -r -s -h wp.bmp  
del /a /f wp.bmp  
if NOT exist wp.bmp echo %syspath%\wp.bmp %sDel%>>%systemdrive%\rapport.txt
if exist wp.bmp echo %sError% %syspath%\wp.bmp>>%systemdrive%\rapport.txt
)

if exist wpchz.dll (
attrib -r -s -h wpchz.dll  
del /a /f wpchz.dll  
if NOT exist wpchz.dll echo %syspath%\wpchz.dll %sDel%>>%systemdrive%\rapport.txt
if exist wpchz.dll echo %sError% %syspath%\wpchz.dll>>%systemdrive%\rapport.txt
)

if exist wppp.html (
attrib -r -s -h wppp.html  
del /a /f wppp.html  
if NOT exist wppp.html echo %syspath%\wppp.html %sDel%>>%systemdrive%\rapport.txt
if exist wppp.html echo %sError% %syspath%\wppp.html>>%systemdrive%\rapport.txt
)

if exist wstart.dll (
attrib -r -s -h wstart.dll  
del /a /f wstart.dll  
if NOT exist wstart.dll echo %syspath%\wstart.dll %sDel%>>%systemdrive%\rapport.txt
if exist wstart.dll echo %sError% %syspath%\wstart.dll>>%systemdrive%\rapport.txt
)

if exist wuwbxp.dll (
attrib -r -s -h wuwbxp.dll  
del /a /f wuwbxp.dll  
if NOT exist wuwbxp.dll echo %syspath%\wuwbxp.dll %sDel%>>%systemdrive%\rapport.txt
if exist wuwbxp.dll echo %sError% %syspath%\wuwbxp.dll>>%systemdrive%\rapport.txt
)

if exist wzhtjqo.dll (
attrib -r -s -h wzhtjqo.dll  
del /a /f wzhtjqo.dll  
if NOT exist wzhtjqo.dll echo %syspath%\wzhtjqo.dll %sDel%>>%systemdrive%\rapport.txt
if exist wzhtjqo.dll echo %sError% %syspath%\wzhtjqo.dll>>%systemdrive%\rapport.txt
)

if exist x.exe (
attrib -r -s -h x.exe
del /a /f x.exe
if NOT exist x.exe echo %syspath%\x.exe %sDel%>>%systemdrive%\rapport.txt
if exist x.exe echo %sError% %syspath%\x.exe>>%systemdrive%\rapport.txt
)

if exist xedasn.dll (
attrib -r -s -h xedasn.dll  
del /a /f xedasn.dll  
if NOT exist xedasn.dll echo %syspath%\xedasn.dll %sDel%>>%systemdrive%\rapport.txt
if exist xedasn.dll echo %sError% %syspath%\xedasn.dll>>%systemdrive%\rapport.txt
)

if exist xenadot.dll (
attrib -r -s -h xenadot.dll  
del /a /f xenadot.dll  
if NOT exist xenadot.dll echo %syspath%\xenadot.dll %sDel%>>%systemdrive%\rapport.txt
if exist xenadot.dll echo %sError% %syspath%\xenadot.dll>>%systemdrive%\rapport.txt
)

if exist xikor.dll (
attrib -r -s -h xikor.dll  
del /a /f xikor.dll  
if NOT exist xikor.dll echo %syspath%\xikor.dll %sDel%>>%systemdrive%\rapport.txt
if exist xikor.dll echo %sError% %syspath%\xikor.dll>>%systemdrive%\rapport.txt
)

if exist xkrdk.dll (
attrib -r -s -h xkrdk.dll  
del /a /f xkrdk.dll  
if NOT exist xkrdk.dll echo %syspath%\xkrdk.dll %sDel%>>%systemdrive%\rapport.txt
if exist xkrdk.dll echo %sError% %syspath%\xkrdk.dll>>%systemdrive%\rapport.txt
)

if exist xnvaogd.dll (
attrib -r -s -h xnvaogd.dll  
del /a /f xnvaogd.dll  
if NOT exist xnvaogd.dll echo %syspath%\xnvaogd.dll %sDel%>>%systemdrive%\rapport.txt
if exist xnvaogd.dll echo %sError% %syspath%\xnvaogd.dll>>%systemdrive%\rapport.txt
)

if exist xpuupdate.exe (
attrib -r -s -h xpuupdate.exe
del /a /f xpuupdate.exe
if NOT exist xpuupdate.exe echo %syspath%\xpuupdate.exe %sDel%>>%systemdrive%\rapport.txt
if exist xpuupdate.exe echo %sError% %syspath%\xpuupdate.exe>>%systemdrive%\rapport.txt
)

if exist xqpauzx.dll (
attrib -r -s -h xqpauzx.dll
del /a /f xqpauzx.dll
if NOT exist xqpauzx.dll echo %syspath%\xqpauzx.dll %sDel%>>%systemdrive%\rapport.txt
if exist xqpauzx.dll echo %sError% %syspath%\xqpauzx.dll>>%systemdrive%\rapport.txt
)

if exist xtgwjrm.dll (
attrib -r -s -h xtgwjrm.dll  
del /a /f xtgwjrm.dll  
if NOT exist xtgwjrm.dll echo %syspath%\xtgwjrm.dll %sDel%>>%systemdrive%\rapport.txt
if exist xtgwjrm.dll echo %sError% %syspath%\xtgwjrm.dll>>%systemdrive%\rapport.txt
)

if exist xtsyynm.dll (
attrib -r -s -h xtsyynm.dll  
del /a /f xtsyynm.dll  
if NOT exist xtsyynm.dll echo %syspath%\xtsyynm.dll %sDel%>>%systemdrive%\rapport.txt
if exist xtsyynm.dll echo %sError% %syspath%\xtsyynm.dll>>%systemdrive%\rapport.txt
)

if exist xuefh.dll (
attrib -r -s -h xuefh.dll  
del /a /f xuefh.dll  
if NOT exist xuefh.dll echo %syspath%\xuefh.dll %sDel%>>%systemdrive%\rapport.txt
if exist xuefh.dll echo %sError% %syspath%\xuefh.dll>>%systemdrive%\rapport.txt
)

if exist xuoce.dll (
attrib -r -s -h xuoce.dll  
del /a /f xuoce.dll  
if NOT exist xuoce.dll echo %syspath%\xuoce.dll %sDel%>>%systemdrive%\rapport.txt
if exist xuoce.dll echo %sError% %syspath%\xuoce.dll>>%systemdrive%\rapport.txt
)

if exist xxfgmy.dll (
attrib -r -s -h xxfgmy.dll  
del /a /f xxfgmy.dll  
if NOT exist xxfgmy.dll echo %syspath%\xxfgmy.dll %sDel%>>%systemdrive%\rapport.txt
if exist xxfgmy.dll echo %sError% %syspath%\xxfgmy.dll>>%systemdrive%\rapport.txt
)

if exist yaemu.exe (
attrib -r -s -h yaemu.exe
del /a /f yaemu.exe
if NOT exist yaemu.exe echo %syspath%\yaemu.exe %sDel%>>%systemdrive%\rapport.txt
if exist yaemu.exe echo %sError% %syspath%\yaemu.exe>>%systemdrive%\rapport.txt
)

if exist yephk.dll (
attrib -r -s -h yephk.dll
del /a /f yephk.dll
if NOT exist yephk.dll echo %syspath%\yephk.dll %sDel%>>%systemdrive%\rapport.txt
if exist yephk.dll echo %sError% %syspath%\yephk.dll>>%systemdrive%\rapport.txt
)

if exist yesgnhr.dll (
attrib -r -s -h yesgnhr.dll
del /a /f yesgnhr.dll
if NOT exist yesgnhr.dll echo %syspath%\yesgnhr.dll %sDel%>>%systemdrive%\rapport.txt
if exist yesgnhr.dll echo %sError% %syspath%\yesgnhr.dll>>%systemdrive%\rapport.txt
)

if exist yfysupa.dll (
attrib -r -s -h yfysupa.dll
del /a /f yfysupa.dll
if NOT exist yfysupa.dll echo %syspath%\yfysupa.dll %sDel%>>%systemdrive%\rapport.txt
if exist yfysupa.dll echo %sError% %syspath%\yfysupa.dll>>%systemdrive%\rapport.txt
)

if exist ygjun.dll (
attrib -r -s -h ygjun.dll
del /a /f ygjun.dll
if NOT exist ygjun.dll echo %syspath%\ygjun.dll %sDel%>>%systemdrive%\rapport.txt
if exist ygjun.dll echo %sError% %syspath%\ygjun.dll>>%systemdrive%\rapport.txt
)

if exist yhbdupd.dll (
attrib -r -s -h yhbdupd.dll
del /a /f yhbdupd.dll
if NOT exist yhbdupd.dll echo %syspath%\yhbdupd.dll %sDel%>>%systemdrive%\rapport.txt
if exist yhbdupd.dll echo %sError% %syspath%\yhbdupd.dll>>%systemdrive%\rapport.txt
)

if exist yhjbbzf.dll (
attrib -r -s -h yhjbbzf.dll
del /a /f yhjbbzf.dll
if NOT exist yhjbbzf.dll echo %syspath%\yhjbbzf.dll %sDel%>>%systemdrive%\rapport.txt
if exist yhjbbzf.dll echo %sError% %syspath%\yhjbbzf.dll>>%systemdrive%\rapport.txt
)

if exist yosdjh.dll (
attrib -r -s -h yosdjh.dll
del /a /f yosdjh.dll
if NOT exist yosdjh.dll echo %syspath%\yosdjh.dll %sDel%>>%systemdrive%\rapport.txt
if exist yosdjh.dll echo %sError% %syspath%\yosdjh.dll>>%systemdrive%\rapport.txt
)

if exist yronl.dll (
attrib -r -s -h yronl.dll
del /a /f yronl.dll
if NOT exist yronl.dll echo %syspath%\yronl.dll %sDel%>>%systemdrive%\rapport.txt
if exist yronl.dll echo %sError% %syspath%\yronl.dll>>%systemdrive%\rapport.txt
)

if exist yuspej.dll (
attrib -r -s -h yuspej.dll
del /a /f yuspej.dll
if NOT exist yuspej.dll echo %syspath%\yuspej.dll %sDel%>>%systemdrive%\rapport.txt
if exist yuspej.dll echo %sError% %syspath%\yuspej.dll>>%systemdrive%\rapport.txt
)

if exist yvvdj.dll (
attrib -r -s -h yvvdj.dll
del /a /f yvvdj.dll
if NOT exist yvvdj.dll echo %syspath%\yvvdj.dll %sDel%>>%systemdrive%\rapport.txt
if exist yvvdj.dll echo %sError% %syspath%\yvvdj.dll>>%systemdrive%\rapport.txt
)

if exist ywbicim.dll (
attrib -r -s -h ywbicim.dll
del /a /f ywbicim.dll
if NOT exist ywbicim.dll echo %syspath%\ywbicim.dll %sDel%>>%systemdrive%\rapport.txt
if exist ywbicim.dll echo %sError% %syspath%\ywbicim.dll>>%systemdrive%\rapport.txt
)

if exist z11.exe (
attrib -r -s -h z16.exe
del /a /f z11.exe  
if NOT exist z11.exe echo %syspath%\z11.exe %sDel%>>%systemdrive%\rapport.txt
if exist z11.exe echo %sError% %syspath%\z11.exe>>%systemdrive%\rapport.txt
)

if exist z12.exe (
attrib -r -s -h z12.exe
del /a /f z12.exe  
if NOT exist z12.exe echo %syspath%\z12.exe %sDel%>>%systemdrive%\rapport.txt
if exist z12.exe echo %sError% %syspath%\z12.exe>>%systemdrive%\rapport.txt
)

if exist z13.exe (
attrib -r -s -h z13.exe
del /a /f z13.exe  
if NOT exist z13.exe echo %syspath%\z13.exe %sDel%>>%systemdrive%\rapport.txt
if exist z13.exe echo %sError% %syspath%\z13.exe>>%systemdrive%\rapport.txt
)

if exist z14.exe (
attrib -r -s -h z14.exe
del /a /f z14.exe  
if NOT exist z14.exe echo %syspath%\z14.exe %sDel%>>%systemdrive%\rapport.txt
if exist z14.exe echo %sError% %syspath%\z14.exe>>%systemdrive%\rapport.txt
)

if exist z15.exe (
attrib -r -s -h z15.exe
del /a /f z15.exe  
if NOT exist z15.exe echo %syspath%\z15.exe %sDel%>>%systemdrive%\rapport.txt
if exist z15.exe echo %sError% %syspath%\z15.exe>>%systemdrive%\rapport.txt
)

if exist z16.exe (
attrib -r -s -h z16.exe
del /a /f z16.exe  
if NOT exist z16.exe echo %syspath%\z16.exe %sDel%>>%systemdrive%\rapport.txt
if exist z16.exe echo %sError% %syspath%\z16.exe>>%systemdrive%\rapport.txt
)

if exist zdwii.dll (
attrib -r -s -h zdwii.dll
del /a /f zdwii.dll
if NOT exist zdwii.dll echo %syspath%\zdwii.dll %sDel%>>%systemdrive%\rapport.txt
if exist zdwii.dll echo %sError% %syspath%\zdwii.dll>>%systemdrive%\rapport.txt
)

if exist zkpssqa.dll (
attrib -r -s -h zkpssqa.dll
del /a /f zkpssqa.dll
if NOT exist zkpssqa.dll echo %syspath%\zkpssqa.dll %sDel%>>%systemdrive%\rapport.txt
if exist zkpssqa.dll echo %sError% %syspath%\zkpssqa.dll>>%systemdrive%\rapport.txt
)

if exist zlara.dll (
attrib -r -s -h zlara.dll
del /a /f zlara.dll
if NOT exist zlara.dll echo %syspath%\zlara.dll %sDel%>>%systemdrive%\rapport.txt
if exist zlara.dll echo %sError% %syspath%\zlara.dll>>%systemdrive%\rapport.txt
)

if exist zlbw.dll (
attrib -r -s -h zlbw.dll
del /a /f zlbw.dll  
if NOT exist zlbw.dll echo %syspath%\zlbw.dll %sDel%>>%systemdrive%\rapport.txt
if exist zlbw.dll echo %sError% %syspath%\zlbw.dll>>%systemdrive%\rapport.txt
)

if exist zolker011.dll (
attrib -r -s -h zolker011.dll
del /a /f zolker011.dll  
if NOT exist zolker011.dll echo %syspath%\zolker011.dll %sDel%>>%systemdrive%\rapport.txt
if exist zolker011.dll echo %sError% %syspath%\zolker011.dll>>%systemdrive%\rapport.txt
)

if exist zpeolvh.dll (
attrib -r -s -h zpeolvh.dll
del /a /f zpeolvh.dll  
if NOT exist zpeolvh.dll echo %syspath%\zpeolvh.dll %sDel%>>%systemdrive%\rapport.txt
if exist zpeolvh.dll echo %sError% %syspath%\zpeolvh.dll>>%systemdrive%\rapport.txt
)

if exist zphnok.dll (
attrib -r -s -h zphnok.dll
del /a /f zphnok.dll  
if NOT exist zphnok.dll echo %syspath%\zphnok.dll %sDel%>>%systemdrive%\rapport.txt
if exist zphnok.dll echo %sError% %syspath%\zphnok.dll>>%systemdrive%\rapport.txt
)

if exist zpuwriz.dll (
attrib -r -s -h zpuwriz.dll
del /a /f zpuwriz.dll  
if NOT exist zpuwriz.dll echo %syspath%\zpuwriz.dll %sDel%>>%systemdrive%\rapport.txt
if exist zpuwriz.dll echo %sError% %syspath%\zpuwriz.dll>>%systemdrive%\rapport.txt
)

if exist ztoolb011.dll (
attrib -r -s -h ztoolb011.dll
del /a /f ztoolb011.dll  
if NOT exist ztoolb011.dll echo %syspath%\ztoolb011.dll %sDel%>>%systemdrive%\rapport.txt
if exist ztoolb011.dll echo %sError% %syspath%\ztoolb011.dll>>%systemdrive%\rapport.txt
)

if exist ztoolbar.bmp (
attrib -r -s -h ztoolbar.bmp
del /a /f ztoolbar.bmp  
if NOT exist ztoolbar.bmp echo %syspath%\ztoolbar.bmp %sDel%>>%systemdrive%\rapport.txt
if exist ztoolbar.bmp echo %sError% %syspath%\ztoolbar.bmp>>%systemdrive%\rapport.txt
)

if exist ztoolbar.xml (
attrib -r -s -h ztoolbar.xml
del /a /f ztoolbar.xml  
if NOT exist ztoolbar.xml echo %syspath%\ztoolbar.xml %sDel%>>%systemdrive%\rapport.txt
if exist ztoolbar.xml echo %sError% %syspath%\ztoolbar.xml>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__intmon.exe (
attrib -r -s -h __delete_on_reboot__intmon.exe  
del /a /f __delete_on_reboot__intmon.exe  
if NOT exist __delete_on_reboot__intmon.exe echo %syspath%\__delete_on_reboot__intmon.exe %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__intmon.exe echo %sError% %syspath%\__delete_on_reboot__intmon.exe>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__intel32.exe (
attrib -r -s -h __delete_on_reboot__intel32.exe  
del /a /f __delete_on_reboot__intel32.exe  
if NOT exist __delete_on_reboot__intel32.exe echo %syspath%\__delete_on_reboot__intel32.exe %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__intel32.exe echo %sError% %syspath%\__delete_on_reboot__intel32.exe>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__intell32.exe (
attrib -r -s -h __delete_on_reboot__intell32.exe  
del /a /f __delete_on_reboot__intell32.exe  
if NOT exist __delete_on_reboot__intell32.exe echo %syspath%\__delete_on_reboot__intell32.exe %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__intell32.exe echo %sError% %syspath%\__delete_on_reboot__intell32.exe>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__OLEADM.dll (
attrib -r -s -h __delete_on_reboot__OLEADM.dll  
del /a /f __delete_on_reboot__OLEADM.dll  
if NOT exist __delete_on_reboot__OLEADM.dll echo %syspath%\__delete_on_reboot__OLEADM.dll %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__OLEADM.dll echo %sError% %syspath%\__delete_on_reboot__OLEADM.dll>>%systemdrive%\rapport.txt
)

if exist __delete_on_reboot__stickrep.dll (
attrib -r -s -h __delete_on_reboot__stickrep.dll  
del /a /f __delete_on_reboot__stickrep.dll  
if NOT exist __delete_on_reboot__stickrep.dll echo %syspath%\__delete_on_reboot__stickrep.dll %sDel%>>%systemdrive%\rapport.txt
if exist __delete_on_reboot__stickrep.dll echo %sError% %syspath%\__delete_on_reboot__stickrep.dll>>%systemdrive%\rapport.txt
)







IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
swreg export "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" tmp.reg
type tmp.reg | find /i "CTDrive">tmp.txt
for /f "tokens=* delims=" %%a in (tmp.txt) do echo %%a>tmp2.txt
if exist tmp2.txt goto FixDelim_CTDrive
goto FixEnd_CTDrive

:FixDelim_CTDrive
for /f "tokens=2 delims==" %%a in (tmp2.txt) do echo %%a>tmp.txt

echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-1)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-5)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.dll

IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt

if exist "%file%" (
attrib -r -s -h "%file%"  
del /a /f "%file%"  
if NOT exist "%file%" echo %syspath%\%file% %sDel%>>%systemdrive%\rapport.txt
if exist "%file%" echo %sError% %syspath%\%file%>>%systemdrive%\rapport.txt
)

set file=

:FixEnd_CTDrive










IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
swreg export "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" tmp.reg
type tmp.reg | find /i "CTDrive">tmp.txt
for /f "tokens=* delims=" %%a in (tmp.txt) do echo %%a>tmp2.txt
if exist tmp2.txt goto FixDelim_CTDrive_2
goto FixEnd_CTDrive_2

:FixDelim_CTDrive_2
for /f "tokens=2 delims==" %%a in (tmp2.txt) do echo %%a>tmp.txt

echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-14)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-13)>>unquote.vbs
echo    ligne=Right(ligne,6)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.dll

IF EXIST tmp.reg del tmp.reg
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt

if exist "%file%" (
attrib -r -s -h "%file%"  
del /a /f "%file%"  
if NOT exist "%file%" echo %syspath%\%file% %sDel%>>%systemdrive%\rapport.txt
if exist "%file%" echo %sError% %syspath%\%file%>>%systemdrive%\rapport.txt
)

set file=

:FixEnd_CTDrive_2









if exist "%syspath%\1024" (
attrib -r -h %syspath%\1024\*.*
del /a /f /q %syspath%\1024\*.*
RD /s /q "%syspath%\1024"
IF NOT exist "%syspath%\1024" echo %syspath%\1024\ %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\1024" echo %sError% %syspath%\1024>>%systemdrive%\rapport.txt
)


if exist "%syspath%\drivers\.protected" (
attrib -r -s -h "%syspath%\drivers\.protected"  
del /a /f "%syspath%\drivers\.protected"  
if NOT exist "%syspath%\drivers\.protected" echo %syspath%\drivers\.protected %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\drivers\.protected" echo %sError% %syspath%\drivers\.protected>>%systemdrive%\rapport.txt
)

if exist %syspath%\drivers\hesvc.sys (
attrib -r -s -h %syspath%\drivers\hesvc.sys  
del /a /f %syspath%\drivers\hesvc.sys  
if NOT exist %syspath%\drivers\hesvc.sys echo %syspath%\drivers\hesvc.sys %sDel%>>%systemdrive%\rapport.txt
if exist %syspath%\drivers\hesvc.sys echo %sError% %syspath%\drivers\hesvc.sys>>%systemdrive%\rapport.txt
)

if exist %syspath%\drivers\svchost.exe (
attrib -r -s -h %syspath%\drivers\svchost.exe  
del /a /f %syspath%\drivers\svchost.exe  
if NOT exist %syspath%\drivers\svchost.exe echo %syspath%\drivers\svchost.exe %sDel%>>%systemdrive%\rapport.txt
if exist %syspath%\drivers\svchost.exe echo %sError% %syspath%\drivers\svchost.exe>>%systemdrive%\rapport.txt
)

if exist "%syspath%\components\flx?.dll" (
attrib -r -s -h "%syspath%\components\flx?.dll" 
del /a /f "%syspath%\components\flx?.dll"  
if NOT exist "%syspath%\components\flx?.dll" echo %syspath%\components\flx?.dll %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\components\flx?.dll" echo %sError% %syspath%\components\flx?.dll>>%systemdrive%\rapport.txt
)

if exist "%syspath%\components\flx??.dll" (
attrib -r -s -h "%syspath%\components\flx??.dll" 
del /a /f "%syspath%\components\flx??.dll"  
if NOT exist "%syspath%\components\flx??.dll" echo %syspath%\components\flx??.dll %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\components\flx??.dll" echo %sError% %syspath%\components\flx??.dll>>%systemdrive%\rapport.txt
)

if exist "%syspath%\components\flx???.dll" (
attrib -r -s -h "%syspath%\components\flx???.dll" 
del /a /f "%syspath%\components\flx???.dll"  
if NOT exist "%syspath%\components\flx???.dll" echo %syspath%\components\flx???.dll %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\components\flx???.dll" echo %sError% %syspath%\components\flx???.dll>>%systemdrive%\rapport.txt
)







if exist "%syspath%\drives" (
attrib -r -h %syspath%\drives\*.*
del /a /f /q %syspath%\drives\*.*
RD /s /q "%syspath%\drives"
IF NOT exist "%syspath%\drives" echo %syspath%\drives\ %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\drives" echo %sError% %syspath%\drives>>%systemdrive%\rapport.txt
)

if exist "%syspath%\msdrives" (
attrib -r -h %syspath%\msdrives\*.*
del /a /f /q %syspath%\msdrives\*.*
RD /s /q "%syspath%\msdrives"
IF NOT exist "%syspath%\msdrives" echo %syspath%\msdrives\ %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\msdrives" echo %sError% %syspath%\msdrives>>%systemdrive%\rapport.txt
)

if exist "%syspath%\policies" (
attrib -r -h %syspath%\policies\*.*
del /a /f /q %syspath%\policies\*.*
RD /s /q "%syspath%\policies"
IF NOT exist "%syspath%\policies" echo %syspath%\policies\ %sDel%>>%systemdrive%\rapport.txt
if exist "%syspath%\policies" echo %sError% %syspath%\policies>>%systemdrive%\rapport.txt
)








echo Option Explicit>GetValue.vbs
echo.>>GetValue.vbs
echo Dim Shell>>GetValue.vbs
echo Dim KeyPath>>GetValue.vbs
echo Dim ObjFileSystem>>GetValue.vbs
echo Dim ObjOutputFile>>GetValue.vbs
echo Dim ObjRegExp>>GetValue.vbs
echo Dim File>>GetValue.vbs
echo Dim TmpVar>>GetValue.vbs
echo Dim Var>>GetValue.vbs
echo.>>GetValue.vbs

echo On Error Resume Next>>GetValue.vbs

echo.>>GetValue.vbs
echo KeyPath = "HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0D4C7057-EAD2-44C6-AD18-9092905F28F1}\InprocServer32\">>GetValue.vbs
echo File = "SetValue.bat">>GetValue.vbs
echo.>>GetValue.vbs
echo Set Shell = WScript.CreateObject("WScript.Shell")>>GetValue.vbs
echo Set ObjFileSystem = CreateObject("Scripting.fileSystemObject")>>GetValue.vbs
echo Set ObjOutputFile = ObjFileSystem.CreateTextFile(File, TRUE)>>GetValue.vbs
echo Set ObjRegExp = New RegExp>>GetValue.vbs
echo.>>GetValue.vbs

echo.>>GetValue.vbs
echo TmpVar = "Dummy">>GetValue.vbs
echo TmpVar = Shell.RegRead (KeyPath ^& "")>>GetValue.vbs

echo Var = "Set TmpVal=" ^& TmpVar>>GetValue.vbs
echo ObjOutputFile.WriteLine(Var)>>GetValue.vbs
echo.>>GetValue.vbs

cscript //I //nologo GetValue.vbs

if exist GetValue.vbs del GetValue.vbs

Set TmpVal="Dummy"

if exist SetValue.bat (
Call SetValue.bat
del SetValue.bat
)

if exist "%TmpVal%" (
attrib -r -s -h "%TmpVal%"
del /a /f "%TmpVal%"  
if NOT exist "%TmpVal%" echo %TmpVal% %sDel%>>%systemdrive%\rapport.txt
if exist "%TmpVal%" echo %sError% %TmpVal%>>%systemdrive%\rapport.txt
)

Set TmpVal=


popd





if NOT exist %syspath%\LogFiles goto suiteDelUserProfile

pushd %syspath%\LogFiles

if exist A5281300.so (
attrib -r -s -h A5281300.so  
del /a /f A5281300.so  
if NOT exist A5281300.so echo %syspath%\LogFiles\A5281300.so %sDel%>>%systemdrive%\rapport.txt
if exist A5281300.so echo %sError% %syspath%\LogFiles\A5281300.so>>%systemdrive%\rapport.txt
)

if exist T54111925.so (
attrib -r -s -h T54111925.so  
del /a /f T54111925.so  
if NOT exist T54111925.so echo %syspath%\LogFiles\T54111925.so %sDel%>>%systemdrive%\rapport.txt
if exist T54111925.so echo %sError% %syspath%\LogFiles\T54111925.so>>%systemdrive%\rapport.txt
)

if exist H53131712.so (
attrib -r -s -h H53131712.so  
del /a /f H53131712.so  
if NOT exist H53131712.so echo %syspath%\LogFiles\H53131712.so %sDel%>>%systemdrive%\rapport.txt
if exist H53131712.so echo %sError% %syspath%\LogFiles\H53131712.so>>%systemdrive%\rapport.txt
)

if exist A54102200.so (
attrib -r -s -h A54102200.so  
del /a /f A54102200.so  
if NOT exist A54102200.so echo %syspath%\LogFiles\A54102200.so %sDel%>>%systemdrive%\rapport.txt
if exist A54102200.so echo %sError% %syspath%\LogFiles\A54102200.so>>%systemdrive%\rapport.txt
)

if exist S53252000.so (
attrib -r -s -h S53252000.so  
del /a /f S53252000.so  
if NOT exist S53252000.so echo %syspath%\LogFiles\S53252000.so %sDel%>>%systemdrive%\rapport.txt
if exist S53252000.so echo %sError% %syspath%\LogFiles\S53252000.so>>%systemdrive%\rapport.txt
)

if exist A04111925.so (
attrib -r -s -h A04111925.so  
del /a /f A04111925.so  
if NOT exist A04111925.so echo %syspath%\LogFiles\A04111925.so %sDel%>>%systemdrive%\rapport.txt
if exist A04111925.so echo %sError% %syspath%\LogFiles\A04111925.so>>%systemdrive%\rapport.txt
)

if exist M54111925.so (
attrib -r -s -h M54111925.so  
del /a /f M54111925.so  
if NOT exist M54111925.so echo %syspath%\LogFiles\M54111925.so %sDel%>>%systemdrive%\rapport.txt
if exist M54111925.so echo %sError% %syspath%\LogFiles\M54111925.so>>%systemdrive%\rapport.txt
)

if exist P54111925.so (
attrib -r -s -h P54111925.so  
del /a /f P54111925.so  
if NOT exist P54111925.so echo %syspath%\LogFiles\P54111925.so %sDel%>>%systemdrive%\rapport.txt
if exist P54111925.so echo %sError% %syspath%\LogFiles\P54111925.so>>%systemdrive%\rapport.txt
)




popd




:suiteDelUserProfile

if exist "%userprofile%\processes.txt" (
attrib -r -s -h "%userprofile%\processes.txt"  
del /a /f "%userprofile%\processes.txt"  
if NOT exist "%userprofile%\processes.txt" echo %userprofile%\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\processes.txt" echo %sError% %userprofile%\processes.txt>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\svchost.exe" (
attrib -r -s -h "%userprofile%\svchost.exe"  
del /a /f "%userprofile%\svchost.exe"  
if NOT exist "%userprofile%\svchost.exe" echo %userprofile%\svchost.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\svchost.exe" echo %sError% %userprofile%\svchost.exe>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\xxfep.exe" (
attrib -r -s -h "%userprofile%\xxfep.exe"  
del /a /f "%userprofile%\xxfep.exe"  
if NOT exist "%userprofile%\xxfep.exe" echo %userprofile%\xxfep.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\xxfep.exe" echo %sError% %userprofile%\xxfep.exe>>%systemdrive%\rapport.txt
)




if exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" (
RD /s /q "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner"
IF NOT ERRORLEVEL 1 echo %HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner %sDel%>>%systemdrive%\rapport.txt
)



pushd %userprofile%\Application Data

if exist "%userprofile%\Application Data\Install.dat" (
attrib -r -s -h "%userprofile%\Application Data\Install.dat"  
del /a /f "%userprofile%\Application Data\Install.dat"  
if NOT exist "%userprofile%\Application Data\Install.dat" echo %userprofile%\Application Data\Install.dat %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Install.dat" echo %sError% %userprofile%\Application Data\Install.dat>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AdwareSheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AlfaCleaner.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Antispyware Soldier.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermeans 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVermins 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntiVerminser 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\AntivirusGolden 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\ContraVirus 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipe 4.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 5.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiped 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwaresWipeds 5.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWipePro 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\MalwareWiper 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Malware-Wipe 4.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyCrush 5.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyDawn 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyFalcon 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spy-Heal 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeal 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyHeals 2.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 3.9.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyLocked 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpyQuake2.com 2.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpySoldier.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareKnight.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareLocked 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareQuake.com 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareSheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\SpywareStrike 2.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Spyware Soft Stop.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\TitanShield Antispyware.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\vb 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBlast v5.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Burst 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurst 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBurster 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusBursters 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Virus-Bursters 6.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk" (
attrib -r -s -h "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk"  
del /a /f "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk"  
if NOT exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk" echo %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk" echo %sError% %userprofile%\Application Data\Microsoft\Internet Explorer\Quick Launch\VirusProtectPro 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\AlfaCleaner" (
RD /s /q "%userprofile%\Application Data\AlfaCleaner"
IF NOT ERRORLEVEL 1 echo %userprofile%\Application Data\AlfaCleaner\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\AlfaCleaner" echo %sError% %userprofile%\Application Data\AlfaCleaner>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\AdProtect NoSpam" (
RD /s /q "%userprofile%\Application Data\AdProtect NoSpam"
IF NOT ERRORLEVEL 1 echo %userprofile%\Application Data\AdProtect NoSpam\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\AdProtect NoSpam" echo %sError% %userprofile%\Application Data\AdProtect NoSpam>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\PSGuard.com" (
RD /s /q "%userprofile%\Application Data\PSGuard.com"
IF NOT ERRORLEVEL 1 echo %userprofile%\Application Data\PSGuard.com\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\PSGuard.com" echo %sError% %userprofile%\Application Data\PSGuard.com>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Shudder Global Limited" (
RD /s /q "%userprofile%\Application Data\Shudder Global Limited"
IF NOT ERRORLEVEL 1 echo %userprofile%\Application Data\Shudder Global Limited\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Shudder Global Limited" echo %sError% %userprofile%\Application Data\Shudder Global Limited>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Application Data\Skinux" (
RD /s /q "%userprofile%\Application Data\Skinux"
IF NOT ERRORLEVEL 1 echo %userprofile%\Application Data\Skinux\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Application Data\Skinux" echo %sError% %userprofile%\Application Data\Skinux>>%systemdrive%\rapport.txt
)








if exist "%userprofile%\Local Settings\Application Data\977efcdb.exe" (
attrib -r -s -h "%userprofile%\Local Settings\Application Data\977efcdb.exe"
del /a /f "%userprofile%\Local Settings\Application Data\977efcdb.exe"
if NOT exist "%userprofile%\Local Settings\Application Data\977efcdb.exe" echo %userprofile%\Local Settings\Application Data\977efcdb.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\977efcdb.exe" echo %sError% %userprofile%\Local Settings\Application Data\977efcdb.exe>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" (
RD /s /q "%userprofile%\Local Settings\Application Data\AdwareSheriff"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\AdwareSheriff\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\AntispywareSoldier" (
RD /s /q "%userprofile%\Local Settings\Application Data\AntispywareSoldier"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\AntispywareSoldier\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\TitanShield" (
RD /s /q "%userprofile%\Local Settings\Application Data\TitanShield"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\TitanShield\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\SpySoldier" (
RD /s /q "%userprofile%\Local Settings\Application Data\SpySoldier"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\SpySoldier\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\SpySoldier" echo %sError% %userprofile%\Local Settings\Application Data\SpySoldier>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\SpywareKnight" (
RD /s /q "%userprofile%\Local Settings\Application Data\SpywareKnight"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\SpywareKnight\ %sDel%>>%systemdrive%\rapport.txt
if exist "%userprofile%\Local Settings\Application Data\SpywareKnight" echo %sError% %userprofile%\Local Settings\Application Data\SpywareKnight>>%systemdrive%\rapport.txt
)

if exist "%userprofile%\Local Settings\Application Data\SpywareSheriff" (
RD /s /q "%userprofile%\Local Settings\Application Data\SpywareSheriff"
IF NOT ERRORLEVEL 1 echo %userprofile%\Local Settings\Application Data\SpywareSheriff\ %sDel%>>%systemdrive%\rapport.txt
)






popd






if exist "%startm%\AntiVermeans 2.1.lnk" (
attrib -r -s -h "%startm%\AntiVermeans 2.1.lnk"
del /a /f "%startm%\AntiVermeans 2.1.lnk"
if NOT exist "%startm%\AntiVermeans 2.1.lnk" echo %startm%\AntiVermeans 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\AntiVermeans 2.1.lnk" echo %sError% %startm%\AntiVermeans 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\AntiVermins 2.1.lnk" (
attrib -r -s -h "%startm%\AntiVermins 2.1.lnk"
del /a /f "%startm%\AntiVermins 2.1.lnk"
if NOT exist "%startm%\AntiVermins 2.1.lnk" echo %startm%\AntiVermins 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\AntiVermins 2.1.lnk" echo %sError% %startm%\AntiVermins 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\AntiVerminser 2.1.lnk" (
attrib -r -s -h "%startm%\AntiVerminser 2.1.lnk"
del /a /f "%startm%\AntiVerminser 2.1.lnk"
if NOT exist "%startm%\AntiVerminser 2.1.lnk" echo %startm%\AntiVerminser 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\AntiVerminser 2.1.lnk" echo %sError% %startm%\AntiVerminser 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\AntivirusGolden 3.3.lnk" (
attrib -r -s -h "%startm%\AntivirusGolden 3.3.lnk"
del /a /f "%startm%\AntivirusGolden 3.3.lnk"
if NOT exist "%startm%\AntivirusGolden 3.3.lnk" echo %startm%\AntivirusGolden 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\AntivirusGolden 3.3.lnk" echo %sError% %startm%\AntivirusGolden 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\ContraVirus 2.0.lnk" (
attrib -r -s -h "%startm%\ContraVirus 2.0.lnk"
del /a /f "%startm%\ContraVirus 2.0.lnk"
if NOT exist "%startm%\ContraVirus 2.0.lnk" echo %startm%\ContraVirus 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\ContraVirus 2.0.lnk" echo %sError% %startm%\ContraVirus 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWipe 4.1.lnk" (
attrib -r -s -h "%startm%\MalwareWipe 4.1.lnk"
del /a /f "%startm%\MalwareWipe 4.1.lnk"
if NOT exist "%startm%\MalwareWipe 4.1.lnk" echo %startm%\MalwareWipe 4.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWipe 4.1.lnk" echo %sError% %startm%\MalwareWipe 4.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWipe 4.3.lnk" (
attrib -r -s -h "%startm%\MalwareWipe 4.3.lnk"
del /a /f "%startm%\MalwareWipe 4.3.lnk"
if NOT exist "%startm%\MalwareWipe 4.3.lnk" echo %startm%\MalwareWipe 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWipe 4.3.lnk" echo %sError% %startm%\MalwareWipe 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWiped 5.2.lnk" (
attrib -r -s -h "%startm%\MalwareWiped 5.2.lnk"
del /a /f "%startm%\MalwareWiped 5.2.lnk"
if NOT exist "%startm%\MalwareWiped 5.2.lnk" echo %startm%\MalwareWiped 5.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWiped 5.2.lnk" echo %sError% %startm%\MalwareWiped 5.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWiped 6.1.lnk" (
attrib -r -s -h "%startm%\MalwareWiped 6.1.lnk"
del /a /f "%startm%\MalwareWiped 6.1.lnk"
if NOT exist "%startm%\MalwareWiped 6.1.lnk" echo %startm%\MalwareWiped 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWiped 6.1.lnk" echo %sError% %startm%\MalwareWiped 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwaresWipeds 5.3.lnk" (
attrib -r -s -h "%startm%\MalwaresWipeds 5.3.lnk"
del /a /f "%startm%\MalwaresWipeds 5.3.lnk"
if NOT exist "%startm%\MalwaresWipeds 5.3.lnk" echo %startm%\MalwaresWipeds 5.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwaresWipeds 5.3.lnk" echo %sError% %startm%\MalwaresWipeds 5.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWipePro 4.3.lnk" (
attrib -r -s -h "%startm%\MalwareWipePro 4.3.lnk"
del /a /f "%startm%\MalwareWipePro 4.3.lnk"
if NOT exist "%startm%\MalwareWipePro 4.3.lnk" echo %startm%\MalwareWipePro 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWipePro 4.3.lnk" echo %sError% %startm%\MalwareWipePro 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\MalwareWiper 4.3.lnk" (
attrib -r -s -h "%startm%\MalwareWiper 4.3.lnk"
del /a /f "%startm%\MalwareWiper 4.3.lnk"
if NOT exist "%startm%\MalwareWiper 4.3.lnk" echo %startm%\MalwareWiper 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\MalwareWiper 4.3.lnk" echo %sError% %startm%\MalwareWiper 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\Malware-Wipe 4.2.lnk" (
attrib -r -s -h "%startm%\Malware-Wipe 4.2.lnk"
del /a /f "%startm%\Malware-Wipe 4.2.lnk"
if NOT exist "%startm%\Malware-Wipe 4.2.lnk" echo %startm%\Malware-Wipe 4.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\Malware-Wipe 4.2.lnk" echo %sError% %startm%\Malware-Wipe 4.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyCrush 3.1.lnk" (
attrib -r -s -h "%startm%\SpyCrush 3.1.lnk"
del /a /f "%startm%\SpyCrush 3.1.lnk"
if NOT exist "%startm%\SpyCrush 3.1.lnk" echo %startm%\SpyCrush 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyCrush 3.1.lnk" echo %sError% %startm%\SpyCrush 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyCrush 5.1.lnk" (
attrib -r -s -h "%startm%\SpyCrush 5.1.lnk"
del /a /f "%startm%\SpyCrush 5.1.lnk"
if NOT exist "%startm%\SpyCrush 5.1.lnk" echo %startm%\SpyCrush 5.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyCrush 5.1.lnk" echo %sError% %startm%\SpyCrush 5.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyDawn 3.1.lnk" (
attrib -r -s -h "%startm%\SpyDawn 3.1.lnk"
del /a /f "%startm%\SpyDawn 3.1.lnk"
if NOT exist "%startm%\SpyDawn 3.1.lnk" echo %startm%\SpyDawn 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyDawn 3.1.lnk" echo %sError% %startm%\SpyDawn 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyAxe 3.0.lnk" (
attrib -r -s -h "%startm%\SpyAxe 3.0.lnk"
del /a /f "%startm%\SpyAxe 3.0.lnk"
if NOT exist "%startm%\SpyAxe 3.0.lnk" echo %startm%\SpyAxe 3.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyAxe 3.0.lnk" echo %sError% %startm%\SpyAxe 3.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyFalcon 2.0.lnk" (
attrib -r -s -h "%startm%\SpyFalcon 2.0.lnk"
del /a /f "%startm%\SpyFalcon 2.0.lnk"
if NOT exist "%startm%\SpyFalcon 2.0.lnk" echo %startm%\SpyFalcon 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyFalcon 2.0.lnk" echo %sError% %startm%\SpyFalcon 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyFalcon 3.1.lnk" (
attrib -r -s -h "%startm%\SpyFalcon 3.1.lnk"
del /a /f "%startm%\SpyFalcon 3.1.lnk"
if NOT exist "%startm%\SpyFalcon 3.1.lnk" echo %startm%\SpyFalcon 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyFalcon 3.1.lnk" echo %sError% %startm%\SpyFalcon 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\Spy-Heal 2.1.lnk" (
attrib -r -s -h "%startm%\Spy-Heal 2.1.lnk"
del /a /f "%startm%\Spy-Heal 2.1.lnk"
if NOT exist "%startm%\Spy-Heal 2.1.lnk" echo %startm%\Spy-Heal 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\Spy-Heal 2.1.lnk" echo %sError% %startm%\Spy-Heal 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyHeal 2.1.lnk" (
attrib -r -s -h "%startm%\SpyHeal 2.1.lnk"
del /a /f "%startm%\SpyHeal 2.1.lnk"
if NOT exist "%startm%\SpyHeal 2.1.lnk" echo %startm%\SpyHeal 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyHeal 2.1.lnk" echo %sError% %startm%\SpyHeal 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyHeals 2.3.lnk" (
attrib -r -s -h "%startm%\SpyHeals 2.3.lnk"
del /a /f "%startm%\SpyHeals 2.3.lnk"
if NOT exist "%startm%\SpyHeals 2.3.lnk" echo %startm%\SpyHeals 2.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyHeals 2.3.lnk" echo %sError% %startm%\SpyHeals 2.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 3.1.lnk" (
attrib -r -s -h "%startm%\SpyLocked 3.1.lnk"
del /a /f "%startm%\SpyLocked 3.1.lnk"
if NOT exist "%startm%\SpyLocked 3.1.lnk" echo %startm%\SpyLocked 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 3.1.lnk" echo %sError% %startm%\SpyLocked 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 3.6.lnk" (
attrib -r -s -h "%startm%\SpyLocked 3.6.lnk"
del /a /f "%startm%\SpyLocked 3.6.lnk"
if NOT exist "%startm%\SpyLocked 3.6.lnk" echo %startm%\SpyLocked 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 3.6.lnk" echo %sError% %startm%\SpyLocked 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 3.7.lnk" (
attrib -r -s -h "%startm%\SpyLocked 3.7.lnk"
del /a /f "%startm%\SpyLocked 3.7.lnk"
if NOT exist "%startm%\SpyLocked 3.7.lnk" echo %startm%\SpyLocked 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 3.7.lnk" echo %sError% %startm%\SpyLocked 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 3.9.lnk" (
attrib -r -s -h "%startm%\SpyLocked 3.9.lnk"
del /a /f "%startm%\SpyLocked 3.9.lnk"
if NOT exist "%startm%\SpyLocked 3.9.lnk" echo %startm%\SpyLocked 3.9.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 3.9.lnk" echo %sError% %startm%\SpyLocked 3.9.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 4.0.lnk" (
attrib -r -s -h "%startm%\SpyLocked 4.0.lnk"
del /a /f "%startm%\SpyLocked 4.0.lnk"
if NOT exist "%startm%\SpyLocked 4.0.lnk" echo %startm%\SpyLocked 4.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 4.0.lnk" echo %sError% %startm%\SpyLocked 4.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 4.1.lnk" (
attrib -r -s -h "%startm%\SpyLocked 4.1.lnk"
del /a /f "%startm%\SpyLocked 4.1.lnk"
if NOT exist "%startm%\SpyLocked 4.1.lnk" echo %startm%\SpyLocked 4.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 4.1.lnk" echo %sError% %startm%\SpyLocked 4.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyLocked 4.3.lnk" (
attrib -r -s -h "%startm%\SpyLocked 4.3.lnk"
del /a /f "%startm%\SpyLocked 4.3.lnk"
if NOT exist "%startm%\SpyLocked 4.3.lnk" echo %startm%\SpyLocked 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyLocked 4.3.lnk" echo %sError% %startm%\SpyLocked 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpyQuake2.com 2.3.lnk" (
attrib -r -s -h "%startm%\SpyQuake2.com 2.3.lnk"
del /a /f "%startm%\SpyQuake2.com 2.3.lnk"
if NOT exist "%startm%\SpyQuake2.com 2.3.lnk" echo %startm%\SpyQuake2.com 2.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpyQuake2.com 2.3.lnk" echo %sError% %startm%\SpyQuake2.com 2.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareLocked 3.2.lnk" (
attrib -r -s -h "%startm%\SpywareLocked 3.2.lnk"
del /a /f "%startm%\SpywareLocked 3.2.lnk"
if NOT exist "%startm%\SpywareLocked 3.2.lnk" echo %startm%\SpywareLocked 3.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareLocked 3.2.lnk" echo %sError% %startm%\SpywareLocked 3.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareLocked 3.3.lnk" (
attrib -r -s -h "%startm%\SpywareLocked 3.3.lnk"
del /a /f "%startm%\SpywareLocked 3.3.lnk"
if NOT exist "%startm%\SpywareLocked 3.3.lnk" echo %startm%\SpywareLocked 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareLocked 3.3.lnk" echo %sError% %startm%\SpywareLocked 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareLocked 3.4.lnk" (
attrib -r -s -h "%startm%\SpywareLocked 3.4.lnk"
del /a /f "%startm%\SpywareLocked 3.4.lnk"
if NOT exist "%startm%\SpywareLocked 3.4.lnk" echo %startm%\SpywareLocked 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareLocked 3.4.lnk" echo %sError% %startm%\SpywareLocked 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareLocked 3.5.lnk" (
attrib -r -s -h "%startm%\SpywareLocked 3.5.lnk"
del /a /f "%startm%\SpywareLocked 3.5.lnk"
if NOT exist "%startm%\SpywareLocked 3.5.lnk" echo %startm%\SpywareLocked 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareLocked 3.5.lnk" echo %sError% %startm%\SpywareLocked 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareQuake 2.0.lnk" (
attrib -r -s -h "%startm%\SpywareQuake 2.0.lnk"
del /a /f "%startm%\SpywareQuake 2.0.lnk"
if NOT exist "%startm%\SpywareQuake 2.0.lnk" echo %startm%\SpywareQuake 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareQuake 2.0.lnk" echo %sError% %startm%\SpywareQuake 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareQuake.com 2.1.lnk" (
attrib -r -s -h "%startm%\SpywareQuake.com 2.1.lnk"
del /a /f "%startm%\SpywareQuake.com 2.1.lnk"
if NOT exist "%startm%\SpywareQuake.com 2.1.lnk" echo %startm%\SpywareQuake.com 2.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareQuake.com 2.1.lnk" echo %sError% %startm%\SpywareQuake.com 2.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\SpywareStrike 2.5.lnk" (
attrib -r -s -h "%startm%\SpywareStrike 2.5.lnk"
del /a /f "%startm%\SpywareStrike 2.5.lnk"
if NOT exist "%startm%\SpywareStrike 2.5.lnk" echo %startm%\SpywareStrike 2.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\SpywareStrike 2.5.lnk" echo %sError% %startm%\SpywareStrike 2.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\vb 6.1.lnk" (
attrib -r -s -h "%startm%\vb 6.1.lnk"
del /a /f "%startm%\vb 6.1.lnk"
if NOT exist "%startm%\vb 6.1.lnk" echo %startm%\vb 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\vb 6.1.lnk" echo %sError% %startm%\vb 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusBlast v5.0.lnk" (
attrib -r -s -h "%startm%\VirusBlast v5.0.lnk"
del /a /f "%startm%\VirusBlast v5.0.lnk"
if NOT exist "%startm%\VirusBlast v5.0.lnk" echo %startm%\VirusBlast v5.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusBlast v5.0.lnk" echo %sError% %startm%\VirusBlast v5.0.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\Virus-Burst 6.1.lnk" (
attrib -r -s -h "%startm%\Virus-Burst 6.1.lnk"
del /a /f "%startm%\Virus-Burst 6.1.lnk"
if NOT exist "%startm%\Virus-Burst 6.1.lnk" echo %startm%\Virus-Burst 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\Virus-Burst 6.1.lnk" echo %sError% %startm%\Virus-Burst 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusBurst 6.1.lnk" (
attrib -r -s -h "%startm%\VirusBurst 6.1.lnk"
del /a /f "%startm%\VirusBurst 6.1.lnk"
if NOT exist "%startm%\VirusBurst 6.1.lnk" echo %startm%\VirusBurst 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusBurst 6.1.lnk" echo %sError% %startm%\VirusBurst 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusBurster 6.2.lnk" (
attrib -r -s -h "%startm%\VirusBurster 6.2.lnk"
del /a /f "%startm%\VirusBurster 6.2.lnk"
if NOT exist "%startm%\VirusBurster 6.2.lnk" echo %startm%\VirusBurster 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusBurster 6.2.lnk" echo %sError% %startm%\VirusBurster 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusBursters 6.2.lnk" (
attrib -r -s -h "%startm%\VirusBursters 6.2.lnk"
del /a /f "%startm%\VirusBursters 6.2.lnk"
if NOT exist "%startm%\VirusBursters 6.2.lnk" echo %startm%\VirusBursters 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusBursters 6.2.lnk" echo %sError% %startm%\VirusBursters 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\Virus-Bursters 6.2.lnk" (
attrib -r -s -h "%startm%\Virus-Bursters 6.2.lnk"
del /a /f "%startm%\Virus-Bursters 6.2.lnk"
if NOT exist "%startm%\Virus-Bursters 6.2.lnk" echo %startm%\Virus-Bursters 6.2.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\Virus-Bursters 6.2.lnk" echo %sError% %startm%\Virus-Bursters 6.2.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\Virus-Bursters 6.3.lnk" (
attrib -r -s -h "%startm%\Virus-Bursters 6.3.lnk"
del /a /f "%startm%\Virus-Bursters 6.3.lnk"
if NOT exist "%startm%\Virus-Bursters 6.3.lnk" echo %startm%\Virus-Bursters 6.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\Virus-Bursters 6.3.lnk" echo %sError% %startm%\Virus-Bursters 6.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusProtectPro 3.3.lnk" (
attrib -r -s -h "%startm%\VirusProtectPro 3.3.lnk"
del /a /f "%startm%\VirusProtectPro 3.3.lnk"
if NOT exist "%startm%\VirusProtectPro 3.3.lnk" echo %startm%\VirusProtectPro 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusProtectPro 3.3.lnk" echo %sError% %startm%\VirusProtectPro 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusProtectPro 3.4.lnk" (
attrib -r -s -h "%startm%\VirusProtectPro 3.4.lnk"
del /a /f "%startm%\VirusProtectPro 3.4.lnk"
if NOT exist "%startm%\VirusProtectPro 3.4.lnk" echo %startm%\VirusProtectPro 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusProtectPro 3.4.lnk" echo %sError% %startm%\VirusProtectPro 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusProtectPro 3.5.lnk" (
attrib -r -s -h "%startm%\VirusProtectPro 3.5.lnk"
del /a /f "%startm%\VirusProtectPro 3.5.lnk"
if NOT exist "%startm%\VirusProtectPro 3.5.lnk" echo %startm%\VirusProtectPro 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusProtectPro 3.5.lnk" echo %sError% %startm%\VirusProtectPro 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusProtectPro 3.6.lnk" (
attrib -r -s -h "%startm%\VirusProtectPro 3.6.lnk"
del /a /f "%startm%\VirusProtectPro 3.6.lnk"
if NOT exist "%startm%\VirusProtectPro 3.6.lnk" echo %startm%\VirusProtectPro 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusProtectPro 3.6.lnk" echo %sError% %startm%\VirusProtectPro 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "%startm%\VirusProtectPro 3.7.lnk" (
attrib -r -s -h "%startm%\VirusProtectPro 3.7.lnk"
del /a /f "%startm%\VirusProtectPro 3.7.lnk"
if NOT exist "%startm%\VirusProtectPro 3.7.lnk" echo %startm%\VirusProtectPro 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startm%\VirusProtectPro 3.7.lnk" echo %sError% %startm%\VirusProtectPro 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist "%startprg%\AntiVermeans" (
RD /s /q "%startprg%\AntiVermeans"
IF NOT ERRORLEVEL 1 echo %startprg%\AntiVermeans %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\AntiVermins" (
RD /s /q "%startprg%\AntiVermins"
IF NOT ERRORLEVEL 1 echo %startprg%\AntiVermins %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\AntiVerminser" (
RD /s /q "%startprg%\AntiVerminser"
IF NOT ERRORLEVEL 1 echo %startprg%\AntiVerminser %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\AntivirusGolden" (
RD /s /q "%startprg%\AntivirusGolden"
IF NOT ERRORLEVEL 1 echo %startprg%\AntivirusGolden %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\BraveSentry" (
RD /s /q "%startprg%\BraveSentry"
IF NOT ERRORLEVEL 1 echo %startprg%\BraveSentry %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\ContraVirus" (
RD /s /q "%startprg%\ContraVirus"
IF NOT ERRORLEVEL 1 echo %startprg%\ContraVirus %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\DirectVideo" (
RD /s /q "%startprg%\DirectVideo"
IF NOT ERRORLEVEL 1 echo %startprg%\DirectVideo %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\FreeVideo" (
RD /s /q "%startprg%\FreeVideo"
IF NOT ERRORLEVEL 1 echo %startprg%\FreeVideo %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\HQ Codec" (
RD /s /q "%startprg%\HQ Codec"
IF NOT ERRORLEVEL 1 echo %startprg%\HQ Codec %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\HQvideo" (
RD /s /q "%startprg%\HQvideo"
IF NOT ERRORLEVEL 1 echo %startprg%\HQvideo %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\HQVideoCodec" (
RD /s /q "%startprg%\HQVideoCodec"
IF NOT ERRORLEVEL 1 echo %startprg%\HQVideoCodec %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Key Generator" (
RD /s /q "%startprg%\Key Generator"
IF NOT ERRORLEVEL 1 echo %startprg%\Key Generator %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwareWipe" (
RD /s /q "%startprg%\MalwareWipe"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwareWipe %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwareWiped" (
RD /s /q "%startprg%\MalwareWiped"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwareWiped %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwareWiped 6.1" (
RD /s /q "%startprg%\MalwareWiped 6.1"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwareWiped 6.1 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwaresWipeds" (
RD /s /q "%startprg%\MalwaresWipeds"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwaresWipeds %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwareWipePro" (
RD /s /q "%startprg%\MalwareWipePro"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwareWipePro %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MalwareWiper" (
RD /s /q "%startprg%\MalwareWiper"
IF NOT ERRORLEVEL 1 echo %startprg%\MalwareWiper %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Malware-Wipe" (
RD /s /q "%startprg%\Malware-Wipe"
IF NOT ERRORLEVEL 1 echo %startprg%\Malware-Wipe %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MovieBox" (
RD /s /q "%startprg%\MovieBox"
IF NOT ERRORLEVEL 1 echo %startprg%\MovieBox %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\MovieCommander" (
RD /s /q "%startprg%\MovieCommander"
IF NOT ERRORLEVEL 1 echo %startprg%\MovieCommander %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\My Pass Generator" (
RD /s /q "%startprg%\My Pass Generator"
IF NOT ERRORLEVEL 1 echo %startprg%\My Pass Generator %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\PestCapture" (
RD /s /q "%startprg%\PestCapture"
IF NOT ERRORLEVEL 1 echo %startprg%\PestCapture %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\PestTrap" (
RD /s /q "%startprg%\PestTrap"
IF NOT ERRORLEVEL 1 echo %startprg%\PestTrap %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\PornPass Manager" (
RD /s /q "%startprg%\PornPass Manager"
IF NOT ERRORLEVEL 1 echo %startprg%\PornPass Manager %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\PornoPlayer" (
RD /s /q "%startprg%\PornoPlayer"
IF NOT ERRORLEVEL 1 echo %startprg%\PornoPlayer %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\PrivateVideo" (
RD /s /q "%startprg%\PrivateVideo"
IF NOT ERRORLEVEL 1 echo %startprg%\PrivateVideo %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Registry Cleaner" (
RD /s /q "%startprg%\Registry Cleaner"
IF NOT ERRORLEVEL 1 echo %startprg%\Registry Cleaner %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SiteEntry" (
RD /s /q "%startprg%\SiteEntry"
IF NOT ERRORLEVEL 1 echo %startprg%\SiteEntry %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SiteTicket" (
RD /s /q "%startprg%\SiteTicket"
IF NOT ERRORLEVEL 1 echo %startprg%\SiteTicket %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyAxe" (
RD /s /q "%startprg%\SpyAxe"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyAxe %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyCrush" (
RD /s /q "%startprg%\SpyCrush"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyCrush %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyDawn" (
RD /s /q "%startprg%\SpyDawn"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyDawn %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyGuard" (
RD /s /q "%startprg%\SpyGuard"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyGuard %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyFalcon" (
RD /s /q "%startprg%\SpyFalcon"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyFalcon %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Spy-Heal" (
RD /s /q "%startprg%\Spy-Heal"
IF NOT ERRORLEVEL 1 echo %startprg%\Spy-Heal %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyHeal" (
RD /s /q "%startprg%\SpyHeal"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyHeal %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyHeals" (
RD /s /q "%startprg%\SpyHeals"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyHeals %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked" (
RD /s /q "%startprg%\SpyLocked"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 3.6" (
RD /s /q "%startprg%\SpyLocked 3.6"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 3.6 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 3.7" (
RD /s /q "%startprg%\SpyLocked 3.7"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 3.7 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 3.9" (
RD /s /q "%startprg%\SpyLocked 3.9"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 3.9 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 4.0" (
RD /s /q "%startprg%\SpyLocked 4.0"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 4.0 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 4.1" (
RD /s /q "%startprg%\SpyLocked 4.1"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 4.1 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyLocked 4.3" (
RD /s /q "%startprg%\SpyLocked 4.3"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyLocked 4.3 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyMarshal" (
RD /s /q "%startprg%\SpyMarshal"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyMarshal %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpySheriff" (
RD /s /q "%startprg%\SpySheriff"
IF NOT ERRORLEVEL 1 echo %startprg%\SpySheriff %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpyQuake2.com" (
RD /s /q "%startprg%\SpyQuake2.com"
IF NOT ERRORLEVEL 1 echo %startprg%\SpyQuake2.com %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareLocked" (
RD /s /q "%startprg%\SpywareLocked"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareLocked %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareLocked 3.3" (
RD /s /q "%startprg%\SpywareLocked 3.3"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareLocked 3.3 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareLocked 3.4" (
RD /s /q "%startprg%\SpywareLocked 3.4"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareLocked 3.4 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareLocked 3.5" (
RD /s /q "%startprg%\SpywareLocked 3.5"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareLocked 3.5 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareQuake" (
RD /s /q "%startprg%\SpywareQuake"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareQuake %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareQuake.com" (
RD /s /q "%startprg%\SpywareQuake.com"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareQuake.com %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\SpywareStrike" (
RD /s /q "%startprg%\SpywareStrike"
IF NOT ERRORLEVEL 1 echo %startprg%\SpywareStrike %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Trust Cleaner" (
RD /s /q "%startprg%\Trust Cleaner"
IF NOT ERRORLEVEL 1 echo %startprg%\Trust Cleaner %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\vb" (
RD /s /q "%startprg%\vb"
IF NOT ERRORLEVEL 1 echo %startprg%\vb %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Video iCodec" (
RD /s /q "%startprg%\Video iCodec"
IF NOT ERRORLEVEL 1 echo %startprg%\Video iCodec %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VideoAccess" (
RD /s /q "%startprg%\VideoAccess"
IF NOT ERRORLEVEL 1 echo %startprg%\VideoAccess %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VideoBox" (
RD /s /q "%startprg%\VideoBox"
IF NOT ERRORLEVEL 1 echo %startprg%\VideoBox %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VideoPlugin" (
RD /s /q "%startprg%\VideoPlugin"
IF NOT ERRORLEVEL 1 echo %startprg%\VideoPlugin %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusBlast" (
RD /s /q "%startprg%\VirusBlast"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusBlast %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Virus-Burst" (
RD /s /q "%startprg%\Virus-Burst"
IF NOT ERRORLEVEL 1 echo %startprg%\Virus-Burst %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusBurst" (
RD /s /q "%startprg%\VirusBurst"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusBurst %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusBurster" (
RD /s /q "%startprg%\VirusBurster"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusBurster %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusBursters" (
RD /s /q "%startprg%\VirusBursters"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusBursters %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\Virus-Bursters" (
RD /s /q "%startprg%\Virus-Bursters"
IF NOT ERRORLEVEL 1 echo %startprg%\Virus-Bursters %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusProtectPro" (
RD /s /q "%startprg%\VirusProtectPro"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusProtectPro %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusProtectPro 3.5" (
RD /s /q "%startprg%\VirusProtectPro 3.5"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusProtectPro 3.5 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusProtectPro 3.6" (
RD /s /q "%startprg%\VirusProtectPro 3.6"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusProtectPro 3.6 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\VirusProtectPro 3.7" (
RD /s /q "%startprg%\VirusProtectPro 3.7"
IF NOT ERRORLEVEL 1 echo %startprg%\VirusProtectPro 3.7 %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\X Password Generator" (
RD /s /q "%startprg%\X Password Generator"
IF NOT ERRORLEVEL 1 echo %startprg%\X Password Generator %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\X Password Manager" (
RD /s /q "%startprg%\X Password Manager"
IF NOT ERRORLEVEL 1 echo %startprg%\X Password Manager %sDel%>>%systemdrive%\rapport.txt
)

if exist "%startprg%\XXXAccess" (
RD /s /q "%startprg%\XXXAccess"
IF NOT ERRORLEVEL 1 echo %startprg%\XXXAccess %sDel%>>%systemdrive%\rapport.txt
)



if exist "%startup%\.protected" (
attrib -r -s -h "%startup%\.protected"
del /a /f "%startup%\.protected"
if NOT exist "%startup%\.protected" echo %startup%\.protected %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\.protected" echo %sError% %startup%\.protected>>%systemdrive%\rapport.txt
)

if exist "%startup%\asheriff.lnk" (
attrib -r -s -h "%startup%\asheriff.lnk"
del /a /f "%startup%\asheriff.lnk"
if NOT exist "%startup%\asheriff.lnk" echo %startup%\asheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\asheriff.lnk" echo %sError% %startup%\asheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "%startup%\antispysoldier.lnk" (
attrib -r -s -h "%startup%\antispysoldier.lnk"
del /a /f "%startup%\antispysoldier.lnk"
if NOT exist "%startup%\antispysoldier.lnk" echo %startup%\antispysoldier.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\antispysoldier.lnk" echo %sError% %startup%\antispysoldier.lnk>>%systemdrive%\rapport.txt
)

if exist "%startup%\autorun.exe" (
attrib -r -s -h "%startup%\autorun.exe"
del /a /f "%startup%\autorun.exe"
if NOT exist "%startup%\autorun.exe" echo %startup%\autorun.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\autorun.exe" echo %sError% %startup%\autorun.exe>>%systemdrive%\rapport.txt
)

if exist "%startup%\findfast.exe" (
attrib -r -s -h "%startup%\findfast.exe"
del /a /f "%startup%\findfast.exe"
if NOT exist "%startup%\findfast.exe" echo %startup%\findfast.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\findfast.exe" echo %sError% %startup%\findfast.exe>>%systemdrive%\rapport.txt
)

if exist "%startup%\rAggge.exe" (
attrib -r -s -h "%startup%\rAggge.exe"
del /a /f "%startup%\rAggge.exe"
if NOT exist "%startup%\rAggge.exe" echo %startup%\rAggge.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\rAggge.exe" echo %sError% %startup%\rAggge.exe>>%systemdrive%\rapport.txt
)

if exist "%startup%\processes.txt" (
attrib -r -s -h "%startup%\processes.txt"
del /a /f "%startup%\processes.txt"
if NOT exist "%startup%\processes.txt" echo %startup%\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\processes.txt" echo %sError% %startup%\processes.txt>>%systemdrive%\rapport.txt
)

if exist "%startup%\spysheriff.lnk" (
attrib -r -s -h "%startup%\spysheriff.lnk"
del /a /f "%startup%\spysheriff.lnk"
if NOT exist "%startup%\spysheriff.lnk" echo %startup%\spysheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\spysheriff.lnk" echo %sError% %startup%\spysheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "%startup%\system.exe" (
attrib -r -s -h "%startup%\system.exe"
del /a /f "%startup%\system.exe"
if NOT exist "%startup%\system.exe" echo %startup%\system.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\system.exe" echo %sError% %startup%\system.exe>>%systemdrive%\rapport.txt
)

if exist "%startup%\titanshield.lnk" (
attrib -r -s -h "%startup%\titanshield.lnk"
del /a /f "%startup%\titanshield.lnk"
if NOT exist "%startup%\titanshield.lnk" echo %startup%\titanshield.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "%startup%\titanshield.lnk" echo %sError% %startup%\titanshield.lnk>>%systemdrive%\rapport.txt
)



if exist "%austartm%\Online Security Guide.url" (
attrib -r -s -h "%austartm%\Online Security Guide.url"
del /a /f "%austartm%\Online Security Guide.url"
if NOT exist "%austartm%\Online Security Guide.url" echo %austartm%\Online Security Guide.url %sDel%>>%systemdrive%\rapport.txt
if exist "%austartm%\Online Security Guide.url" echo %sError% %austartm%\Online Security Guide.url>>%systemdrive%\rapport.txt
)

if exist "%austartm%\PopUp Blocker.url" (
attrib -r -s -h "%austartm%\PopUp Blocker.url"
del /a /f "%austartm%\PopUp Blocker.url"
if NOT exist "%austartm%\PopUp Blocker.url" echo %austartm%\PopUp Blocker.url %sDel%>>%systemdrive%\rapport.txt
if exist "%austartm%\PopUp Blocker.url" echo %sError% %austartm%\PopUp Blocker.url>>%systemdrive%\rapport.txt
)

if exist "%austartm%\Security Troubleshooting.url" (
attrib -r -s -h "%austartm%\Security Troubleshooting.url"
del /a /f "%austartm%\Security Troubleshooting.url"
if NOT exist "%austartm%\Security Troubleshooting.url" echo %austartm%\Security Troubleshooting.url %sDel%>>%systemdrive%\rapport.txt
if exist "%austartm%\Security Troubleshooting.url" echo %sError% %austartm%\Security Troubleshooting.url>>%systemdrive%\rapport.txt
)

if exist "%austartm%\Spyware Remover.url" (
attrib -r -s -h "%austartm%\Spyware Remover.url"
del /a /f "%austartm%\Spyware Remover.url"
if NOT exist "%austartm%\Spyware Remover.url" echo %austartm%\Spyware Remover.url %sDel%>>%systemdrive%\rapport.txt
if exist "%austartm%\Spyware Remover.url" echo %sError% %austartm%\Spyware Remover.url>>%systemdrive%\rapport.txt
)





if exist "%austartprg%\AdwareSheriff" (
RD /s /q "%austartprg%\AdwareSheriff"
if NOT ERRORLEVEL 1 echo %austartprg%\AdwareSheriff %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\AlfaCleaner" (
RD /s /q "%austartprg%\AlfaCleaner"
if NOT ERRORLEVEL 1 echo %austartprg%\AlfaCleaner %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\Antispyware Soldier" (
RD /s /q "%austartprg%\Antispyware Soldier"
if NOT ERRORLEVEL 1 echo %austartprg%\Antispyware Soldier %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\P.S.Guard spyware remover" (
RD /s /q "%austartprg%\P.S.Guard spyware remover"
if NOT ERRORLEVEL 1 echo %austartprg%\P.S.Guard spyware remover %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\SpySoldier" (
RD /s /q "%austartprg%\SpySoldier"
IF NOT ERRORLEVEL 1 echo %austartprg%\SpySoldier %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\SpywareKnight" (
RD /s /q "%austartprg%\SpywareKnight"
IF NOT ERRORLEVEL 1 echo %austartprg%\SpywareKnight %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\SpywareSheriff" (
RD /s /q "%austartprg%\SpywareSheriff"
if NOT ERRORLEVEL 1 echo %austartprg%\SpywareSheriff %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\Spyware Soft Stop" (
RD /s /q "%austartprg%\Spyware Soft Stop"
if NOT ERRORLEVEL 1 echo %austartprg%\Spyware Soft Stop %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\TitanShield Antispyware" (
RD /s /q "%austartprg%\TitanShield Antispyware"
IF NOT ERRORLEVEL 1 echo %austartprg%\TitanShield Antispyware %sDel%>>%systemdrive%\rapport.txt
)

if exist "%austartprg%\WinHound spyware remover" (
RD /s /q "%austartprg%\WinHound spyware remover"
if NOT ERRORLEVEL 1 echo %austartprg%\WinHound spyware remover %sDel%>>%systemdrive%\rapport.txt
)



if exist "%austartup%\.protected" (
attrib -r -s -h "%austartup%\.protected"
del /a /f "%austartup%\.protected"
if NOT exist "%austartup%\.protected" echo %austartup%\.protected %sDel%>>%systemdrive%\rapport.txt
if exist "%austartup%\.protected" echo %sError% %austartup%\.protected>>%systemdrive%\rapport.txt
)

if exist "%austartup%\autorun.exe" (
attrib -r -s -h "%austartup%\autorun.exe"
del /a /f "%austartup%\autorun.exe"
if NOT exist "%austartup%\autorun.exe" echo %austartup%\autorun.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%austartup%\autorun.exe" echo %sError% %austartup%\autorun.exe>>%systemdrive%\rapport.txt
)

if exist "%austartup%\findfast.exe" (
attrib -r -s -h "%austartup%\findfast.exe"
del /a /f "%austartup%\findfast.exe"
if NOT exist "%austartup%\findfast.exe" echo %austartup%\findfast.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%austartup%\findfast.exe" echo %sError% %austartup%\findfast.exe>>%systemdrive%\rapport.txt
)

if exist "%austartup%\Uninstall.exe" (
attrib -r -s -h "%austartup%\Uninstall.exe"
del /a /f "%austartup%\Uninstall.exe"
if NOT exist "%austartup%\Uninstall.exe" echo %austartup%\Uninstall.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%austartup%\Uninstall.exe" echo %sError% %austartup%\Uninstall.exe>>%systemdrive%\rapport.txt
)


if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe" (
attrib -r -s -h "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe"
del /a /f "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe"
if NOT exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe" echo C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe %sDel%>>%systemdrive%\rapport.txt
if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe" echo %sError% C:\Documents and Settings\All Users\Start Menu\Programs\Startup\qwwyyu.exe>>%systemdrive%\rapport.txt
)

if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt" (
attrib -r -s -h "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt"
del /a /f "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt"
if NOT exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt" echo C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt %sDel%>>%systemdrive%\rapport.txt
if exist "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt" echo %sError% C:\Documents and Settings\All Users\Start Menu\Programs\Startup\processes.txt>>%systemdrive%\rapport.txt
)





pushd %desktop%


if exist access (
attrib -r -s -h access  
del /a /f access  
if NOT exist access echo %desktop%\access %sDel%>>%systemdrive%\rapport.txt
if exist access echo %sError% %desktop%\access>>%systemdrive%\rapport.txt
)

if exist asfds (
attrib -r -s -h asfds  
del /a /f asfds  
if NOT exist asfds echo %desktop%\asfds %sDel%>>%systemdrive%\rapport.txt
if exist asfds echo %sError% %desktop%\asfds>>%systemdrive%\rapport.txt
)

if exist "Antispyware Soldier.lnk" (
attrib -r -s -h "Antispyware Soldier.lnk"  
del /a /f "Antispyware Soldier.lnk"  
if NOT exist "Antispyware Soldier.lnk" echo %desktop%\Antispyware Soldier.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Antispyware Soldier.lnk" echo %sError% %desktop%\Antispyware Soldier.lnk>>%systemdrive%\rapport.txt
)

if exist "AntiVermeans.lnk" (
attrib -r -s -h "AntiVermeans.lnk"  
del /a /f "AntiVermeans.lnk"  
if NOT exist "AntiVermeans.lnk" echo %desktop%\AntiVermeans.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "AntiVermeans.lnk" echo %sError% %desktop%\AntiVermeans.lnk>>%systemdrive%\rapport.txt
)

if exist "AntiVermins.lnk" (
attrib -r -s -h "AntiVermins.lnk"  
del /a /f "AntiVermins.lnk"  
if NOT exist "AntiVermins.lnk" echo %desktop%\AntiVermins.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "AntiVermins.lnk" echo %sError% %desktop%\AntiVermins.lnk>>%systemdrive%\rapport.txt
)

if exist "AntiVerminser.lnk" (
attrib -r -s -h "AntiVerminser.lnk"  
del /a /f "AntiVerminser.lnk"  
if NOT exist "AntiVerminser.lnk" echo %desktop%\AntiVerminser.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "AntiVerminser.lnk" echo %sError% %desktop%\AntiVerminser.lnk>>%systemdrive%\rapport.txt
)

if exist "AntivirusGolden.lnk" (
attrib -r -s -h "AntivirusGolden.lnk"  
del /a /f "AntivirusGolden.lnk"  
if NOT exist "AntivirusGolden.lnk" echo %desktop%\AntivirusGolden.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "AntivirusGolden.lnk" echo %sError% %desktop%\AntivirusGolden.lnk>>%systemdrive%\rapport.txt
)

if exist BraveSentry.lnk (
attrib -r -s -h BraveSentry.lnk  
del /a /f BraveSentry.lnk  
if NOT exist BraveSentry.lnk echo %desktop%\BraveSentry.lnk %sDel%>>%systemdrive%\rapport.txt
if exist BraveSentry.lnk echo %sError% %desktop%\BraveSentry.lnk>>%systemdrive%\rapport.txt
)

if exist cdegfr (
attrib -r -s -h cdegfr  
del /a /f cdegfr  
if NOT exist cdegfr echo %desktop%\cdegfr %sDel%>>%systemdrive%\rapport.txt
if exist cdegfr echo %sError% %desktop%\cdegfr>>%systemdrive%\rapport.txt
)

if exist "ContraVirus 2.0.lnk" (
attrib -r -s -h "ContraVirus 2.0.lnk"
del /a /f "ContraVirus 2.0.lnk"  
if NOT exist "ContraVirus 2.0.lnk" echo %desktop%\ContraVirus 2.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "ContraVirus 2.0.lnk" echo %sError% %desktop%\ContraVirus 2.0.lnk>>%systemdrive%\rapport.txt
)

if exist domains (
attrib -r -s -h domains  
del /a /f domains  
if NOT exist domains echo %desktop%\domains %sDel%>>%systemdrive%\rapport.txt
if exist domains echo %sError% %desktop%\domains>>%systemdrive%\rapport.txt
)

if exist fdsf (
attrib -r -s -h fdsf  
del /a /f fdsf  
if NOT exist fdsf echo %desktop%\fdsf %sDel%>>%systemdrive%\rapport.txt
if exist fdsf echo %sError% %desktop%\fdsf>>%systemdrive%\rapport.txt
)

if exist "Key Generator.lnk" (
attrib -r -s -h "Key Generator.lnk"  
del /a /f "Key Generator.lnk"  
if NOT exist "Key Generator.lnk" echo %desktop%\Key Generator.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Key Generator.lnk" echo %sError% %desktop%\Key Generator.lnk>>%systemdrive%\rapport.txt
)

if exist map.txt (
attrib -r -s -h map.txt  
del /a /f map.txt  
if NOT exist map.txt echo %desktop%\map.txt %sDel%>>%systemdrive%\rapport.txt
if exist map.txt echo %sError% %desktop%\map.txt>>%systemdrive%\rapport.txt
)

if exist m00.exe (
attrib -r -s -h m00.exe  
del /a /f m00.exe  
if NOT exist m00.exe echo %desktop%\m00.exe %sDel%>>%systemdrive%\rapport.txt
if exist m00.exe echo %sError% %desktop%\m00.exe>>%systemdrive%\rapport.txt
)

if exist "MalwareWipe.lnk" (
attrib -r -s -h "MalwareWipe.lnk"  
del /a /f "MalwareWipe.lnk"  
if NOT exist "MalwareWipe.lnk" echo %desktop%\MalwareWipe.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwareWipe.lnk" echo %sError% %desktop%\MalwareWipe.lnk>>%systemdrive%\rapport.txt
)

if exist "MalwareWiped.lnk" (
attrib -r -s -h "MalwareWiped.lnk"  
del /a /f "MalwareWiped.lnk"  
if NOT exist "MalwareWiped.lnk" echo %desktop%\MalwareWiped.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwareWiped.lnk" echo %sError% %desktop%\MalwareWiped.lnk>>%systemdrive%\rapport.txt
)

if exist "MalwareWiped 6.1.lnk" (
attrib -r -s -h "MalwareWiped 6.1.lnk"  
del /a /f "MalwareWiped 6.1.lnk"  
if NOT exist "MalwareWiped 6.1.lnk" echo %desktop%\MalwareWiped 6.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwareWiped 6.1.lnk" echo %sError% %desktop%\MalwareWiped 6.1.lnk>>%systemdrive%\rapport.txt
)

if exist "MalwaresWipeds.lnk" (
attrib -r -s -h "MalwaresWipeds.lnk"  
del /a /f "MalwaresWipeds.lnk"  
if NOT exist "MalwaresWipeds.lnk" echo %desktop%\MalwaresWipeds.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwaresWipeds.lnk" echo %sError% %desktop%\MalwaresWipeds.lnk>>%systemdrive%\rapport.txt
)

if exist "MalwareWipePro.lnk" (
attrib -r -s -h "MalwareWipePro.lnk"  
del /a /f "MalwareWipePro.lnk"  
if NOT exist "MalwareWipePro.lnk" echo %desktop%\MalwareWipePro.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwareWipePro.lnk" echo %sError% %desktop%\MalwareWipePro.lnk>>%systemdrive%\rapport.txt
)

if exist "MalwareWiper.lnk" (
attrib -r -s -h "MalwareWiper.lnk"  
del /a /f "MalwareWiper.lnk"  
if NOT exist "MalwareWiper.lnk" echo %desktop%\MalwareWiper.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "MalwareWiper.lnk" echo %sError% %desktop%\MalwareWiper.lnk>>%systemdrive%\rapport.txt
)

if exist "Malware-Wipe.lnk" (
attrib -r -s -h "Malware-Wipe.lnk"  
del /a /f "Malware-Wipe.lnk"  
if NOT exist "Malware-Wipe.lnk" echo %desktop%\Malware-Wipe.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Malware-Wipe.lnk" echo %sError% %desktop%\Malware-Wipe.lnk>>%systemdrive%\rapport.txt
)

if exist "My Pass Generator.lnk" (
attrib -r -s -h "My Pass Generator.lnk"  
del /a /f "My Pass Generator.lnk"  
if NOT exist "My Pass Generator.lnk" echo %desktop%\My Pass Generator.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "My Pass Generator.lnk" echo %sError% %desktop%\My Pass Generator.lnk>>%systemdrive%\rapport.txt
)

if exist "AdwareSheriff.lnk" (
attrib -r -s -h "AdwareSheriff.lnk"  
del /a /f "AdwareSheriff.lnk"  
if NOT exist "AdwareSheriff.lnk" echo %desktop%\AdwareSheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "AdwareSheriff.lnk" echo %sError% %desktop%\AdwareSheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "Air Tickets.url" (
attrib -r -s -h "Air Tickets.url"  
del /a /f "Air Tickets.url"  
if NOT exist "Air Tickets.url" echo %desktop%\Air Tickets.url %sDel%>>%systemdrive%\rapport.txt
if exist "Air Tickets.url" echo %sError% %desktop%\Air Tickets.url>>%systemdrive%\rapport.txt
)

if exist AlfaCleaner.lnk (
attrib -r -s -h AlfaCleaner.lnk  
del /a /f AlfaCleaner.lnk  
if NOT exist AlfaCleaner.lnk echo %desktop%\AlfaCleaner.lnk %sDel%>>%systemdrive%\rapport.txt
if exist AlfaCleaner.lnk echo %sError% %desktop%\AlfaCleaner.lnk>>%systemdrive%\rapport.txt
)

if exist AntivirusGold.lnk (
attrib -r -s -h AntivirusGold.lnk  
del /a /f AntivirusGold.lnk  
if NOT exist AntivirusGold.lnk echo %desktop%\AntivirusGold.lnk %sDel%>>%systemdrive%\rapport.txt
if exist AntivirusGold.lnk echo %sError% %desktop%\AntivirusGold.lnk>>%systemdrive%\rapport.txt
)

if exist "Big Tits.url" (
attrib -r -s -h "Big Tits.url"  
del /a /f "Big Tits.url"  
if NOT exist "Big Tits.url" echo %desktop%\Big Tits.url %sDel%>>%systemdrive%\rapport.txt
if exist "Big Tits.url" echo %sError% %desktop%\Big Tits.url>>%systemdrive%\rapport.txt
)

if exist Blackjack.url (
attrib -r -s -h Blackjack.url  
del /a /f Blackjack.url  
if NOT exist Blackjack.url echo %desktop%\Blackjack.url %sDel%>>%systemdrive%\rapport.txt
if exist Blackjack.url echo %sError% %desktop%\Blackjack.url>>%systemdrive%\rapport.txt
)

if exist Blowjob.url (
attrib -r -s -h Blowjob.url  
del /a /f Blowjob.url  
if NOT exist Blowjob.url echo %desktop%\Blowjob.url %sDel%>>%systemdrive%\rapport.txt
if exist Blowjob.url echo %sError% %desktop%\Blowjob.url>>%systemdrive%\rapport.txt
)

if exist "Britney Spears.url" (
attrib -r -s -h "Britney Spears.url"  
del /a /f "Britney Spears.url"  
if NOT exist "Britney Spears.url" echo %desktop%\Britney Spears.url %sDel%>>%systemdrive%\rapport.txt
if exist "Britney Spears.url" echo %sError% %desktop%\Britney Spears.url>>%systemdrive%\rapport.txt
)

if exist "Car Insurance.url" (
attrib -r -s -h "Car Insurance.url"  
del /a /f "Car Insurance.url"  
if NOT exist "Car Insurance.url" echo %desktop%\Car Insurance.url %sDel%>>%systemdrive%\rapport.txt
if exist "Car Insurance.url" echo %sError% %desktop%\Car Insurance.url>>%systemdrive%\rapport.txt
)

if exist "Cheap Cigarettes.url" (
attrib -r -s -h "Cheap Cigarettes.url"  
del /a /f "Cheap Cigarettes.url"  
if NOT exist "Cheap Cigarettes.url" echo %desktop%\Cheap Cigarettes.url %sDel%>>%systemdrive%\rapport.txt
if exist "Cheap Cigarettes.url" echo %sError% %desktop%\Cheap Cigarettes.url>>%systemdrive%\rapport.txt
)

if exist "Cigarettes Discount.url" (
attrib -r -s -h "Cigarettes Discount.url"  
del /a /f "Cigarettes Discount.url"  
if NOT exist "Cigarettes Discount.url" echo %desktop%\Cigarettes Discount.url %sDel%>>%systemdrive%\rapport.txt
if exist "Cigarettes Discount.url" echo %sError% %desktop%\Cigarettes Discount.url>>%systemdrive%\rapport.txt
)

if exist "Credit Card.url" (
attrib -r -s -h "Credit Card.url"  
del /a /f "Credit Card.url"  
if NOT exist "Credit Card.url" echo %desktop%\Credit Card.url %sDel%>>%systemdrive%\rapport.txt
if exist "Credit Card.url" echo %sError% %desktop%\Credit Card.url>>%systemdrive%\rapport.txt
)

if exist Cruises.url (
attrib -r -s -h Cruises.url  
del /a /f Cruises.url  
if NOT exist Cruises.url echo %desktop%\Cruises.url %sDel%>>%systemdrive%\rapport.txt
if exist Cruises.url echo %sError% %desktop%\Cruises.url>>%systemdrive%\rapport.txt
)

if exist "Currency Trading.url" (
attrib -r -s -h "Currency Trading.url"  
del /a /f "Currency Trading.url"  
if NOT exist "Currency Trading.url" echo %desktop%\Currency Trading.url %sDel%>>%systemdrive%\rapport.txt
if exist "Currency Trading.url" echo %sError% %desktop%\Currency Trading.url>>%systemdrive%\rapport.txt
)

if exist "Error Cleaner.url" (
attrib -r -s -h "Error Cleaner.url"
del /a /f "Error Cleaner.url"  
if NOT exist "Error Cleaner.url" echo %desktop%\Error Cleaner.url %sDel%>>%systemdrive%\rapport.txt
if exist "Error Cleaner.url" echo %sError% %desktop%\Error Cleaner.url>>%systemdrive%\rapport.txt
)

if exist "Forex Trading.url" (
attrib -r -s -h "Forex Trading.url"
del /a /f "Forex Trading.url"  
if NOT exist "Forex Trading.url" echo %desktop%\Forex Trading.url %sDel%>>%systemdrive%\rapport.txt
if exist "Forex Trading.url" echo %sError% %desktop%\Forex Trading.url>>%systemdrive%\rapport.txt
)

if exist "Free Ringtones.url" (
attrib -r -s -h "Free Ringtones.url"
del /a /f "Free Ringtones.url"  
if NOT exist "Free Ringtones" echo %desktop%\Free Ringtones.url %sDel%>>%systemdrive%\rapport.txt
if exist "Free Ringtones.url" echo %sError% %desktop%\Free Ringtones.url>>%systemdrive%\rapport.txt
)

if exist "Gift Ideas.url" (
attrib -r -s -h "Gift Ideas.url"
del /a /f "Gift Ideas.url"  
if NOT exist "Gift Ideas.url" echo %desktop%\Gift Ideas.url %sDel%>>%systemdrive%\rapport.txt
if exist "Gift Ideas.url" echo %sError% %desktop%\Gift Ideas.url>>%systemdrive%\rapport.txt
)

if exist "Group Sex.url" (
attrib -r -s -h "Group Sex.url"
del /a /f "Group Sex.url"  
if NOT exist "Group Sex.url" echo %desktop%\Group Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Group Sex.url" echo %sError% %desktop%\Group Sex.url>>%systemdrive%\rapport.txt
)

if exist "Home Loan.url" (
attrib -r -s -h "Home Loan.url"
del /a /f "Home Loan.url"  
if NOT exist "Home Loan.url" echo %desktop%\Home Loan.url %sDel%>>%systemdrive%\rapport.txt
if exist "Home Loan.url" echo %sError% %desktop%\Home Loan.url>>%systemdrive%\rapport.txt
)

if exist "Lesbian Sex.url" (
attrib -r -s -h "Lesbian Sex.url"  
del /a /f "Lesbian Sex.url"  
if NOT exist "Lesbian Sex.url" echo %desktop%\Lesbian Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Lesbian Sex.url" echo %sError% %desktop%\Lesbian Sex.url>>%systemdrive%\rapport.txt
)

if exist MP3.url (
attrib -r -s -h MP3.url  
del /a /f MP3.url  
if NOT exist MP3.url echo %desktop%\MP3.url %sDel%>>%systemdrive%\rapport.txt
if exist MP3.url echo %sError% %desktop%\MP3.url>>%systemdrive%\rapport.txt
)

if exist "Mp3 Download.url" (
attrib -r -s -h "Mp3 Download.url"  
del /a /f "Mp3 Download.url"  
if NOT exist "Mp3 Download.url" echo %desktop%\Mp3 Download.url %sDel%>>%systemdrive%\rapport.txt
if exist "Mp3 Download.url" echo %sError% %desktop%\Mp3 Download.url>>%systemdrive%\rapport.txt
)

if exist "Online Betting.url" (
attrib -r -s -h "Online Betting.url"  
del /a /f "Online Betting.url"  
if NOT exist "Online Betting.url" echo %desktop%\Online Betting.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Betting.url" echo %sError% %desktop%\Online Betting.url>>%systemdrive%\rapport.txt
)

if exist "Online Casino.url" (
attrib -r -s -h "Online Casino.url"  
del /a /f "Online Casino.url"  
if NOT exist "Online Casino.url" echo %desktop%\Online Casino.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Casino.url" echo %sError% %desktop%\Online Casino.url>>%systemdrive%\rapport.txt
)

if exist "Online Dating.url" (
attrib -r -s -h "Online Dating.url"  
del /a /f "Online Dating.url"  
if NOT exist "Online Dating.url" echo %desktop%\Online Dating.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Dating.url" echo %sError% %desktop%\Online Dating.url>>%systemdrive%\rapport.txt
)

if exist "Online Gambling.url" (
attrib -r -s -h "Online Gambling.url"  
del /a /f "Online Gambling.url"  
if NOT exist "Online Gambling.url" echo %desktop%\Online Gambling.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Gambling.url" echo %sError% %desktop%\Online Gambling.url>>%systemdrive%\rapport.txt
)

if exist "Online Shopping.url" (
attrib -r -s -h "Online Shopping.url"  
del /a /f "Online Shopping.url"  
if NOT exist "Online Shopping.url" echo %desktop%\Online Shopping.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Shopping.url" echo %sError% %desktop%\Online Shopping.url>>%systemdrive%\rapport.txt
)

if exist "Oral Sex.url" (
attrib -r -s -h "Oral Sex.url"  
del /a /f "Oral Sex.url"  
if NOT exist "Oral Sex.url" echo %desktop%\Oral Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Oral Sex.url" echo %sError% %desktop%\Oral Sex.url>>%systemdrive%\rapport.txt
)

if exist "Party Poker.url" (
attrib -r -s -h "Party Poker.url"  
del /a /f "Party Poker.url"  
if NOT exist "Party Poker.url" echo %desktop%\Party Poker.url %sDel%>>%systemdrive%\rapport.txt
if exist "Party Poker.url" echo %sError% %desktop%\Party Poker.url>>%systemdrive%\rapport.txt
)

if exist PestCapture.lnk (
attrib -r -s -h PestCapture.lnk  
del /a /f PestCapture.lnk  
if NOT exist PestCapture.lnk echo %desktop%\PestCapture.lnk %sDel%>>%systemdrive%\rapport.txt
if exist PestCapture.lnk echo %sError% %desktop%\PestCapture.lnk>>%systemdrive%\rapport.txt
)

if exist PestTrap.lnk (
attrib -r -s -h PestTrap.lnk  
del /a /f PestTrap.lnk  
if NOT exist PestTrap.lnk echo %desktop%\PestTrap.lnk %sDel%>>%systemdrive%\rapport.txt
if exist PestTrap.lnk echo %sError% %desktop%\PestTrap.lnk>>%systemdrive%\rapport.txt
)

if exist "PornPass Manager.lnk" (
attrib -r -s -h "PornPass Manager.lnk"  
del /a /f "PornPass Manager.lnk"  
if NOT exist "PornPass Manager.lnk" echo %desktop%\PornPass Manager.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "PornPass Manager.lnk" echo %sError% %desktop%\PornPass Manager.lnk>>%systemdrive%\rapport.txt
)

if exist "Play Poker.url" (
attrib -r -s -h "Play Poker.url"  
del /a /f "Play Poker.url"  
if NOT exist "Play Poker.url" echo %desktop%\Play Poker.url %sDel%>>%systemdrive%\rapport.txt
if exist "Play Poker.url" echo %sError% %desktop%\Play Poker.url>>%systemdrive%\rapport.txt
)

if exist Pharmacy.url (
attrib -r -s -h Pharmacy.url  
del /a /f Pharmacy.url  
if NOT exist Pharmacy.url echo %desktop%\Pharmacy.url %sDel%>>%systemdrive%\rapport.txt
if exist Pharmacy.url echo %sError% %desktop%\Pharmacy.url>>%systemdrive%\rapport.txt
)

if exist Phentermine.url (
attrib -r -s -h Phentermine.url  
del /a /f Phentermine.url  
if NOT exist Phentermine.url echo %desktop%\Phentermine.url %sDel%>>%systemdrive%\rapport.txt
if exist Phentermine.url echo %sError% %desktop%\Phentermine.url>>%systemdrive%\rapport.txt
)

if exist "PopUp Blocker.url" (
attrib -r -s -h "PopUp Blocker.url"  
del /a /f "PopUp Blocker.url"  
if NOT exist "PopUp Blocker.url" echo %desktop%\PopUp Blocker.url %sDel%>>%systemdrive%\rapport.txt
if exist "PopUp Blocker.url" echo %sError% %desktop%\PopUp Blocker.url>>%systemdrive%\rapport.txt
)

if exist "Porn Dvd.url" (
attrib -r -s -h "Porn Dvd.url"  
del /a /f "Porn Dvd.url"  
if NOT exist "Porn Dvd.url" echo %desktop%\Porn Dvd.url %sDel%>>%systemdrive%\rapport.txt
if exist "Porn Dvd.url" echo %sError% %desktop%\Porn Dvd.url>>%systemdrive%\rapport.txt
)

if exist Pornstars.url (
attrib -r -s -h Pornstars.url  
del /a /f Pornstars.url  
if NOT exist Pornstars.url echo %desktop%\Pornstars.url %sDel%>>%systemdrive%\rapport.txt
if exist Pornstars.url echo %sError% %desktop%\Pornstars.url>>%systemdrive%\rapport.txt
)

if exist PrivacyProtector.url (
attrib -r -s -h PrivacyProtector.url  
del /a /f PrivacyProtector.url  
if NOT exist PrivacyProtector.url echo %desktop%\PrivacyProtector.url %sDel%>>%systemdrive%\rapport.txt
if exist PrivacyProtector.url echo %sError% %desktop%\PrivacyProtector.url>>%systemdrive%\rapport.txt
)

if exist "Privacy Protector.url" (
attrib -r -s -h "Privacy Protector.url"  
del /a /f "Privacy Protector.url"  
if NOT exist "Privacy Protector.url" echo %desktop%\Privacy Protector.url %sDel%>>%systemdrive%\rapport.txt
if exist "Privacy Protector.url" echo %sError% %desktop%\Privacy Protector.url>>%systemdrive%\rapport.txt
)

if exist "P.S.Guard spyware remover.lnk" (
attrib -r -s -h "P.S.Guard spyware remover.lnk"  
del /a /f "P.S.Guard spyware remover.lnk"  
if NOT exist "P.S.Guard spyware remover.lnk" echo %desktop%\P.S.Guard spyware remover.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "P.S.Guard spyware remover.lnk" echo %sError% %desktop%\P.S.Guard spyware remover.lnk>>%systemdrive%\rapport.txt
)

if exist "Real Estate.url" (
attrib -r -s -h "Real Estate.url"  
del /a /f "Real Estate.url"  
if NOT exist "Real Estate.url" echo %desktop%\Real Estate.url %sDel%>>%systemdrive%\rapport.txt
if exist "Real Estate.url" echo %sError% %desktop%\Real Estate.url>>%systemdrive%\rapport.txt
)

if exist "Registry Cleaner.lnk" (
attrib -r -s -h "Registry Cleaner.lnk"  
del /a /f "Registry Cleaner.lnk"  
if NOT exist "Registry Cleaner.lnk" echo %desktop%\Registry Cleaner.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Registry Cleaner.lnk" echo %sError% %desktop%\Registry Cleaner.lnk>>%systemdrive%\rapport.txt
)

if exist "Remove Adware.url" (
attrib -r -s -h "Remove Adware.url"  
del /a /f "Remove Adware.url"  
if NOT exist "Remove Adware.url" echo %desktop%\Remove Adware.url %sDel%>>%systemdrive%\rapport.txt
if exist "Remove Adware.url" echo %sError% %desktop%\Remove Adware.url>>%systemdrive%\rapport.txt
)

if exist "Remove Spyware.url" (
attrib -r -s -h "Remove Spyware.url"  
del /a /f "Remove Spyware.url"  
if NOT exist "Remove Spyware.url" echo %desktop%\Remove Spyware.url %sDel%>>%systemdrive%\rapport.txt
if exist "Remove Spyware.url" echo %sError% %desktop%\Remove Spyware.url>>%systemdrive%\rapport.txt
)

if exist sdfdsf (
attrib -r -s -h sdfdsf  
del /a /f sdfdsf  
if NOT exist sdfdsf echo %desktop%\sdfdsf %sDel%>>%systemdrive%\rapport.txt
if exist sdfdsf echo %sError% %desktop%\sdfdsf>>%systemdrive%\rapport.txt
)

if exist sdfff (
attrib -r -s -h sdfff  
del /a /f sdfff  
if NOT exist sdfff echo %desktop%\sdfff %sDel%>>%systemdrive%\rapport.txt
if exist sdfff echo %sError% %desktop%\sdfff>>%systemdrive%\rapport.txt
)

if exist "Sex Personals.url" (
attrib -r -s -h "Sex Personals.url"  
del /a /f "Sex Personals.url"  
if NOT exist "Sex Personals.url" echo %desktop%\Sex Personals.url %sDel%>>%systemdrive%\rapport.txt
if exist "Sex Personals.url" echo %sError% %desktop%\Sex Personals.url>>%systemdrive%\rapport.txt
)

if exist "Sport Betting.url" (
attrib -r -s -h "Sport Betting.url"  
del /a /f "Sport Betting.url"  
if NOT exist "Sport Betting.url" echo %desktop%\Sport Betting.url %sDel%>>%systemdrive%\rapport.txt
if exist "Sport Betting.url" echo %sError% %desktop%\Sport Betting.url>>%systemdrive%\rapport.txt
)

if exist SpyCrush.lnk (
attrib -r -s -h SpyCrush.lnk  
del /a /f SpyCrush.lnk  
if NOT exist SpyCrush.lnk echo %desktop%\SpyCrush.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyCrush.lnk echo %sError% %desktop%\SpyCrush.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyCrush 3.1.lnk" (
attrib -r -s -h "SpyCrush 3.1.lnk"  
del /a /f "SpyCrush 3.1.lnk"  
if NOT exist "SpyCrush 3.1.lnk" echo %desktop%\SpyCrush 3.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyCrush 3.1.lnk" echo %sError% %desktop%\SpyCrush 3.1.lnk>>%systemdrive%\rapport.txt
)

if exist SpyDawn.lnk (
attrib -r -s -h SpyDawn.lnk  
del /a /f SpyDawn.lnk  
if NOT exist SpyDawn.lnk echo %desktop%\SpyDawn.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyDawn.lnk echo %sError% %desktop%\SpyDawn.lnk>>%systemdrive%\rapport.txt
)

if exist SpyGuard.lnk (
attrib -r -s -h SpyGuard.lnk  
del /a /f SpyGuard.lnk  
if NOT exist SpyGuard.lnk echo %desktop%\SpyGuard.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyGuard.lnk echo %sError% %desktop%\SpyGuard.lnk>>%systemdrive%\rapport.txt
)

if exist SpyFalcon.lnk (
attrib -r -s -h SpyFalcon.lnk  
del /a /f SpyFalcon.lnk  
if NOT exist SpyFalcon.lnk echo %desktop%\SpyFalcon.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyFalcon.lnk echo %sError% %desktop%\SpyFalcon.lnk>>%systemdrive%\rapport.txt
)

if exist Spy-Heal.lnk (
attrib -r -s -h Spy-Heal.lnk  
del /a /f Spy-Heal.lnk  
if NOT exist Spy-Heal.lnk echo %desktop%\Spy-Heal.lnk %sDel%>>%systemdrive%\rapport.txt
if exist Spy-Heal.lnk echo %sError% %desktop%\Spy-Heal.lnk>>%systemdrive%\rapport.txt
)

if exist SpyHeal.lnk (
attrib -r -s -h SpyHeal.lnk  
del /a /f SpyHeal.lnk  
if NOT exist SpyHeal.lnk echo %desktop%\SpyHeal.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyHeal.lnk echo %sError% %desktop%\SpyHeal.lnk>>%systemdrive%\rapport.txt
)

if exist SpyHeals.lnk (
attrib -r -s -h SpyHeals.lnk  
del /a /f SpyHeals.lnk  
if NOT exist SpyHeals.lnk echo %desktop%\SpyHeals.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyHeals.lnk echo %sError% %desktop%\SpyHeals.lnk>>%systemdrive%\rapport.txt
)

if exist SpyLocked.lnk (
attrib -r -s -h SpyLocked.lnk  
del /a /f SpyLocked.lnk  
if NOT exist SpyLocked.lnk echo %desktop%\SpyLocked.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyLocked.lnk echo %sError% %desktop%\SpyLocked.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 3.6.lnk" (
attrib -r -s -h "SpyLocked 3.6.lnk"  
del /a /f "SpyLocked 3.6.lnk"  
if NOT exist "SpyLocked 3.6.lnk" echo %desktop%\SpyLocked 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 3.6.lnk" echo %sError% %desktop%\SpyLocked 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 3.7.lnk" (
attrib -r -s -h "SpyLocked 3.7.lnk"  
del /a /f "SpyLocked 3.7.lnk"  
if NOT exist "SpyLocked 3.7.lnk" echo %desktop%\SpyLocked 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 3.7.lnk" echo %sError% %desktop%\SpyLocked 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 3.9.lnk" (
attrib -r -s -h "SpyLocked 3.9.lnk"  
del /a /f "SpyLocked 3.9.lnk"  
if NOT exist "SpyLocked 3.9.lnk" echo %desktop%\SpyLocked 3.9.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 3.9.lnk" echo %sError% %desktop%\SpyLocked 3.9.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 4.0.lnk" (
attrib -r -s -h "SpyLocked 4.0.lnk"  
del /a /f "SpyLocked 4.0.lnk"  
if NOT exist "SpyLocked 4.0.lnk" echo %desktop%\SpyLocked 4.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 4.0.lnk" echo %sError% %desktop%\SpyLocked 4.0.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 4.1.lnk" (
attrib -r -s -h "SpyLocked 4.1.lnk"  
del /a /f "SpyLocked 4.1.lnk"  
if NOT exist "SpyLocked 4.1.lnk" echo %desktop%\SpyLocked 4.1.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 4.1.lnk" echo %sError% %desktop%\SpyLocked 4.1.lnk>>%systemdrive%\rapport.txt
)

if exist "SpyLocked 4.3.lnk" (
attrib -r -s -h "SpyLocked 4.3.lnk"  
del /a /f "SpyLocked 4.3.lnk"  
if NOT exist "SpyLocked 4.3.lnk" echo %desktop%\SpyLocked 4.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpyLocked 4.3.lnk" echo %sError% %desktop%\SpyLocked 4.3.lnk>>%systemdrive%\rapport.txt
)

if exist SpyMarshal.lnk (
attrib -r -s -h SpyMarshal.lnk  
del /a /f SpyMarshal.lnk  
if NOT exist SpyMarshal.lnk echo %desktop%\SpyMarshal.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyMarshal.lnk echo %sError% %desktop%\SpyMarshal.lnk>>%systemdrive%\rapport.txt
)

if exist SpySheriff.lnk (
attrib -r -s -h SpySheriff.lnk  
del /a /f SpySheriff.lnk  
if NOT exist SpySheriff.lnk echo %desktop%\SpySheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpySheriff.lnk echo %sError% %desktop%\SpySheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "Spyware?Malware Protection.url" (
attrib -r -s -h "Spyware?Malware Protection.url"  
del /a /f "Spyware?Malware Protection.url"  
if NOT exist "Spyware?Malware Protection.url" echo %desktop%\Spyware?Malware Protection.url %sDel%>>%systemdrive%\rapport.txt
if exist "Spyware?Malware Protection.url" echo %sError% %desktop%\Spyware?Malware Protection.url>>%systemdrive%\rapport.txt
)

if exist "Spyware Remover.url" (
attrib -r -s -h "Spyware Remover.url"  
del /a /f "Spyware Remover.url"  
if NOT exist "Spyware Remover.url" echo %desktop%\Spyware Remover.url %sDel%>>%systemdrive%\rapport.txt
if exist "Spyware Remover.url" echo %sError% %desktop%\Spyware Remover.url>>%systemdrive%\rapport.txt
)

if exist SpywareLocked.lnk (
attrib -r -s -h SpywareLocked.lnk  
del /a /f SpywareLocked.lnk  
if NOT exist SpywareLocked.lnk echo %desktop%\SpywareLocked.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareLocked.lnk echo %sError% %desktop%\SpywareLocked.lnk>>%systemdrive%\rapport.txt
)

if exist "SpywareLocked 3.3.lnk" (
attrib -r -s -h "SpywareLocked 3.3.lnk"  
del /a /f "SpywareLocked 3.3.lnk"  
if NOT exist "SpywareLocked 3.3.lnk" echo %desktop%\SpywareLocked 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpywareLocked 3.3.lnk" echo %sError% %desktop%\SpywareLocked 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "SpywareLocked 3.4.lnk" (
attrib -r -s -h "SpywareLocked 3.4.lnk"  
del /a /f "SpywareLocked 3.4.lnk"  
if NOT exist "SpywareLocked 3.4.lnk" echo %desktop%\SpywareLocked 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpywareLocked 3.4.lnk" echo %sError% %desktop%\SpywareLocked 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "SpywareLocked 3.5.lnk" (
attrib -r -s -h "SpywareLocked 3.5.lnk"  
del /a /f "SpywareLocked 3.5.lnk"  
if NOT exist "SpywareLocked 3.5.lnk" echo %desktop%\SpywareLocked 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "SpywareLocked 3.5.lnk" echo %sError% %desktop%\SpywareLocked 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist SpyQuake2.com.lnk (
attrib -r -s -h SpyQuake2.com.lnk  
del /a /f SpyQuake2.com.lnk  
if NOT exist SpyQuake2.com.lnk echo %desktop%\SpyQuake2.com.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpyQuake2.com.lnk echo %sError% %desktop%\SpyQuake2.com.lnk>>%systemdrive%\rapport.txt
)

if exist SpySoldier.lnk (
attrib -r -s -h SpySoldier.lnk  
del /a /f SpySoldier.lnk  
if NOT exist SpySoldier.lnk echo %desktop%\SpySoldier.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpySoldier.lnk echo %sError% %desktop%\SpySoldier.lnk>>%systemdrive%\rapport.txt
)

if exist SpywareKnight.lnk (
attrib -r -s -h SpywareKnight.lnk  
del /a /f SpywareKnight.lnk  
if NOT exist SpywareKnight.lnk echo %desktop%\SpywareKnight.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareKnight.lnk echo %sError% %desktop%\SpywareKnight.lnk>>%systemdrive%\rapport.txt
)

if exist SpywareQuake.lnk (
attrib -r -s -h SpywareQuake.lnk  
del /a /f SpywareQuake.lnk  
if NOT exist SpywareQuake.lnk echo %desktop%\SpywareQuake.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareQuake.lnk echo %sError% %desktop%\SpywareQuake.lnk>>%systemdrive%\rapport.txt
)

if exist SpywareQuake.com.lnk (
attrib -r -s -h SpywareQuake.com.lnk  
del /a /f SpywareQuake.com.lnk  
if NOT exist SpywareQuake.com.lnk echo %desktop%\SpywareQuake.com.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareQuake.com.lnk echo %sError% %desktop%\SpywareQuake.com.lnk>>%systemdrive%\rapport.txt
)

if exist SpywareSheriff.lnk (
attrib -r -s -h SpywareSheriff.lnk  
del /a /f SpywareSheriff.lnk  
if NOT exist SpywareSheriff.lnk echo %desktop%\SpywareSheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareSheriff.lnk echo %sError% %desktop%\SpywareSheriff.lnk>>%systemdrive%\rapport.txt
)

if exist SpywareStrike.lnk (
attrib -r -s -h SpywareStrike.lnk  
del /a /f SpywareStrike.lnk  
if NOT exist SpywareStrike.lnk echo %desktop%\SpywareStrike.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpywareStrike.lnk echo %sError% %desktop%\SpywareStrike.lnk>>%systemdrive%\rapport.txt
)

if exist "Spyware Soft Stop.lnk" (
attrib -r -s -h "Spyware Soft Stop.lnk" 
del /a /f "Spyware Soft Stop.lnk"  
if NOT exist "Spyware Soft Stop.lnk" echo %desktop%\Spyware Soft Stop.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Spyware Soft Stop.lnk" echo %sError% %desktop%\Spyware Soft Stop.lnk>>%systemdrive%\rapport.txt
)

if exist SystemDoctor.url (
attrib -r -s -h SystemDoctor.url  
del /a /f SystemDoctor.url  
if NOT exist SystemDoctor.url echo %desktop%\SystemDoctor.url %sDel%>>%systemdrive%\rapport.txt
if exist SystemDoctor.url echo %sError% %desktop%\SystemDoctor.url>>%systemdrive%\rapport.txt
)

if exist "Texas Holdem.url" (
attrib -r -s -h "Texas Holdem.url"  
del /a /f "Texas Holdem.url"  
if NOT exist "Texas Holdem.url" echo %desktop%\Texas Holdem.url %sDel%>>%systemdrive%\rapport.txt
if exist "Texas Holdem.url" echo %sError% %desktop%\Texas Holdem.url>>%systemdrive%\rapport.txt
)

if exist "TitanShield Antispyware.lnk" (
attrib -r -s -h "TitanShield Antispyware.lnk" 
del /a /f "TitanShield Antispyware.lnk"  
if NOT exist "TitanShield Antispyware.lnk" echo %desktop%\TitanShield Antispyware.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "TitanShield Antispyware.lnk" echo %sError% %desktop%\TitanShield Antispyware.lnk>>%systemdrive%\rapport.txt
)

if exist "Trust Cleaner.lnk" (
attrib -r -s -h "Trust Cleaner.lnk" 
del /a /f "Trust Cleaner.lnk"  
if NOT exist "Trust Cleaner.lnk" echo %desktop%\Trust Cleaner.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Trust Cleaner.lnk" echo %sError% %desktop%\Trust Cleaner.lnk>>%systemdrive%\rapport.txt
)

if exist viagra.url (
attrib -r -s -h viagra.url  
del /a /f viagra.url  
if NOT exist viagra.url echo %desktop%\viagra.url %sDel%>>%systemdrive%\rapport.txt
if exist viagra.url echo %sError% %desktop%\viagra.url>>%systemdrive%\rapport.txt
)

if exist "Video Slots.url" (
attrib -r -s -h "Video Slots.url"  
del /a /f "Video Slots.url"  
if NOT exist "Video Slots.url" echo %desktop%\Video Slots.url %sDel%>>%systemdrive%\rapport.txt
if exist "Video Slots.url" echo %sError% %desktop%\Video Slots.url>>%systemdrive%\rapport.txt
)

if exist "vb.lnk" (
attrib -r -s -h "vb.lnk" 
del /a /f "vb.lnk"  
if NOT exist "vb.lnk" echo %desktop%\vb.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "vb.lnk" echo %sError% %desktop%\vb.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusBlast v5.0.lnk" (
attrib -r -s -h "VirusBlast v5.0.lnk" 
del /a /f "VirusBlast v5.0.lnk"  
if NOT exist "VirusBlast v5.0.lnk" echo %desktop%\VirusBlast v5.0.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusBlast v5.0.lnk" echo %sError% %desktop%\VirusBlast v5.0.lnk>>%systemdrive%\rapport.txt
)

if exist "Virus-Burst.lnk" (
attrib -r -s -h "Virus-Burst.lnk" 
del /a /f "Virus-Burst.lnk"  
if NOT exist "Virus-Burst.lnk" echo %desktop%\Virus-Burst.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Virus-Burst.lnk" echo %sError% %desktop%\Virus-Burst.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusBurst.lnk" (
attrib -r -s -h "VirusBurst.lnk" 
del /a /f "VirusBurst.lnk"  
if NOT exist "VirusBurst.lnk" echo %desktop%\VirusBurst.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusBurst.lnk" echo %sError% %desktop%\VirusBurst.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusBurster.lnk" (
attrib -r -s -h "VirusBurster.lnk" 
del /a /f "VirusBurster.lnk"  
if NOT exist "VirusBurster.lnk" echo %desktop%\VirusBurster.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusBurster.lnk" echo %sError% %desktop%\VirusBurster.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusBursters.lnk" (
attrib -r -s -h "VirusBursters.lnk" 
del /a /f "VirusBursters.lnk"  
if NOT exist "VirusBursters.lnk" echo %desktop%\VirusBursters.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusBursters.lnk" echo %sError% %desktop%\VirusBursters.lnk>>%systemdrive%\rapport.txt
)

if exist "Virus-Bursters.lnk" (
attrib -r -s -h "Virus-Bursters.lnk" 
del /a /f "Virus-Bursters.lnk"  
if NOT exist "Virus-Bursters.lnk" echo %desktop%\Virus-Bursters.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "Virus-Bursters.lnk" echo %sError% %desktop%\Virus-Bursters.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusProtectPro 3.3.lnk" (
attrib -r -s -h "VirusProtectPro 3.3.lnk" 
del /a /f "VirusProtectPro 3.3.lnk"  
if NOT exist "VirusProtectPro 3.3.lnk" echo %desktop%\VirusProtectPro 3.3.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusProtectPro 3.3.lnk" echo %sError% %desktop%\VirusProtectPro 3.3.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusProtectPro 3.4.lnk" (
attrib -r -s -h "VirusProtectPro 3.4.lnk" 
del /a /f "VirusProtectPro 3.4.lnk"  
if NOT exist "VirusProtectPro 3.4.lnk" echo %desktop%\VirusProtectPro 3.4.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusProtectPro 3.4.lnk" echo %sError% %desktop%\VirusProtectPro 3.4.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusProtectPro 3.5.lnk" (
attrib -r -s -h "VirusProtectPro 3.5.lnk" 
del /a /f "VirusProtectPro 3.5.lnk"  
if NOT exist "VirusProtectPro 3.5.lnk" echo %desktop%\VirusProtectPro 3.5.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusProtectPro 3.5.lnk" echo %sError% %desktop%\VirusProtectPro 3.5.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusProtectPro 3.6.lnk" (
attrib -r -s -h "VirusProtectPro 3.6.lnk" 
del /a /f "VirusProtectPro 3.6.lnk"  
if NOT exist "VirusProtectPro 3.6.lnk" echo %desktop%\VirusProtectPro 3.6.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusProtectPro 3.6.lnk" echo %sError% %desktop%\VirusProtectPro 3.6.lnk>>%systemdrive%\rapport.txt
)

if exist "VirusProtectPro 3.7.lnk" (
attrib -r -s -h "VirusProtectPro 3.7.lnk" 
del /a /f "VirusProtectPro 3.7.lnk"  
if NOT exist "VirusProtectPro 3.7.lnk" echo %desktop%\VirusProtectPro 3.7.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "VirusProtectPro 3.7.lnk" echo %sError% %desktop%\VirusProtectPro 3.7.lnk>>%systemdrive%\rapport.txt
)

if exist wdcevf (
attrib -r -s -h wdcevf  
del /a /f wdcevf  
if NOT exist wdcevf echo %desktop%\wdcevf %sDel%>>%systemdrive%\rapport.txt
if exist wdcevf echo %sError% %desktop%\wdcevf>>%systemdrive%\rapport.txt
)

if exist wdcsadsad (
attrib -r -s -h wdcsadsad  
del /a /f wdcsadsad  
if NOT exist wdcsadsad echo %desktop%\wdcsadsad %sDel%>>%systemdrive%\rapport.txt
if exist wdcsadsad echo %sError% %desktop%\wdcsadsad>>%systemdrive%\rapport.txt
)

if exist "WinAntiSpyware 2007.url" (
attrib -r -s -h "WinAntiSpyware 2007.url" 
del /a /f "WinAntiSpyware 2007.url"  
if NOT exist "WinAntiSpyware 2007.url" echo %desktop%\WinAntiSpyware 2007.url %sDel%>>%systemdrive%\rapport.txt
if exist "WinAntiSpyware 2007.url" echo %sError% %desktop%\WinAntiSpyware 2007.url>>%systemdrive%\rapport.txt
)

if exist "X Password Generator.lnk" (
attrib -r -s -h "X Password Generator.lnk"  
del /a /f "X Password Generator.lnk"  
if NOT exist "X Password Generator.lnk" echo %desktop%\X Password Generator.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "X Password Generator.lnk" echo %sError% %desktop%\X Password Generator.lnk>>%systemdrive%\rapport.txt
)

if exist "x password manager.lnk" (
attrib -r -s -h "x password manager.lnk"  
del /a /f "x password manager.lnk"  
if NOT exist "x password manager.lnk" echo %desktop%\x password manager.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "x password manager.lnk" echo %sError% %desktop%\x password manager.lnk>>%systemdrive%\rapport.txt
)

if exist zxczxc (
attrib -r -s -h zxczxc  
del /a /f zxczxc  
if NOT exist zxczxc echo %desktop%\zxczxc %sDel%>>%systemdrive%\rapport.txt
if exist zxczxc echo %sError% %desktop%\zxczxc>>%systemdrive%\rapport.txt
)

popd





pushd %audesktop%

if exist "Air Tickets.url" (
attrib -r -s -h "Air Tickets.url"  
del /a /f "Air Tickets.url"  
if NOT exist "Air Tickets.url" echo %audesktop%\Air Tickets.url %sDel%>>%systemdrive%\rapport.txt
if exist "Air Tickets.url" echo %sError% %audesktop%\Air Tickets.url>>%systemdrive%\rapport.txt
)

if exist AntivirusGold.lnk (
attrib -r -s -h AntivirusGold.lnk  
del /a /f AntivirusGold.lnk  
if NOT exist AntivirusGold.lnk echo %audesktop%\AntivirusGold.lnk %sDel%>>%systemdrive%\rapport.txt
if exist AntivirusGold.lnk echo %sError% %audesktop%\AntivirusGold.lnk>>%systemdrive%\rapport.txt
)

if exist "Big Tits.url" (
attrib -r -s -h "Big Tits.url"  
del /a /f "Big Tits.url"  
if NOT exist "Big Tits.url" echo %audesktop%\Big Tits.url %sDel%>>%systemdrive%\rapport.txt
if exist "Big Tits.url" echo %sError% %audesktop%\Big Tits.url>>%systemdrive%\rapport.txt
)

if exist Blackjack.url (
attrib -r -s -h Blackjack.url  
del /a /f Blackjack.url  
if NOT exist Blackjack.url echo %audesktop%\Blackjack.url %sDel%>>%systemdrive%\rapport.txt
if exist Blackjack.url echo %sError% %audesktop%\Blackjack.url>>%systemdrive%\rapport.txt
)

if exist Blowjob.url (
attrib -r -s -h Blowjob.url  
del /a /f Blowjob.url  
if NOT exist Blowjob.url echo %audesktop%\Blowjob.url %sDel%>>%systemdrive%\rapport.txt
if exist Blowjob.url echo %sError% %audesktop%\Blowjob.url>>%systemdrive%\rapport.txt
)

if exist "Britney Spears.url" (
attrib -r -s -h "Britney Spears.url"  
del /a /f "Britney Spears.url"  
if NOT exist "Britney Spears.url" echo %audesktop%\Britney Spears.url %sDel%>>%systemdrive%\rapport.txt
if exist "Britney Spears.url" echo %sError% %audesktop%\Britney Spears.url>>%systemdrive%\rapport.txt
)

if exist "Car Insurance.url" (
attrib -r -s -h "Car Insurance.url"  
del /a /f "Car Insurance.url"  
if NOT exist "Car Insurance.url" echo %audesktop%\Car Insurance.url %sDel%>>%systemdrive%\rapport.txt
if exist "Car Insurance.url" echo %sError% %audesktop%\Car Insurance.url>>%systemdrive%\rapport.txt
)

if exist "Cheap Cigarettes.url" (
attrib -r -s -h "Cheap Cigarettes.url"  
del /a /f "Cheap Cigarettes.url"  
if NOT exist "Cheap Cigarettes.url" echo %audesktop%\Cheap Cigarettes.url %sDel%>>%systemdrive%\rapport.txt
if exist "Cheap Cigarettes.url" echo %sError% %audesktop%\Cheap Cigarettes.url>>%systemdrive%\rapport.txt
)

if exist "Cigarettes Discount.url" (
attrib -r -s -h "Cigarettes Discount.url"  
del /a /f "Cigarettes Discount.url"  
if NOT exist "Cigarettes Discount.url" echo %audesktop%\Cigarettes Discount.url %sDel%>>%systemdrive%\rapport.txt
if exist "Cigarettes Discount.url" echo %sError% %audesktop%\Cigarettes Discount.url>>%systemdrive%\rapport.txt
)

if exist "Credit Card.url" (
attrib -r -s -h "Credit Card.url"  
del /a /f "Credit Card.url"  
if NOT exist "Credit Card.url" echo %audesktop%\Credit Card.url %sDel%>>%systemdrive%\rapport.txt
if exist "Credit Card.url" echo %sError% %audesktop%\Credit Card.url>>%systemdrive%\rapport.txt
)

if exist Cruises.url (
attrib -r -s -h Cruises.url  
del /a /f Cruises.url  
if NOT exist Cruises.url echo %audesktop%\Cruises.url %sDel%>>%systemdrive%\rapport.txt
if exist Cruises.url echo %sError% %audesktop%\Cruises.url>>%systemdrive%\rapport.txt
)

if exist "Currency Trading.url" (
attrib -r -s -h "Currency Trading.url"  
del /a /f "Currency Trading.url"  
if NOT exist "Currency Trading.url" echo %audesktop%\Currency Trading.url %sDel%>>%systemdrive%\rapport.txt
if exist "Currency Trading.url" echo %sError% %audesktop%\Currency Trading.url>>%systemdrive%\rapport.txt
)

if exist "Forex Trading.url" (
attrib -r -s -h "Forex Trading.url"
del /a /f "Forex Trading.url"  
if NOT exist "Forex Trading.url" echo %audesktop%\Forex Trading.url %sDel%>>%systemdrive%\rapport.txt
if exist "Forex Trading.url" echo %sError% %audesktop%\Forex Trading.url>>%systemdrive%\rapport.txt
)

if exist "Free Ringtones.url" (
attrib -r -s -h "Free Ringtones.url"
del /a /f "Free Ringtones.url"  
if NOT exist "Free Ringtones" echo %audesktop%\Free Ringtones.url %sDel%>>%systemdrive%\rapport.txt
if exist "Free Ringtones.url" echo %sError% %audesktop%\Free Ringtones.url>>%systemdrive%\rapport.txt
)

if exist "Gift Ideas.url" (
attrib -r -s -h "Gift Ideas.url"
del /a /f "Gift Ideas.url"  
if NOT exist "Gift Ideas.url" echo %audesktop%\Gift Ideas.url %sDel%>>%systemdrive%\rapport.txt
if exist "Gift Ideas.url" echo %sError% %audesktop%\Gift Ideas.url>>%systemdrive%\rapport.txt
)

if exist "Group Sex.url" (
attrib -r -s -h "Group Sex.url"
del /a /f "Group Sex.url"  
if NOT exist "Group Sex.url" echo %audesktop%\Group Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Group Sex.url" echo %sError% %audesktop%\Group Sex.url>>%systemdrive%\rapport.txt
)

if exist "Home Loan.url" (
attrib -r -s -h "Home Loan.url"
del /a /f "Home Loan.url"  
if NOT exist "Home Loan.url" echo %audesktop%\Home Loan.url %sDel%>>%systemdrive%\rapport.txt
if exist "Home Loan.url" echo %sError% %audesktop%\Home Loan.url>>%systemdrive%\rapport.txt
)

if exist "Lesbian Sex.url" (
attrib -r -s -h "Lesbian Sex.url"  
del /a /f "Lesbian Sex.url"  
if NOT exist "Lesbian Sex.url" echo %audesktop%\Lesbian Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Lesbian Sex.url" echo %sError% %audesktop%\Lesbian Sex.url>>%systemdrive%\rapport.txt
)

if exist MP3.url (
attrib -r -s -h MP3.url  
del /a /f MP3.url  
if NOT exist MP3.url echo %audesktop%\MP3.url %sDel%>>%systemdrive%\rapport.txt
if exist MP3.url echo %sError% %audesktop%\MP3.url>>%systemdrive%\rapport.txt
)

if exist "Mp3 Download.url" (
attrib -r -s -h "Mp3 Download.url"  
del /a /f "Mp3 Download.url"  
if NOT exist "Mp3 Download.url" echo %audesktop%\Mp3 Download.url %sDel%>>%systemdrive%\rapport.txt
if exist "Mp3 Download.url" echo %sError% %audesktop%\Mp3 Download.url>>%systemdrive%\rapport.txt
)

if exist "Online Betting.url" (
attrib -r -s -h "Online Betting.url"  
del /a /f "Online Betting.url"  
if NOT exist "Online Betting.url" echo %audesktop%\Online Betting.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Betting.url" echo %sError% %audesktop%\Online Betting.url>>%systemdrive%\rapport.txt
)

if exist "Online Casino.url" (
attrib -r -s -h "Online Casino.url"  
del /a /f "Online Casino.url"  
if NOT exist "Online Casino.url" echo %audesktop%\Online Casino.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Casino.url" echo %sError% %audesktop%\Online Casino.url>>%systemdrive%\rapport.txt
)

if exist "Online Dating.url" (
attrib -r -s -h "Online Dating.url"  
del /a /f "Online Dating.url"  
if NOT exist "Online Dating.url" echo %audesktop%\Online Dating.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Dating.url" echo %sError% %audesktop%\Online Dating.url>>%systemdrive%\rapport.txt
)

if exist "Online Gambling.url" (
attrib -r -s -h "Online Gambling.url"  
del /a /f "Online Gambling.url"  
if NOT exist "Online Gambling.url" echo %audesktop%\Online Gambling.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Gambling.url" echo %sError% %audesktop%\Online Gambling.url>>%systemdrive%\rapport.txt
)

if exist "Online Security Guide.url" (
attrib -r -s -h "Online Security Guide.url"  
del /a /f "Online Security Guide.url"  
if NOT exist "Online Security Guide.url" echo %audesktop%\Online Security Guide.url %sDel%>>%systemdrive%\rapport.txt
if exist "Online Security Guide.url" echo %sError% %audesktop%\Online Security Guide.url>>%systemdrive%\rapport.txt
)

if exist "Oral Sex.url" (
attrib -r -s -h "Oral Sex.url"  
del /a /f "Oral Sex.url"  
if NOT exist "Oral Sex.url" echo %audesktop%\Oral Sex.url %sDel%>>%systemdrive%\rapport.txt
if exist "Oral Sex.url" echo %sError% %audesktop%\Oral Sex.url>>%systemdrive%\rapport.txt
)

if exist "Party Poker.url" (
attrib -r -s -h "Party Poker.url"  
del /a /f "Party Poker.url"  
if NOT exist "Party Poker.url" echo %audesktop%\Party Poker.url %sDel%>>%systemdrive%\rapport.txt
if exist "Party Poker.url" echo %sError% %audesktop%\Party Poker.url>>%systemdrive%\rapport.txt
)

if exist "Play Poker.url" (
attrib -r -s -h "Play Poker.url"  
del /a /f "Play Poker.url"  
if NOT exist "Play Poker.url" echo %audesktop%\Play Poker.url %sDel%>>%systemdrive%\rapport.txt
if exist "Play Poker.url" echo %sError% %audesktop%\Play Poker.url>>%systemdrive%\rapport.txt
)

if exist Pharmacy.url (
attrib -r -s -h Pharmacy.url  
del /a /f Pharmacy.url  
if NOT exist Pharmacy.url echo %audesktop%\Pharmacy.url %sDel%>>%systemdrive%\rapport.txt
if exist Pharmacy.url echo %sError% %audesktop%\Pharmacy.url>>%systemdrive%\rapport.txt
)

if exist Phentermine.url (
attrib -r -s -h Phentermine.url  
del /a /f Phentermine.url  
if NOT exist Phentermine.url echo %audesktop%\Phentermine.url %sDel%>>%systemdrive%\rapport.txt
if exist Phentermine.url echo %sError% %audesktop%\Phentermine.url>>%systemdrive%\rapport.txt
)

if exist "PopUp Blocker.url" (
attrib -r -s -h "PopUp Blocker.url"  
del /a /f "PopUp Blocker.url"  
if NOT exist "PopUp Blocker.url" echo %audesktop%\PopUp Blocker.url %sDel%>>%systemdrive%\rapport.txt
if exist "PopUp Blocker.url" echo %sError% %audesktop%\PopUp Blocker.url>>%systemdrive%\rapport.txt
)

if exist "Porn Dvd.url" (
attrib -r -s -h "Porn Dvd.url"  
del /a /f "Porn Dvd.url"  
if NOT exist "Porn Dvd.url" echo %audesktop%\Porn Dvd.url %sDel%>>%systemdrive%\rapport.txt
if exist "Porn Dvd.url" echo %sError% %audesktop%\Porn Dvd.url>>%systemdrive%\rapport.txt
)

if exist Pornstars.url (
attrib -r -s -h Pornstars.url  
del /a /f Pornstars.url  
if NOT exist Pornstars.url echo %audesktop%\Pornstars.url %sDel%>>%systemdrive%\rapport.txt
if exist Pornstars.url echo %sError% %audesktop%\Pornstars.url>>%systemdrive%\rapport.txt
)

if exist "P.S.Guard spyware remover.lnk" (
attrib -r -s -h "P.S.Guard spyware remover.lnk"  
del /a /f "P.S.Guard spyware remover.lnk"  
if NOT exist "P.S.Guard spyware remover.lnk" echo %audesktop%\P.S.Guard spyware remover.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "P.S.Guard spyware remover.lnk" echo %sError% %audesktop%\P.S.Guard spyware remover.lnk>>%systemdrive%\rapport.txt
)

if exist "Remove Spyware.url" (
attrib -r -s -h "Remove Spyware.url"  
del /a /f "Remove Spyware.url"  
if NOT exist "Remove Spyware.url" echo %audesktop%\Remove Spyware.url %sDel%>>%systemdrive%\rapport.txt
if exist "Remove Spyware.url" echo %sError% %audesktop%\Remove Spyware.url>>%systemdrive%\rapport.txt
)

if exist "Real Estate.url" (
attrib -r -s -h "Real Estate.url"  
del /a /f "Real Estate.url"  
if NOT exist "Real Estate.url" echo %audesktop%\Real Estate.url %sDel%>>%systemdrive%\rapport.txt
if exist "Real Estate.url" echo %sError% %audesktop%\Real Estate.url>>%systemdrive%\rapport.txt
)

if exist "Security Troubleshooting.url" (
attrib -r -s -h "Security Troubleshooting.url"  
del /a /f "Security Troubleshooting.url"  
if NOT exist "Security Troubleshooting.url" echo %audesktop%\Security Troubleshooting.url %sDel%>>%systemdrive%\rapport.txt
if exist "Security Troubleshooting.url" echo %sError% %audesktop%\Security Troubleshooting.url>>%systemdrive%\rapport.txt
)

if exist "Sport Betting.url" (
attrib -r -s -h "Sport Betting.url"  
del /a /f "Sport Betting.url"  
if NOT exist "Sport Betting.url" echo %audesktop%\Sport Betting.url %sDel%>>%systemdrive%\rapport.txt
if exist "Sport Betting.url" echo %sError% %audesktop%\Sport Betting.url>>%systemdrive%\rapport.txt
)

if exist SpySheriff.lnk (
attrib -r -s -h SpySheriff.lnk  
del /a /f SpySheriff.lnk  
if NOT exist SpySheriff.lnk echo %audesktop%\SpySheriff.lnk %sDel%>>%systemdrive%\rapport.txt
if exist SpySheriff.lnk echo %sError% %audesktop%\SpySheriff.lnk>>%systemdrive%\rapport.txt
)

if exist "Spyware Remover.url" (
attrib -r -s -h "Spyware Remover.url"  
del /a /f "Spyware Remover.url"  
if NOT exist "Spyware Remover.url" echo %audesktop%\Spyware Remover.url %sDel%>>%systemdrive%\rapport.txt
if exist "Spyware Remover.url" echo %sError% %audesktop%\Spyware Remover.url>>%systemdrive%\rapport.txt
)

if exist "Texas Holdem.url" (
attrib -r -s -h "Texas Holdem.url"  
del /a /f "Texas Holdem.url"  
if NOT exist "Texas Holdem.url" echo %audesktop%\Texas Holdem.url %sDel%>>%systemdrive%\rapport.txt
if exist "Texas Holdem.url" echo %sError% %audesktop%\Texas Holdem.url>>%systemdrive%\rapport.txt
)

if exist viagra.url (
attrib -r -s -h viagra.url  
del /a /f viagra.url  
if NOT exist viagra.url echo %audesktop%\viagra.url %sDel%>>%systemdrive%\rapport.txt
if exist viagra.url echo %sError% %audesktop%\viagra.url>>%systemdrive%\rapport.txt
)

if exist "WinHound spyware remover.lnk" (
attrib -r -s -h "WinHound spyware remover.lnk"  
del /a /f "WinHound spyware remover.lnk"  
if NOT exist "WinHound spyware remover.lnk" echo %audesktop%\WinHound spyware remover.lnk %sDel%>>%systemdrive%\rapport.txt
if exist "WinHound spyware remover.lnk" echo %sError% %audesktop%\WinHound spyware remover.lnk>>%systemdrive%\rapport.txt
)






popd






if exist "%favorites%\Antivirus Test Online.url" (
attrib -r -s -h "%favorites%\Antivirus Test Online.url"
del /a /f "%favorites%\Antivirus Test Online.url"
if NOT exist "%favorites%\Antivirus Test Online.url" echo %favorites%\Antivirus Test Online.url %sDel%>>%systemdrive%\rapport.txt
if exist "%favorites%\Antivirus Test Online.url" echo %sError% %favorites%\Antivirus Test Online.url>>%systemdrive%\rapport.txt
)

if exist "%favorites%\Online Security Test.url" (
attrib -r -s -h "%favorites%\Online Security Test.url"
del /a /f "%favorites%\Online Security Test.url"
if NOT exist "%favorites%\Online Security Test.url" echo %favorites%\Online Security Test.url %sDel%>>%systemdrive%\rapport.txt
if exist "%favorites%\Online Security Test.url" echo %sError% %favorites%\Online Security Test.url>>%systemdrive%\rapport.txt
)

if exist "%favorites%\Error Cleaner.url" (
attrib -r -s -h "%favorites%\Error Cleaner.url"
del /a /f "%favorites%\Error Cleaner.url"
if NOT exist "%favorites%\Error Cleaner.url" echo %favorites%\Error Cleaner.url %sDel%>>%systemdrive%\rapport.txt
if exist "%favorites%\Error Cleaner.url" echo %sError% %favorites%\Error Cleaner.url>>%systemdrive%\rapport.txt
)

if exist "%favorites%\Privacy Protector.url" (
attrib -r -s -h "%favorites%\Privacy Protector.url"
del /a /f "%favorites%\Privacy Protector.url"
if NOT exist "%favorites%\Privacy Protector.url" echo %favorites%\Privacy Protector.url %sDel%>>%systemdrive%\rapport.txt
if exist "%favorites%\Privacy Protector.url" echo %sError% %favorites%\Privacy Protector.url>>%systemdrive%\rapport.txt
)

if exist "%favorites%\Spyware&Malware Protection.url" (
attrib -r -s -h "%favorites%\Spyware&Malware Protection.url"
del /a /f "%favorites%\Spyware&Malware Protection.url"
if NOT exist "%favorites%\Spyware&Malware Protection.url" echo %favorites%\Spyware&Malware Protection.url %sDel%>>%systemdrive%\rapport.txt
if exist "%favorites%\Spyware&Malware Protection.url" echo %sError% %favorites%\Spyware&Malware Protection.url>>%systemdrive%\rapport.txt
)















if exist "%ProgramFiles%\paytime.exe" (
attrib -r -s -h "%ProgramFiles%\paytime.exe"
del /a /f "%ProgramFiles%\paytime.exe"
if NOT exist "%ProgramFiles%\paytime.exe" echo %ProgramFiles%\paytime.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\paytime.exe" echo %sError% %ProgramFiles%\paytime.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\secure32.html" (
attrib -r -s -h "%ProgramFiles%\secure32.html"
del /a /f "%ProgramFiles%\secure32.html"
if NOT exist "%ProgramFiles%\secure32.html" echo %ProgramFiles%\secure32.html %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\secure32.html" echo %sError% %ProgramFiles%\secure32.html>>%systemdrive%\rapport.txt
)






if exist "%ProgramFiles%\AdwareDelete" (
RD /s /q "%ProgramFiles%\AdwareDelete"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\AdwareDelete\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AdwareSheriff" (
RD /s /q "%ProgramFiles%\AdwareSheriff"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\AdwareSheriff\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AlfaCleaner" (
RD /s /q "%ProgramFiles%\AlfaCleaner"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\AlfaCleaner\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Antispyware Soldier" (
RD /s /q "%ProgramFiles%\Antispyware Soldier"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Antispyware Soldier\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AntiVermeans" (
RD /s /q "%ProgramFiles%\AntiVermeans"
if NOT exist "%ProgramFiles%\AntiVermeans" echo %ProgramFiles%\AntiVermeans\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVermeans" echo %sError% %ProgramFiles%\AntiVermeans\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AntiVermins" (
RD /s /q "%ProgramFiles%\AntiVermins"
if NOT exist "%ProgramFiles%\AntiVermins" echo %ProgramFiles%\AntiVermins\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVermins" echo %sError% %ProgramFiles%\AntiVermins\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AntiVerminser" (
RD /s /q "%ProgramFiles%\AntiVerminser"
if NOT exist "%ProgramFiles%\AntiVerminser" echo %ProgramFiles%\AntiVerminser\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\AntiVerminser" echo %sError% %ProgramFiles%\AntiVerminser\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AntivirusGold" (
RD /s /q "%ProgramFiles%\AntivirusGold"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\AntivirusGold\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\AntivirusGolden" (
RD /s /q "%ProgramFiles%\AntivirusGolden"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\AntivirusGolden\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Brain Codec" (
RD /s /q "%ProgramFiles%\Brain Codec"
if NOT exist "%ProgramFiles%\Brain Codec" echo %ProgramFiles%\Brain Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Brain Codec" echo %sError% %ProgramFiles%\Brain Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\BraveSentry" (
RD /s /q "%ProgramFiles%\BraveSentry"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\BraveSentry\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\ContraVirus" (
RD /s /q "%ProgramFiles%\ContraVirus"
if NOT exist "%ProgramFiles%\ContraVirus" echo %ProgramFiles%\ContraVirus\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\ContraVirus" echo %sError% %ProgramFiles%\ContraVirus\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Daily Weather Forecast" (
RD /s /q "%ProgramFiles%\Daily Weather Forecast"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Daily Weather Forecast\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\DirectVideo" (
RD /s /q "%ProgramFiles%\DirectVideo"
if NOT exist "%ProgramFiles%\DirectVideo" echo %ProgramFiles%\DirectVideo\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\DirectVideo" echo %sError% %ProgramFiles%\DirectVideo\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\dr.exe" (
attrib -r -s -h "%ProgramFiles%\dr.exe"
del /a /f "%ProgramFiles%\dr.exe"
if NOT exist "%ProgramFiles%\dr.exe" echo %ProgramFiles%\dr.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\dr.exe" echo %sError% %ProgramFiles%\dr.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\dr.exe~" (
attrib -r -s -h "%ProgramFiles%\dr.exe~"
del /a /f "%ProgramFiles%\dr.exe~"
if NOT exist "%ProgramFiles%\dr.exe~" echo %ProgramFiles%\dr.exe~ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\dr.exe~" echo %sError% %ProgramFiles%\dr.exe~>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\EliteCodec" (
RD /s /q "%ProgramFiles%\EliteCodec"
if NOT exist "%ProgramFiles%\EliteCodec" echo %ProgramFiles%\EliteCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\EliteCodec" echo %sError% %ProgramFiles%\EliteCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\eMedia Codec" (
RD /s /q "%ProgramFiles%\eMedia Codec"
if NOT exist "%ProgramFiles%\eMedia Codec" echo %ProgramFiles%\eMedia Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\eMedia Codec" echo %sError% %ProgramFiles%\eMedia Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\FreeVideo" (
RD /s /q "%ProgramFiles%\FreeVideo"
if NOT exist "%ProgramFiles%\FreeVideo" echo %ProgramFiles%\FreeVideo\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\FreeVideo" echo %sError% %ProgramFiles%\FreeVideo\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Gold Codec" (
RD /s /q "%ProgramFiles%\Gold Codec"
if NOT exist "%ProgramFiles%\Gold Codec" echo %ProgramFiles%\Gold Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Gold Codec" echo %sError% %ProgramFiles%\Gold Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\HQ Codec" (
RD /s /q "%ProgramFiles%\HQ Codec"
if NOT exist "%ProgramFiles%\HQ Codec" echo %ProgramFiles%\HQ Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQ Codec" echo %sError% %ProgramFiles%\HQ Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\HQvideo" (
RD /s /q "%ProgramFiles%\HQvideo"
if NOT exist "%ProgramFiles%\HQvideo" echo %ProgramFiles%\HQvideo\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQvideo" echo %sError% %ProgramFiles%\HQvideo\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\HQVideoCodec" (
RD /s /q "%ProgramFiles%\HQVideoCodec"
if NOT exist "%ProgramFiles%\HQVideoCodec" echo %ProgramFiles%\HQVideoCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\HQVideoCodec" echo %sError% %ProgramFiles%\HQVideoCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\iCodecPack" (
RD /s /q "%ProgramFiles%\iCodecPack"
if NOT exist "%ProgramFiles%\iCodecPack" echo %ProgramFiles%\iCodecPack\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iCodecPack" echo %sError% %ProgramFiles%\iCodecPack\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Image ActiveX Access" (
RD /s /q "%ProgramFiles%\Image ActiveX Access"
if NOT exist "%ProgramFiles%\Image ActiveX Access" echo %ProgramFiles%\Image ActiveX Access\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Image ActiveX Access" echo %sError% %ProgramFiles%\Image ActiveX Access\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Image ActiveX Object" (
RD /s /q "%ProgramFiles%\Image ActiveX Object"
if NOT exist "%ProgramFiles%\Image ActiveX Object" echo %ProgramFiles%\Image ActiveX Object\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Image ActiveX Object" echo %sError% %ProgramFiles%\Image ActiveX Object\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\iMediaCodec" (
RD /s /q "%ProgramFiles%\iMediaCodec"
if NOT exist "%ProgramFiles%\iMediaCodec" echo %ProgramFiles%\iMediaCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iMediaCodec" echo %sError% %ProgramFiles%\iMediaCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\IntCodec" (
RD /s /q "%ProgramFiles%\IntCodec"
if NOT exist "%ProgramFiles%\IntCodec" echo %ProgramFiles%\IntCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\IntCodec" echo %sError% %ProgramFiles%\IntCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Internet Security" (
RD /s /q "%ProgramFiles%\Internet Security"
if NOT exist "%ProgramFiles%\Internet Security" echo %ProgramFiles%\Internet Security\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Internet Security" echo %sError% %ProgramFiles%\Internet Security\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\iVideoCodec" (
RD /s /q "%ProgramFiles%\iVideoCodec"
if NOT exist "%ProgramFiles%\iVideoCodec" echo %ProgramFiles%\iVideoCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iVideoCodec" echo %sError% %ProgramFiles%\iVideoCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\JPEG Encoder" (
RD /s /q "%ProgramFiles%\JPEG Encoder"
if NOT exist "%ProgramFiles%\JPEG Encoder" echo %ProgramFiles%\JPEG Encoder\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\JPEG Encoder" echo %sError% %ProgramFiles%\JPEG Encoder\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Key Generator" (
RD /s /q "%ProgramFiles%\Key Generator"
if NOT exist "%ProgramFiles%\Key Generator" echo %ProgramFiles%\Key Generator\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Key Generator" echo %sError% %ProgramFiles%\Key Generator\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MalwareWipe" (
RD /s /q "%ProgramFiles%\MalwareWipe"
if NOT exist "%ProgramFiles%\MalwareWipe" echo %ProgramFiles%\MalwareWipe\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWipe" echo %sError% %ProgramFiles%\MalwareWipe\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MalwareWiped" (
RD /s /q "%ProgramFiles%\MalwareWiped"
if NOT exist "%ProgramFiles%\MalwareWiped" echo %ProgramFiles%\MalwareWiped\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWiped" echo %sError% %ProgramFiles%\MalwareWiped\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MalwaresWipeds" (
RD /s /q "%ProgramFiles%\MalwaresWipeds"
if NOT exist "%ProgramFiles%\MalwaresWipeds" echo %ProgramFiles%\MalwaresWipeds\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwaresWipeds" echo %sError% %ProgramFiles%\MalwaresWipeds\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MalwareWipePro" (
RD /s /q "%ProgramFiles%\MalwareWipePro"
if NOT exist "%ProgramFiles%\MalwareWipePro" echo %ProgramFiles%\MalwareWipePro\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWipePro" echo %sError% %ProgramFiles%\MalwareWipePro\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MalwareWiper" (
RD /s /q "%ProgramFiles%\MalwareWiper"
if NOT exist "%ProgramFiles%\MalwareWiper" echo %ProgramFiles%\MalwareWiper\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MalwareWiper" echo %sError% %ProgramFiles%\MalwareWiper\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Malware-Wipe" (
RD /s /q "%ProgramFiles%\Malware-Wipe"
if NOT exist "%ProgramFiles%\Malware-Wipe" echo %ProgramFiles%\Malware-Wipe\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Malware-Wipe" echo %sError% %ProgramFiles%\Malware-Wipe\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Media-Codec" (
RD /s /q "%ProgramFiles%\Media-Codec"
if NOT exist "%ProgramFiles%\Media-Codec" echo %ProgramFiles%\Media-Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Media-Codec" echo %sError% %ProgramFiles%\Media-Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MediaCodec" (
RD /s /q "%ProgramFiles%\MediaCodec"
if NOT exist "%ProgramFiles%\MediaCodec" echo %ProgramFiles%\MediaCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MediaCodec" echo %sError% %ProgramFiles%\MediaCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MMediaCodec" (
RD /s /q "%ProgramFiles%\MMediaCodec"
if NOT exist "%ProgramFiles%\MMediaCodec" echo %ProgramFiles%\MMediaCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MMediaCodec" echo %sError% %ProgramFiles%\MMediaCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MovieBox" (
RD /s /q "%ProgramFiles%\MovieBox"
if NOT exist "%ProgramFiles%\MovieBox" echo %ProgramFiles%\MovieBox\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MovieBox" echo %sError% %ProgramFiles%\MovieBox\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MovieCommander" (
RD /s /q "%ProgramFiles%\MovieCommander"
if NOT exist "%ProgramFiles%\MovieCommander" echo %ProgramFiles%\MovieCommander\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MovieCommander" echo %sError% %ProgramFiles%\MovieCommander\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MPVIDEOCODEC" (
RD /s /q "%ProgramFiles%\MPVIDEOCODEC"
if NOT exist "%ProgramFiles%\MPVIDEOCODEC" echo %ProgramFiles%\MPVIDEOCODEC\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MPVIDEOCODEC" echo %sError% %ProgramFiles%\MPVIDEOCODEC\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MSmessangerapi" (
RD /s /q "%ProgramFiles%\MSmessangerapi"
if NOT exist "%ProgramFiles%\MSmessangerapi" echo %ProgramFiles%\MSmessangerapi\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MSmessangerapi" echo %sError% %ProgramFiles%\MSmessangerapi\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\My Pass Generator" (
RD /s /q "%ProgramFiles%\My Pass Generator"
if NOT exist "%ProgramFiles%\My Pass Generator" echo %ProgramFiles%\My Pass Generator\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\My Pass Generator" echo %sError% %ProgramFiles%\My Pass Generator\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\MW" (
RD /s /q "%ProgramFiles%\MW"
if NOT exist "%ProgramFiles%\MW" echo %ProgramFiles%\MW\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\MW" echo %sError% %ProgramFiles%\MW\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\NewMediaCodec" (
RD /s /q "%ProgramFiles%\NewMediaCodec"
if NOT exist "%ProgramFiles%\NewMediaCodec" echo %ProgramFiles%\NewMediaCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\NewMediaCodec" echo %sError% %ProgramFiles%\NewMediaCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\patcher.exe" (
attrib -r -s -h "%ProgramFiles%\patcher.exe"
del /a /f "%ProgramFiles%\patcher.exe"
if NOT exist "%ProgramFiles%\patcher.exe" echo %ProgramFiles%\patcher.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\patcher.exe" echo %sError% %ProgramFiles%\patcher.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PCODEC" (
RD /s /q "%ProgramFiles%\PCODEC"
if NOT exist "%ProgramFiles%\PCODEC" echo %ProgramFiles%\PCODEC\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PCODEC" echo %sError% %ProgramFiles%\PCODEC\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Perfect Codec" (
RD /s /q "%ProgramFiles%\Perfect Codec"
if NOT exist "%ProgramFiles%\Perfect Codec" echo %ProgramFiles%\Perfect Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Perfect Codec" echo %sError% %ProgramFiles%\Perfect Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PestCapture" (
RD /s /q "%ProgramFiles%\PestCapture"
if NOT exist "%ProgramFiles%\PestCapture" echo %ProgramFiles%\PestCapture\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PestCapture" echo %sError% %ProgramFiles%\PestCapture\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PestTrap" (
RD /s /q "%ProgramFiles%\PestTrap"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\PestTrap\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PornMag Pass" (
RD /s /q "%ProgramFiles%\PornMag Pass"
if NOT exist "%ProgramFiles%\PornMag Pass" echo %ProgramFiles%\PornMag Pass\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornMag Pass" echo %sError% %ProgramFiles%\PornMag Pass\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PornPass Manager" (
RD /s /q "%ProgramFiles%\PornPass Manager"
if NOT exist "%ProgramFiles%\PornPass Manager" echo %ProgramFiles%\PornPass Manager\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornPass Manager" echo %sError% %ProgramFiles%\PornPass Manager\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PowerCodec" (
RD /s /q "%ProgramFiles%\PowerCodec"
if NOT exist "%ProgramFiles%\PowerCodec" echo %ProgramFiles%\PowerCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PowerCodec" echo %sError% %ProgramFiles%\PowerCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PornoPlayer" (
RD /s /q "%ProgramFiles%\PornoPlayer"
if NOT exist "%ProgramFiles%\PornoPlayer" echo %ProgramFiles%\PornoPlayer\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PornoPlayer" echo %sError% %ProgramFiles%\PornoPlayer\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PrivateVideo" (
RD /s /q "%ProgramFiles%\PrivateVideo"
if NOT exist "%ProgramFiles%\PrivateVideo" echo %ProgramFiles%\PrivateVideo\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\PrivateVideo" echo %sError% %ProgramFiles%\PrivateVideo\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Protection Tools" (
RD /s /q "%ProgramFiles%\Protection Tools"
if NOT exist "%ProgramFiles%\Protection Tools" echo %ProgramFiles%\Protection Tools\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Protection Tools" echo %sError% %ProgramFiles%\Protection Tools\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\QualityCodec" (
RD /s /q "%ProgramFiles%\QualityCodec"
if NOT exist "%ProgramFiles%\QualityCodec" echo %ProgramFiles%\QualityCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\QualityCodec" echo %sError% %ProgramFiles%\QualityCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\PSGuard" (
RD /s /q "%ProgramFiles%\PSGuard"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\PSGuard\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\P.S.Guard" (
RD /s /q "%ProgramFiles%\P.S.Guard"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\P.S.Guard\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\RegistryCleaner" (
RD /s /q "%ProgramFiles%\RegistryCleaner"
if NOT exist "%ProgramFiles%\RegistryCleaner" echo %ProgramFiles%\RegistryCleaner\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\RegistryCleaner" echo %sError% %ProgramFiles%\RegistryCleaner\>>%systemdrive%\rapport.txt
)


if exist "%ProgramFiles%\Safety Bar" (
RD /s /q "%ProgramFiles%\Safety Bar"
if NOT exist "%ProgramFiles%\Safety Bar" echo %ProgramFiles%\Safety Bar\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Safety Bar" echo %sError% %ProgramFiles%\Safety Bar\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Search Maid" (
RD /s /q "%ProgramFiles%\Search Maid"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Search Maid\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Security IGuard" (
RD /s /q "%ProgramFiles%\Security IGuard"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Security IGuard\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Security Toolbar" (
RD /s /q "%ProgramFiles%\Security Toolbar"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Security Toolbar\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Security Tools" (
RD /s /q "%ProgramFiles%\Security Tools"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Security Tools\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\serial.dat" (
attrib -r -s -h "%ProgramFiles%\serial.dat"
del /a /f "%ProgramFiles%\serial.dat"
if NOT exist "%ProgramFiles%\serial.dat" echo %ProgramFiles%\serial.dat %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\serial.dat" echo %sError% %ProgramFiles%\serial.dat>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\serial.zip" (
attrib -r -s -h "%ProgramFiles%\serial.zip"
del /a /f "%ProgramFiles%\serial.zip"
if NOT exist "%ProgramFiles%\serial.zip" echo %ProgramFiles%\serial.zip %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\serial.zip" echo %sError% %ProgramFiles%\serial.zip>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Silver Codec" (
RD /s /q "%ProgramFiles%\Silver Codec"
if NOT exist "%ProgramFiles%\Silver Codec" echo %ProgramFiles%\Silver Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Silver Codec" echo %sError% %ProgramFiles%\Silver Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SiteEntry" (
RD /s /q "%ProgramFiles%\SiteEntry"
if NOT exist "%ProgramFiles%\SiteEntry" echo %ProgramFiles%\SiteEntry\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SiteEntry" echo %sError% %ProgramFiles%\SiteEntry\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SiteTicket" (
RD /s /q "%ProgramFiles%\SiteTicket"
if NOT exist "%ProgramFiles%\SiteTicket" echo %ProgramFiles%\SiteTicket\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SiteTicket" echo %sError% %ProgramFiles%\SiteTicket\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SoftCodec" (
RD /s /q "%ProgramFiles%\SoftCodec"
if NOT exist "%ProgramFiles%\SoftCodec" echo %ProgramFiles%\SoftCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SoftCodec" echo %sError% %ProgramFiles%\SoftCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyAxe" (
RD /s /q "%ProgramFiles%\SpyAxe"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyAxe\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyCrush" (
RD /s /q "%ProgramFiles%\SpyCrush"
if NOT exist "%ProgramFiles%\SpyCrush" echo %ProgramFiles%\SpyCrush\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyCrush" echo %sError% %ProgramFiles%\SpyCrush\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyCrush 3.1" (
RD /s /q "%ProgramFiles%\SpyCrush 3.1"
if NOT exist "%ProgramFiles%\SpyCrush 3.1" echo %ProgramFiles%\SpyCrush 3.1\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyCrush 3.1" echo %sError% %ProgramFiles%\SpyCrush 3.1\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyDawn" (
RD /s /q "%ProgramFiles%\SpyDawn"
if NOT exist "%ProgramFiles%\SpyDawn" echo %ProgramFiles%\SpyDawn\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyDawn" echo %sError% %ProgramFiles%\SpyDawn\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyGuard" (
RD /s /q "%ProgramFiles%\SpyGuard"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyGuard\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyFalcon" (
RD /s /q "%ProgramFiles%\SpyFalcon"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyFalcon\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Spy-Heal" (
RD /s /q "%ProgramFiles%\Spy-Heal"
if NOT exist "%ProgramFiles%\Spy-Heal" echo %ProgramFiles%\Spy-Heal\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Spy-Heal" echo %sError% %ProgramFiles%\Spy-Heal\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyHeal" (
RD /s /q "%ProgramFiles%\SpyHeal"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyHeal\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyHeals" (
RD /s /q "%ProgramFiles%\SpyHeals"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyHeals\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked" (
RD /s /q "%ProgramFiles%\SpyLocked"
if NOT exist "%ProgramFiles%\SpyLocked" echo %ProgramFiles%\SpyLocked\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked" echo %sError% %ProgramFiles%\SpyLocked\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 3.6" (
RD /s /q "%ProgramFiles%\SpyLocked 3.6"
if NOT exist "%ProgramFiles%\SpyLocked 3.6" echo %ProgramFiles%\SpyLocked 3.6\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.6" echo %sError% %ProgramFiles%\SpyLocked 3.6\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 3.7" (
RD /s /q "%ProgramFiles%\SpyLocked 3.7"
if NOT exist "%ProgramFiles%\SpyLocked 3.7" echo %ProgramFiles%\SpyLocked 3.7\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.7" echo %sError% %ProgramFiles%\SpyLocked 3.7\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 3.9" (
RD /s /q "%ProgramFiles%\SpyLocked 3.9"
if NOT exist "%ProgramFiles%\SpyLocked 3.9" echo %ProgramFiles%\SpyLocked 3.9\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 3.9" echo %sError% %ProgramFiles%\SpyLocked 3.9\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 4.0" (
RD /s /q "%ProgramFiles%\SpyLocked 4.0"
if NOT exist "%ProgramFiles%\SpyLocked 4.0" echo %ProgramFiles%\SpyLocked 4.0\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.0" echo %sError% %ProgramFiles%\SpyLocked 4.0\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 4.1" (
RD /s /q "%ProgramFiles%\SpyLocked 4.1"
if NOT exist "%ProgramFiles%\SpyLocked 4.1" echo %ProgramFiles%\SpyLocked 4.1\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.1" echo %sError% %ProgramFiles%\SpyLocked 4.1\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyLocked 4.3" (
RD /s /q "%ProgramFiles%\SpyLocked 4.3"
if NOT exist "%ProgramFiles%\SpyLocked 4.3" echo %ProgramFiles%\SpyLocked 4.3\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyLocked 4.3" echo %sError% %ProgramFiles%\SpyLocked 4.3\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyMarshal" (
RD /s /q "%ProgramFiles%\SpyMarshal"
if NOT exist "%ProgramFiles%\SpyMarshal" echo %ProgramFiles%\SpyMarshal\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpyMarshal" echo %sError% %ProgramFiles%\SpyMarshal\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpySheriff" (
RD /s /q "%ProgramFiles%\SpySheriff"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpySheriff\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpySoldier" (
RD /s /q "%ProgramFiles%\SpySoldier"
if NOT exist "%ProgramFiles%\SpySoldier" echo %ProgramFiles%\SpySoldier\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpySoldier" echo %sError% %ProgramFiles%\SpySoldier\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyKiller" (
RD /s /q "%ProgramFiles%\SpyKiller"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyKiller\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpyQuake2.com" (
RD /s /q "%ProgramFiles%\SpyQuake2.com"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpyQuake2.com\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareKnight" (
RD /s /q "%ProgramFiles%\SpywareKnight"
if NOT exist "%ProgramFiles%\SpywareKnight" echo %ProgramFiles%\SpywareKnight\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareKnight" echo %sError% %ProgramFiles%\SpywareKnight\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareLocked" (
RD /s /q "%ProgramFiles%\SpywareLocked"
if NOT exist "%ProgramFiles%\SpywareLocked" echo %ProgramFiles%\SpywareLocked\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked" echo %sError% %ProgramFiles%\SpywareLocked\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareLocked 3.3" (
RD /s /q "%ProgramFiles%\SpywareLocked 3.3"
if NOT exist "%ProgramFiles%\SpywareLocked 3.3" echo %ProgramFiles%\SpywareLocked 3.3\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.3" echo %sError% %ProgramFiles%\SpywareLocked 3.3\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareLocked 3.4" (
RD /s /q "%ProgramFiles%\SpywareLocked 3.4"
if NOT exist "%ProgramFiles%\SpywareLocked 3.4" echo %ProgramFiles%\SpywareLocked 3.4\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.4" echo %sError% %ProgramFiles%\SpywareLocked 3.4\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareLocked 3.5" (
RD /s /q "%ProgramFiles%\SpywareLocked 3.5"
if NOT exist "%ProgramFiles%\SpywareLocked 3.5" echo %ProgramFiles%\SpywareLocked 3.5\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\SpywareLocked 3.5" echo %sError% %ProgramFiles%\SpywareLocked 3.5\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareQuake" (
RD /s /q "%ProgramFiles%\SpywareQuake"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpywareQuake\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareQuake.com" (
RD /s /q "%ProgramFiles%\SpywareQuake.com"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpywareQuake.com\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareSheriff" (
RD /s /q "%ProgramFiles%\SpywareSheriff"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpywareSheriff\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\SpywareStrike" (
RD /s /q "%ProgramFiles%\SpywareStrike"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\SpywareStrike\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Spyware Soft Stop" (
RD /s /q "%ProgramFiles%\Spyware Soft Stop"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Spyware Soft Stop\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\strCodec" (
RD /s /q "%ProgramFiles%\strCodec"
if NOT exist "%ProgramFiles%\strCodec" echo %ProgramFiles%\strCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\strCodec" echo %sError% %ProgramFiles%\strCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Super Codec" (
RD /s /q "%ProgramFiles%\Super Codec"
if NOT exist "%ProgramFiles%\Super Codec" echo %ProgramFiles%\Super Codec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Super Codec" echo %sError% %ProgramFiles%\Super Codec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\TitanShield Antispyware" (
RD /s /q "%ProgramFiles%\TitanShield Antispyware"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\TitanShield Antispyware\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\TrueCodec" (
RD /s /q "%ProgramFiles%\TrueCodec"
if NOT exist "%ProgramFiles%\TrueCodec" echo %ProgramFiles%\TrueCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\TrueCodec" echo %sError% %ProgramFiles%\TrueCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Trust Cleaner" (
RD /s /q "%ProgramFiles%\Trust Cleaner"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Trust Cleaner\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\TrustIn Bar" (
RD /s /q "%ProgramFiles%\TrustIn Bar"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\TrustIn Bar\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\TrustIn Contextual" (
RD /s /q "%ProgramFiles%\TrustIn Contextual"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\TrustIn Contextual\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\TrustIn Popups" (
RD /s /q "%ProgramFiles%\TrustIn Popups"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\TrustIn Popups\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\iVideoCodec" (
RD /s /q "%ProgramFiles%\iVideoCodec"
if NOT exist "%ProgramFiles%\iVideoCodec" echo %ProgramFiles%\iVideoCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\iVideoCodec" echo %sError% %ProgramFiles%\iVideoCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\user32.exe" (
attrib -r -s -h "%ProgramFiles%\user32.exe"
del /a /f "%ProgramFiles%\user32.exe"
if NOT exist "%ProgramFiles%\user32.exe" echo %ProgramFiles%\user32.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\user32.exe" echo %sError% %ProgramFiles%\user32.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Video Access ActiveX Object" (
RD /s /q "%ProgramFiles%\Video Access ActiveX Object"
if NOT exist "%ProgramFiles%\Video Access ActiveX Object" echo %ProgramFiles%\Video Access ActiveX Object\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video Access ActiveX Object" echo %sError% %ProgramFiles%\Video Access ActiveX Object\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Video ActiveX Access" (
RD /s /q "%ProgramFiles%\Video ActiveX Access"
if NOT exist "%ProgramFiles%\Video ActiveX Access" echo %ProgramFiles%\Video ActiveX Access\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video ActiveX Access" echo %sError% %ProgramFiles%\Video ActiveX Access\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Video ActiveX Object" (
RD /s /q "%ProgramFiles%\Video ActiveX Object"
if NOT exist "%ProgramFiles%\Video ActiveX Object" echo %ProgramFiles%\Video ActiveX Object\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video ActiveX Object" echo %sError% %ProgramFiles%\Video ActiveX Object\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Video AX Object" (
RD /s /q "%ProgramFiles%\Video AX Object"
if NOT exist "%ProgramFiles%\Video AX Object" echo %ProgramFiles%\Video AX Object\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video AX Object" echo %sError% %ProgramFiles%\Video AX Object\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Video iCodec" (
RD /s /q "%ProgramFiles%\Video iCodec"
if NOT exist "%ProgramFiles%\Video iCodec" echo %ProgramFiles%\Video iCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Video iCodec" echo %sError% %ProgramFiles%\Video iCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoAccess" (
RD /s /q "%ProgramFiles%\VideoAccess"
if NOT exist "%ProgramFiles%\VideoAccess" echo %ProgramFiles%\VideoAccess\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoAccess" echo %sError% %ProgramFiles%\VideoAccess\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoAccessCodec" (
RD /s /q "%ProgramFiles%\VideoAccessCodec"
if NOT exist "%ProgramFiles%\VideoAccessCodec" echo %ProgramFiles%\VideoAccessCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoAccessCodec" echo %sError% %ProgramFiles%\VideoAccessCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoBox" (
RD /s /q "%ProgramFiles%\VideoBox"
if NOT exist "%ProgramFiles%\VideoBox" echo %ProgramFiles%\VideoBox\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoBox" echo %sError% %ProgramFiles%\VideoBox\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoCompressionCodec" (
RD /s /q "%ProgramFiles%\VideoCompressionCodec"
if NOT exist "%ProgramFiles%\VideoCompressionCodec" echo %ProgramFiles%\VideoCompressionCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoCompressionCodec" echo %sError% %ProgramFiles%\VideoCompressionCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoKeyCodec" (
RD /s /q "%ProgramFiles%\VideoKeyCodec"
if NOT exist "%ProgramFiles%\VideoKeyCodec" echo %ProgramFiles%\VideoKeyCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoKeyCodec" echo %sError% %ProgramFiles%\VideoKeyCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideosCodec" (
RD /s /q "%ProgramFiles%\VideosCodec"
if NOT exist "%ProgramFiles%\VideosCodec" echo %ProgramFiles%\VideosCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideosCodec" echo %sError% %ProgramFiles%\VideosCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VideoPlugin" (
RD /s /q "%ProgramFiles%\VideoPlugin"
if NOT exist "%ProgramFiles%\VideoPlugin" echo %ProgramFiles%\VideoPlugin\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VideoPlugin" echo %sError% %ProgramFiles%\VideoPlugin\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Virtual Maid" (
RD /s /q "%ProgramFiles%\Virtual Maid"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\Virtual Maid\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\vb" (
RD /s /q "%ProgramFiles%\vb"
if NOT exist "%ProgramFiles%\vb" echo %ProgramFiles%\vb\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\vb" echo %sError% %ProgramFiles%\vb\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusBlast" (
RD /s /q "%ProgramFiles%\VirusBlast"
if NOT exist "%ProgramFiles%\VirusBlast" echo %ProgramFiles%\VirusBlast\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBlast" echo %sError% %ProgramFiles%\VirusBlast\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Virus-Burst" (
RD /s /q "%ProgramFiles%\Virus-Burst"
if NOT exist "%ProgramFiles%\Virus-Burst" echo %ProgramFiles%\Virus-Burst\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Virus-Burst" echo %sError% %ProgramFiles%\Virus-Burst\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusBurst" (
RD /s /q "%ProgramFiles%\VirusBurst"
if NOT exist "%ProgramFiles%\VirusBurst" echo %ProgramFiles%\VirusBurst\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBurst" echo %sError% %ProgramFiles%\VirusBurst\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusBurster" (
RD /s /q "%ProgramFiles%\VirusBurster"
if NOT exist "%ProgramFiles%\VirusBurster" echo %ProgramFiles%\VirusBurster\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBurster" echo %sError% %ProgramFiles%\VirusBurster\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusBursters" (
RD /s /q "%ProgramFiles%\VirusBursters"
if NOT exist "%ProgramFiles%\VirusBursters" echo %ProgramFiles%\VirusBursters\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusBursters" echo %sError% %ProgramFiles%\VirusBursters\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Virus-Bursters" (
RD /s /q "%ProgramFiles%\Virus-Bursters"
if NOT exist "%ProgramFiles%\Virus-Bursters" echo %ProgramFiles%\Virus-Bursters\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Virus-Bursters" echo %sError% %ProgramFiles%\Virus-Bursters\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusProtectPro 3.3" (
RD /s /q "%ProgramFiles%\VirusProtectPro 3.3"
if NOT exist "%ProgramFiles%\VirusProtectPro 3.3" echo %ProgramFiles%\VirusProtectPro 3.3\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.3" echo %sError% %ProgramFiles%\VirusProtectPro 3.3\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusProtectPro 3.4" (
RD /s /q "%ProgramFiles%\VirusProtectPro 3.4"
if NOT exist "%ProgramFiles%\VirusProtectPro 3.4" echo %ProgramFiles%\VirusProtectPro 3.4\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.4" echo %sError% %ProgramFiles%\VirusProtectPro 3.4\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusProtectPro 3.5" (
RD /s /q "%ProgramFiles%\VirusProtectPro 3.5"
if NOT exist "%ProgramFiles%\VirusProtectPro 3.5" echo %ProgramFiles%\VirusProtectPro 3.5\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.5" echo %sError% %ProgramFiles%\VirusProtectPro 3.5\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusProtectPro 3.6" (
RD /s /q "%ProgramFiles%\VirusProtectPro 3.6"
if NOT exist "%ProgramFiles%\VirusProtectPro 3.6" echo %ProgramFiles%\VirusProtectPro 3.6\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.6" echo %sError% %ProgramFiles%\VirusProtectPro 3.6\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\VirusProtectPro 3.7" (
RD /s /q "%ProgramFiles%\VirusProtectPro 3.7"
if NOT exist "%ProgramFiles%\VirusProtectPro 3.7" echo %ProgramFiles%\VirusProtectPro 3.7\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\VirusProtectPro 3.7" echo %sError% %ProgramFiles%\VirusProtectPro 3.7\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Win32p1Messenger" (
RD /s /q "%ProgramFiles%\Win32p1Messenger"
if NOT exist "%ProgramFiles%\Win32p1Messenger" echo %ProgramFiles%\Win32p1Messenger\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Win32p1Messenger" echo %sError% %ProgramFiles%\Win32p1Messenger\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Win32z1Messenger" (
RD /s /q "%ProgramFiles%\Win32z1Messenger"
if NOT exist "%ProgramFiles%\Win32z1Messenger" echo %ProgramFiles%\Win32z1Messenger\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Win32z1Messenger" echo %sError% %ProgramFiles%\Win32z1Messenger\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\WinAntiSpyPro" (
RD /s /q "%ProgramFiles%\WinAntiSpyPro"
if NOT exist "%ProgramFiles%\WinAntiSpyPro" echo %ProgramFiles%\WinAntiSpyPro\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\WinAntiSpyPro" echo %sError% %ProgramFiles%\WinAntiSpyPro\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\WinHound" (
RD /s /q "%ProgramFiles%\WinHound"
IF NOT ERRORLEVEL 1 echo %ProgramFiles%\WinHound\ %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\WinMediaCodec" (
RD /s /q "%ProgramFiles%\WinMediaCodec"
if NOT exist "%ProgramFiles%\WinMediaCodec" echo %ProgramFiles%\WinMediaCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\WinMediaCodec" echo %sError% %ProgramFiles%\WinMediaCodec\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\widupdate.exe" (
attrib -r -s -h "%ProgramFiles%\widupdate.exe"
del /a /f "%ProgramFiles%\widupdate.exe"
if NOT exist "%ProgramFiles%\widupdate.exe" echo %ProgramFiles%\widupdate.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\widupdate.exe" echo %sError% %ProgramFiles%\widupdate.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\widupdate.exe~" (
attrib -r -s -h "%ProgramFiles%\widupdate.exe~"
del /a /f "%ProgramFiles%\widupdate.exe~"
if NOT exist "%ProgramFiles%\widupdate.exe~" echo %ProgramFiles%\widupdate.exe~ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\widupdate.exe~" echo %sError% %ProgramFiles%\widupdate.exe~>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\X Password Generator" (
RD /s /q "%ProgramFiles%\X Password Generator"
if NOT exist "%ProgramFiles%\X Password Generator" echo %ProgramFiles%\X Password Generator\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\X Password Generator" echo %sError% %ProgramFiles%\X Password Generator\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\X Password Manager" (
RD /s /q "%ProgramFiles%\X Password Manager"
if NOT exist "%ProgramFiles%\X Password Manager" echo %ProgramFiles%\X Password Manager\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\X Password Manager" echo %sError% %ProgramFiles%\X Password Manager\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\XXXAccess" (
RD /s /q "%ProgramFiles%\XXXAccess"
if NOT exist "%ProgramFiles%\XXXAccess" echo %ProgramFiles%\XXXAccess\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\XXXAccess" echo %sError% %ProgramFiles%\XXXAccess\>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\ZipCodec" (
RD /s /q "%ProgramFiles%\ZipCodec"
if NOT exist "%ProgramFiles%\ZipCodec" echo %ProgramFiles%\ZipCodec\ %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\ZipCodec" echo %sError% %ProgramFiles%\ZipCodec\>>%systemdrive%\rapport.txt
)

if exist "%HOMEDRIVE%\spywarevanisher-free" (
RD /s /q "%HOMEDRIVE%\spywarevanisher-free"
IF NOT ERRORLEVEL 1 echo %HOMEDRIVE%\spywarevanisher-free\ %sDel%>>%systemdrive%\rapport.txt
)





if exist "%ProgramFiles%\internet explorer\ieengine.exe" (
attrib -r -s -h "%ProgramFiles%\internet explorer\ieengine.exe"
del /a /f "%ProgramFiles%\internet explorer\ieengine.exe"
if NOT exist "%ProgramFiles%\internet explorer\ieengine.exe" echo %ProgramFiles%\internet explorer\ieengine.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\internet explorer\ieengine.exe" echo %sError% %ProgramFiles%\internet explorer\ieengine.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Fichiers communs\Download\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Common Files\Download\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Fichiers communs\InetGet\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Common Files\InetGet\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Fichiers communs\muwq" (
RD /s /q "%ProgramFiles%\Fichiers communs\muwq"
if NOT ERRORLEVEL 1 echo %ProgramFiles%\Fichiers communs\muwq %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\muwq" (
RD /s /q "%ProgramFiles%\Common Files\muwq"
if NOT ERRORLEVEL 1 echo %ProgramFiles%\Common Files\muwq %sDel%>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe" echo %ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Fichiers communs\Windows\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe" (
attrib -r -s -h "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe"
del /a /f "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe"
if NOT exist "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe" echo %ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe" echo %sError% %ProgramFiles%\Common Files\Windows\mc-58-12-0000113.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" (
attrib -r -s -h "%ProgramFiles%\Fichiers communs\Windows\services32.exe"
del /a /f "%ProgramFiles%\Fichiers communs\Windows\services32.exe"
if NOT exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" echo %ProgramFiles%\Fichiers communs\Windows\services32.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" echo %sError% %ProgramFiles%\Fichiers communs\Windows\services32.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\Windows\services32.exe" (
attrib -r -s -h "%ProgramFiles%\Common Files\Windows\services32.exe"
del /a /f "%ProgramFiles%\Common Files\Windows\services32.exe"
if NOT exist "%ProgramFiles%\Common Files\Windows\services32.exe" echo %ProgramFiles%\Common Files\Windows\services32.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%ProgramFiles%\Common Files\Windows\services32.exe" echo %sError% %ProgramFiles%\Common Files\Windows\services32.exe>>%systemdrive%\rapport.txt
)

if exist "%ProgramFiles%\Common Files\VCClient" (
RD /s /q "%ProgramFiles%\Common Files\VCClient"
if NOT ERRORLEVEL 1 echo %ProgramFiles%\Common Files\VCClient %sDel%>>%systemdrive%\rapport.txt
)










echo %sSearch% DNS
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if not defined safeboot_option Call :FixDNS

Call :ScanDNS












echo.>>%systemdrive%\rapport.txt
echo %sTempFolder%...
echo »»»»»»»»»»»»»»»»»»»»»»»» %sTempFolder%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

if exist "%temp%\wschtm35.dll" (
attrib -r -s -h "%temp%\wschtm35.dll"
del /a /f "%temp%\wschtm35.dll"
if NOT exist "%temp%\wschtm35.dll" echo %temp%\wschtm35.dll %sDel%>>%systemdrive%\rapport.txt
if exist "%temp%\wschtm35.dll" echo %sError% %temp%\wschtm35.dll>>%systemdrive%\rapport.txt
)

if exist "%temp%\_uninst35.exe" (
attrib -r -s -h "%temp%\_uninst35.exe"
del /a /f "%temp%\_uninst35.exe"
if NOT exist "%temp%\_uninst35.exe" echo %temp%\_uninst35.exe %sDel%>>%systemdrive%\rapport.txt
if exist "%temp%\_uninst35.exe" echo %sError% %temp%\_uninst35.exe>>%systemdrive%\rapport.txt
)

if exist %temp%\*.* (
attrib -r -h %temp%\*.*
del /a /f /q %temp%\*.*
)

echo REGEDIT4>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Active Setup Temp Folders]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Downloaded Program Files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Internet Cache Files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Offline Files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Offline Pages Files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Recycle Bin]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Temporary files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Temporary Offline Files]>>CleanMgr.reg
echo "StateFlags5151"=dword:00000002>>CleanMgr.reg
echo.>>CleanMgr.reg

regedit.exe /s CleanMgr.reg
del CleanMgr.reg
start cleanmgr /sagerun:5151

echo REGEDIT4>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Active Setup Temp Folders]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Downloaded Program Files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Internet Cache Files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Offline Files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Offline Pages Files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Recycle Bin]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\explorer\VolumeCaches\Temporary files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\Temporary Offline Files]>>CleanMgr.reg
echo "StateFlags5151"=->>CleanMgr.reg
echo.>>CleanMgr.reg

regedit.exe /s CleanMgr.reg
del CleanMgr.reg




echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» Winlogon.System>>%systemdrive%\rapport.txt
if %lang%==fra (
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
IF EXIST tmp3.txt del tmp3.txt
swreg save "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" tmp.hiv
dumphive tmp.hiv tmp.txt >NUL
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>%systemdrive%\rapport.txt
type tmp.txt | find /i /V "Userinit">tmp2.txt
type tmp2.txt | find /i /V "Dllname">tmp.txt
type tmp.txt | find /i /V "system32">tmp2.txt
type tmp2.txt | find /i "System">>%systemdrive%\rapport.txt
type tmp2.txt | find /i "System">tmp.txt
type tmp.txt | find /i "kd">tmp2.txt

for /f "tokens=* delims=" %%a in (tmp2.txt) do echo %%a>tmp3.txt
if exist tmp3.txt goto Prepare_KD
goto EndPrepare_KD

:Prepare_KD
for /f "tokens=2 delims==" %%a in (tmp3.txt) do echo %%a>tmp.txt


echo Option Explicit>unquote.vbs
echo Dim objFichier,MyFile,MyFile2,ligne>>unquote.vbs
echo Set objFichier=CreateObject("Scripting.FileSystemObject")>>unquote.vbs
echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)>>unquote.vbs
echo ligne=MyFile.ReadLine>>unquote.vbs
echo If len(ligne) > 2 Then>>unquote.vbs
echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)>>unquote.vbs
echo    ligne=Right(ligne,Len(ligne)-1)>>unquote.vbs
echo    ligne=Left(ligne,Len(ligne)-5)>>unquote.vbs
echo    MyFile2.WriteLine(ligne)>>unquote.vbs
echo    MyFile2.Close>>unquote.vbs
echo End If>>unquote.vbs
echo MyFile.Close>>unquote.vbs

cscript //I //nologo unquote.vbs
IF EXIST unquote.vbs del unquote.vbs
for /f "tokens=*" %%a in (tmp2.txt) do set file=%%a.exe

if %FSType%==FAT32 (
echo.>>%systemdrive%\rapport.txt
echo %file% %KDMess%>>%systemdrive%\rapport.txt
echo %RKScan%>>%systemdrive%\rapport.txt 
goto EndPrepare_KD
)

swxcacls "%syspath%\%file%" /de:x /i remove /q
IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
IF EXIST tmp3.txt del tmp3.txt
set file=
goto Nettoyage2

:EndPrepare_KD
IF EXIST tmp.hiv del tmp.hiv
IF EXIST tmp.txt del tmp.txt
IF EXIST tmp2.txt del tmp2.txt
IF EXIST tmp3.txt del tmp3.txt
set file=
echo.>>%systemdrive%\rapport.txt








if exist "%HOMEDRIVE%\defender??.exe" goto nettoyage2
if exist "%HOMEDRIVE%\winstall.exe" goto nettoyage2
if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" goto nettoyage2
if exist "%ProgramFiles%\Common Files\Windows\services32.exe" goto nettoyage2
if exist "%ProgramFiles%\Common Files\VCClient" goto nettoyage2
if exist "%ProgramFiles%\AdwareSheriff" goto nettoyage2
if exist "%ProgramFiles%\AlfaCleaner" goto nettoyage2
if exist "%Programfiles%\Security Toolbar" goto nettoyage2
if exist "%Programfiles%\Security Tools" goto nettoyage2
if exist "%windir%\adsldpbc.dll" goto nettoyage2
if exist "%windir%\adsldpbd.dll" goto nettoyage2
if exist "%windir%\adsldpbe.dll" goto nettoyage2
if exist "%windir%\adsldpbf.dll" goto nettoyage2
if exist "%windir%\adsldpbj.dll" goto nettoyage2
if exist "%windir%\alexaie.dll" goto nettoyage2
if exist "%windir%\alxie328.dll" goto nettoyage2
if exist "%windir%\alxtb1.dll" goto nettoyage2
if exist "%windir%\browsers.dll" goto nettoyage2
if exist "%windir%\BTGrab.dll" goto nettoyage2
if exist "%windir%\d3??.dll" goto nettoyage2
if exist "%windir%\ddesupport.dll" goto nettoyage2
if exist "%windir%\defender??.exe" goto nettoyage2
if exist "%windir%\dxdiag.dll" goto nettoyage2
if exist "%windir%\dlmax.dll" goto nettoyage2
if exist "%windir%\duocore.dll" goto nettoyage2
if exist "%windir%\iebrowser.dll" goto nettoyage2
if exist "%windir%\iecontext.dll" goto nettoyage2
if exist "%windir%\iedrv.exe" goto nettoyage2
if exist "%windir%\iexplorer.exe" goto nettoyage2
if exist "%windir%\ieyi.dll" goto nettoyage2
if exist "%windir%\inetloader.dll" goto nettoyage2
if exist "%windir%\inet20001" goto nettoyage2
if exist "%windir%\inet20010" goto nettoyage2
if exist "%windir%\inet20066" goto nettoyage2
if exist "%windir%\inet20099" goto nettoyage2
if exist "%windir%\msdrv.exe" goto nettoyage2
if exist "%windir%\mslog.exe" goto nettoyage2
if exist "%windir%\mxduo.dll" goto nettoyage2
if exist "%windir%\nsduo.dll" goto nettoyage2
if exist "%windir%\osaupd.exe" goto nettoyage2
if exist "%windir%\policies.dll" goto nettoyage2
if exist "%windir%\policyverifier.exe" goto nettoyage2
if exist "%windir%\Pynix.dll" goto nettoyage2
if exist "%windir%\qnxplugin.dll" goto nettoyage2
if exist "%windir%\q*_disk.dll" goto nettoyage2
if exist "%windir%\sconf32.dll" goto nettoyage2
if exist "%windir%\se_spoof.dll" goto nettoyage2
if exist "%windir%\sdkcb.dll" goto nettoyage2
if exist "%windir%\slassac.dll" goto nettoyage2
if exist "%windir%\sounddrv.dll" goto nettoyage2
if exist "%windir%\soundplugin.dll" goto nettoyage2
if exist "%windir%\System32fab.exe" goto nettoyage2
if exist "%windir%\tool4.exe" goto nettoyage2
if exist "%windir%\wmpconf.dll" goto nettoyage2
if exist "%windir%\wmpdev.dll" goto nettoyage2
if exist "%windir%\wmpenv.dll" goto nettoyage2
if exist "%windir%\wmphost.dll" goto nettoyage2
if exist "%windir%\wmplayer.dll" goto nettoyage2
if exist "%windir%\wmsound.dll" goto nettoyage2
if exist "%windir%\xvideo.dll" goto nettoyage2
if exist "%windir%\ZServ.dll" goto nettoyage2
if exist "%windir%\system\csrss.exe" goto nettoyage2
if exist "%systemroot%\system32\acvgxw.dll" goto nettoyage2
if exist "%systemroot%\system32\adobepnl.dll" goto nettoyage2
if exist "%systemroot%\system32\afkvvy.dll" goto nettoyage2
if exist "%systemroot%\system32\afzdbl.dll" goto nettoyage2
if exist "%systemroot%\system32\alxres.dll" goto nettoyage2
if exist "%systemroot%\system32\antzozc.dll" goto nettoyage2
if exist "%systemroot%\system32\appmagr.dll" goto nettoyage2
if exist "%systemroot%\system32\asxbbx.dll" goto nettoyage2
if exist "%systemroot%\system32\atmclk.exe" goto nettoyage2
if exist "%systemroot%\system32\autodisc32.dll" goto nettoyage2
if exist "%systemroot%\system32\autosys.exe" goto nettoyage2
if exist "%systemroot%\system32\axlet.dll" goto nettoyage2
if exist "%systemroot%\system32\bhoSearchSpy.dll" goto nettoyage2
if exist "%systemroot%\system32\bikini.exe" goto nettoyage2
if exist "%systemroot%\system32\birdihuy32.dll" goto nettoyage2
if exist "%systemroot%\system32\bolnyz.dll" goto nettoyage2
if exist "%systemroot%\system32\bre.dll" goto nettoyage2
if exist "%systemroot%\system32\bre32.dll" goto nettoyage2
if exist "%systemroot%\system32\bpvcou.dll" goto nettoyage2
if exist "%systemroot%\system32\browsela.dll" goto nettoyage2
if exist "%systemroot%\system32\bridge.dll" goto nettoyage2
if exist "%systemroot%\system32\ccyszwl.dll" goto nettoyage2
if exist "%systemroot%\system32\cdwvhbf.dll" goto nettoyage2
if exist "%systemroot%\system32\cefrjsh.dll" goto nettoyage2
if exist "%systemroot%\system32\cfltygd.dll" goto nettoyage2
if exist "%systemroot%\system32\cvxh8jkdq?.exe" goto nettoyage2
if exist "%systemroot%\system32\child.dll" goto nettoyage2
if exist "%systemroot%\system32\chp.dll" goto nettoyage2
if exist "%systemroot%\system32\ckimzeb.dll" goto nettoyage2
if exist "%systemroot%\system32\cqsfk.dll" goto nettoyage2
if exist "%systemroot%\system32\comdlg64.dll" goto nettoyage2
if exist "%systemroot%\system32\ctpmon.exe" goto nettoyage2
if exist "%systemroot%\system32\cthkpcv.dll" goto nettoyage2
if exist "%systemroot%\system32\cvnzie.dll" goto nettoyage2
if exist "%systemroot%\system32\cwgppb.dll" goto nettoyage2
if exist "%systemroot%\system32\czxtyx.dll" goto nettoyage2
if exist "%systemroot%\system32\dailytoolbar.dll" goto nettoyage2
if exist "%systemroot%\system32\dbqlrij.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_14.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_15.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_16.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_18.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_19.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_20.dll" goto nettoyage2
if exist "%systemroot%\system32\dcom_21.dll" goto nettoyage2
if exist "%systemroot%\system32\dcomcfg.exe" goto nettoyage2
if exist "%systemroot%\system32\dcvwaah.dll" goto nettoyage2
if exist "%systemroot%\system32\Delete_Me_Dummy_hadjajr.ini" goto nettoyage2
if exist "%systemroot%\system32\Delete_Me_Dummy_hanonvt.ini" goto nettoyage2
if exist "%systemroot%\system32\Delete_Me_Dummy_hrum.txt" goto nettoyage2
if exist "%systemroot%\system32\Delete_Me_Dummy_hrum323.txt" goto nettoyage2
if exist "%systemroot%\system32\dtjby.dll" goto nettoyage2
if exist "%systemroot%\system32\dfrgsrv.exe" goto nettoyage2
if exist "%systemroot%\system32\dlh9jkdq?.exe" goto nettoyage2
if exist "%systemroot%\system32\dnefhw.dll" goto nettoyage2
if exist "%systemroot%\system32\dooep.dll" goto nettoyage2
if exist "%systemroot%\system32\dpfwu.dll" goto nettoyage2
if exist "%systemroot%\system32\duxzj.dll" goto nettoyage2
if exist "%systemroot%\system32\dvdcap.dll" goto nettoyage2
if exist "%systemroot%\system32\dxole32.exe" goto nettoyage2
if exist "%systemroot%\system32\dxmpp.dll" goto nettoyage2
if exist "%systemroot%\system32\dxovx.dll" goto nettoyage2
if exist "%systemroot%\system32\eeuydc.dll" goto nettoyage2
if exist "%systemroot%\system32\egzcqg.dll" goto nettoyage2
if exist "%systemroot%\system32\eigbbb.dll" goto nettoyage2
if exist "%systemroot%\system32\eowygj.dll" goto nettoyage2
if exist "%systemroot%\system32\erxbx.dll" goto nettoyage2
if exist "%systemroot%\system32\exuc32.tmp" goto nettoyage2
if exist "%systemroot%\system32\fdpzgi.dll" goto nettoyage2
if exist "%systemroot%\system32\fhmfes.dll" goto nettoyage2
if exist "%systemroot%\system32\ficqv.dll" goto nettoyage2
if exist "%systemroot%\system32\fjdcy.dll" goto nettoyage2
if exist "%systemroot%\system32\fmrmhc.dll" goto nettoyage2
if exist "%systemroot%\system32\fqdqs.dll" goto nettoyage2
if exist "%systemroot%\system32\fshqaln.dll" goto nettoyage2
if exist "%systemroot%\system32\fwrkqfl.dll" goto nettoyage2
if exist "%systemroot%\system32\fyhhxw.dll" goto nettoyage2
if exist "%systemroot%\system32\fyhwfc.dll" goto nettoyage2
if exist "%systemroot%\system32\fyxkaah.dll" goto nettoyage2
if exist "%systemroot%\system32\gbjkog.dll" goto nettoyage2
if exist "%systemroot%\system32\geplxss.dll" goto nettoyage2
if exist "%systemroot%\system32\ginuerep.dll" goto nettoyage2
if exist "%systemroot%\system32\gqagksr.dll" goto nettoyage2
if exist "%systemroot%\system32\gsrnxgh.dll" goto nettoyage2
if exist "%systemroot%\system32\gtawclv.dll" goto nettoyage2
if exist "%systemroot%\system32\gtpbx.dll" goto nettoyage2
if exist "%systemroot%\system32\gusur.dll" goto nettoyage2
if exist "%systemroot%\system32\guxmhcd.dll" goto nettoyage2
if exist "%systemroot%\system32\guxxa.dll" goto nettoyage2
if exist "%systemroot%\system32\gwquvw.dll" goto nettoyage2
if exist "%systemroot%\system32\hadjajr.ini" goto nettoyage2
if exist "%systemroot%\system32\hanonvt.ini" goto nettoyage2
if exist "%systemroot%\system32\hp???.tmp" goto nettoyage2
if exist "%systemroot%\system32\hp????.tmp" goto nettoyage2
if exist "%systemroot%\system32\higehsg.dll" goto nettoyage2
if exist "%systemroot%\system32\higjxe.dll" goto nettoyage2
if exist "%systemroot%\system32\hjpprpu.dll" goto nettoyage2
if exist "%systemroot%\system32\hrum.txt" goto nettoyage2
if exist "%systemroot%\system32\hrum323.txt" goto nettoyage2
if exist "%systemroot%\system32\htey.dll" goto nettoyage2
if exist "%systemroot%\system32\httge.dll" goto nettoyage2
if exist "%systemroot%\system32\hvcycg.dll" goto nettoyage2
if exist "%systemroot%\system32\hvnwm.dll" goto nettoyage2
if exist "%systemroot%\system32\hzclqhc.dll" goto nettoyage2
if exist "%systemroot%\system32\iauoi.dll" goto nettoyage2
if exist "%systemroot%\system32\icima.dll" goto nettoyage2
if exist "%systemroot%\system32\IeHelperEx.dll" goto nettoyage2
if exist "%systemroot%\system32\ilmpjy.dll" goto nettoyage2
if exist "%systemroot%\system32\igpfced.dll" goto nettoyage2
if exist "%systemroot%\system32\igzxwrl.dll" goto nettoyage2
if exist "%systemroot%\system32\imfdfcj.dll" goto nettoyage2
if exist "%systemroot%\system32\impgsje.dll" goto nettoyage2
if exist "%systemroot%\system32\indwvm.dll" goto nettoyage2
if exist "%systemroot%\system32\ioctrl.dll" goto nettoyage2
if exist "%systemroot%\system32\ipmon.exe" goto nettoyage2
if exist "%systemroot%\system32\ipztub.dll" goto nettoyage2
if exist "%systemroot%\system32\iqzv.dll" goto nettoyage2
if exist "%systemroot%\system32\ishost.exe" goto nettoyage2
if exist "%systemroot%\system32\ismini.exe" goto nettoyage2
if exist "%systemroot%\system32\ismon.exe" goto nettoyage2
if exist "%systemroot%\system32\isnotify.exe" goto nettoyage2
if exist "%systemroot%\system32\issearch.exe" goto nettoyage2
if exist "%systemroot%\system32\ixt?.dll" goto nettoyage2
if exist "%systemroot%\system32\ixt??.dll" goto nettoyage2
if exist "%systemroot%\system32\iwwvh.dll" goto nettoyage2
if exist "%systemroot%\system32\jao.dll" goto nettoyage2
if exist "%systemroot%\system32\jbtazy.dll" goto nettoyage2
if exist "%systemroot%\system32\jevtxpg.dll" goto nettoyage2
if exist "%systemroot%\system32\jpqet.dll" goto nettoyage2
if exist "%systemroot%\system32\kfhrvq.dll" goto nettoyage2
if exist "%systemroot%\system32\kgkdbsk.dll" goto nettoyage2
if exist "%systemroot%\system32\khtbpdl.dll" goto nettoyage2
if exist "%systemroot%\system32\kkqfb.dll" goto nettoyage2
if exist "%systemroot%\system32\ktrxe.dll" goto nettoyage2
if exist "%systemroot%\system32\kuhmk.dll" goto nettoyage2
if exist "%systemroot%\system32\kvfvw.dll" goto nettoyage2
if exist "%systemroot%\system32\lapmvzf.dll" goto nettoyage2
if exist "%systemroot%\system32\lcsrsrv.dll" goto nettoyage2
if exist "%systemroot%\system32\ld???.tmp" goto nettoyage2
if exist "%systemroot%\system32\ld????.tmp" goto nettoyage2
if exist "%systemroot%\system32\lich.exe" goto nettoyage2
if exist "%systemroot%\system32\lrnjnzf.dll" goto nettoyage2
if exist "%systemroot%\system32\lwpfwjb.dll" goto nettoyage2
if exist "%systemroot%\system32\mivmv.dll" goto nettoyage2
if exist "%systemroot%\system32\mlraakb.dll" goto nettoyage2
if exist "%systemroot%\system32\msmapi32.exe" goto nettoyage2
if exist "%systemroot%\system32\mscornet.exe" goto nettoyage2
if exist "%systemroot%\system32\msnscps.dll" goto nettoyage2
if exist "%systemroot%\system32\mssearchnet.exe" goto nettoyage2
if exist "%systemroot%\system32\msupdate32.dll" goto nettoyage2
if exist "%systemroot%\system32\muvdjo.dll" goto nettoyage2
if exist "%systemroot%\system32\myqlejy.dll" goto nettoyage2
if exist "%systemroot%\system32\mzoeut.dll" goto nettoyage2
if exist "%systemroot%\system32\nbbrhbd.dll" goto nettoyage2
if exist "%systemroot%\system32\ncompat.tlb" goto nettoyage2
if exist "%systemroot%\system32\netwrap.dll" goto nettoyage2
if exist "%systemroot%\system32\nexpegp.dll" goto nettoyage2
if exist "%systemroot%\system32\notifysb.dll" goto nettoyage2
if exist "%systemroot%\system32\nuqjici.dll" goto nettoyage2
if exist "%systemroot%\system32\nvctrl.exe" goto nettoyage2
if exist "%systemroot%\system32\oebxpba.dll" goto nettoyage2
if exist "%systemroot%\system32\oerucu.dll" goto nettoyage2
if exist "%systemroot%\system32\ofcukiz.dll" goto nettoyage2
if exist "%systemroot%\system32\office_pnl.dll" goto nettoyage2
if exist "%systemroot%\system32\officescan.exe" goto nettoyage2
if exist "%systemroot%\system32\okkmtv.dll" goto nettoyage2
if exist "%systemroot%\system32\oksrqqu.dll" goto nettoyage2
if exist "%systemroot%\system32\oleadm.dll" goto nettoyage2
if exist "%systemroot%\system32\oleext.dll" goto nettoyage2
if exist "%systemroot%\system32\oleext32.dll" goto nettoyage2
if exist "%systemroot%\system32\olnohdw.dll" goto nettoyage2
if exist "%systemroot%\system32\onljweo.dll" goto nettoyage2
if exist "%systemroot%\system32\onofub.dll" goto nettoyage2
if exist "%systemroot%\system32\onwtj.dll" goto nettoyage2
if exist "%systemroot%\system32\oqabf.dll" goto nettoyage2
if exist "%systemroot%\system32\oqipt.dll" goto nettoyage2
if exist "%systemroot%\system32\ornzq.dll" goto nettoyage2
if exist "%systemroot%\system32\ownyhr.dll" goto nettoyage2
if exist "%systemroot%\system32\oybgrql.dll" goto nettoyage2
if exist "%systemroot%\system32\oyopu.dll" goto nettoyage2
if exist "%systemroot%\system32\pjgerka.dll" goto nettoyage2
if exist "%systemroot%\system32\pkgvyg.dll" goto nettoyage2
if exist "%systemroot%\system32\pkjcoxq.dll" goto nettoyage2
if exist "%systemroot%\system32\pmnqguh.dll" goto nettoyage2
if exist "%systemroot%\system32\posem.dll" goto nettoyage2
if exist "%systemroot%\system32\psndz.dll" goto nettoyage2
if exist "%systemroot%\system32\prflbmsgp32.dll" goto nettoyage2
if exist "%systemroot%\system32\qnusjji.dll" goto nettoyage2
if exist "%systemroot%\system32\questmod.dll" goto nettoyage2
if exist "%systemroot%\system32\qvjpt.dll" goto nettoyage2
if exist "%systemroot%\system32\qvxgamet?.exe" goto nettoyage2
if exist "%systemroot%\system32\qrzsyr.dll" goto nettoyage2
if exist "%systemroot%\system32\qxfgcg.dll" goto nettoyage2
if exist "%systemroot%\system32\qzviz.dll" goto nettoyage2
if exist "%systemroot%\system32\rcohty.dll" goto nettoyage2
if exist "%systemroot%\system32\reglogs.dll" goto nettoyage2
if exist "%systemroot%\system32\regperf.exe" goto nettoyage2
if exist "%systemroot%\system32\replmap.dll" goto nettoyage2
if exist "%systemroot%\system32\rjxdexau.exe" goto nettoyage2
if exist "%systemroot%\system32\rmzdzx.dll" goto nettoyage2
if exist "%systemroot%\system32\rosdzop.dll" goto nettoyage2
if exist "%systemroot%\system32\RpcxSs.dll" goto nettoyage2
if exist "%systemroot%\system32\rrtcany.dll" goto nettoyage2
if exist "%systemroot%\system32\rxqcpn.dll" goto nettoyage2
if exist "%systemroot%\system32\ryxrho.dll" goto nettoyage2
if exist "%systemroot%\system32\sachostc.exe" goto nettoyage2
if exist "%systemroot%\system32\sachosts.exe" goto nettoyage2
if exist "%systemroot%\system32\sacskza.dll" goto nettoyage2
if exist "%systemroot%\system32\sbnudh.dll" goto nettoyage2
if exist "%systemroot%\system32\Security Toolbar.dll" goto nettoyage2
if exist "%systemroot%\system32\shdochp.exe" goto nettoyage2
if exist "%systemroot%\system32\shdocsvc.exe" goto nettoyage2
if exist "%systemroot%\system32\shellgui32.dll" goto nettoyage2
if exist "%systemroot%\system32\shsexl32.dll" goto nettoyage2
if exist "%systemroot%\system32\simpole.tlb" goto nettoyage2
if exist "%systemroot%\system32\sivudro.dll" goto nettoyage2
if exist "%systemroot%\system32\smaexp32.dll" goto nettoyage2
if exist "%systemroot%\system32\smartdrv.exe" goto nettoyage2
if exist "%systemroot%\system32\st3.dll" goto nettoyage2
if exist "%systemroot%\system32\stdole3.tlb" goto nettoyage2
if exist "%systemroot%\system32\stickrep.dll" goto nettoyage2
if exist "%systemroot%\system32\suprox.dll" goto nettoyage2
if exist "%systemroot%\system32\surzzh.dll" goto nettoyage2
if exist "%systemroot%\system32\svchosts.dll" goto nettoyage2
if exist "%systemroot%\system32\sysmain.dll" goto nettoyage2
if exist "%systemroot%\system32\syycum.dll" goto nettoyage2
if exist "%systemroot%\system32\tahxqcj.dll" goto nettoyage2
if exist "%systemroot%\system32\taskdir.dll" goto nettoyage2
if exist "%systemroot%\system32\taskdir.exe" goto nettoyage2
if exist "%systemroot%\system32\taskdir~.exe" goto nettoyage2
if exist "%systemroot%\system32\tazth.dll" goto nettoyage2
if exist "%systemroot%\system32\tczij.dll" goto nettoyage2
if exist "%systemroot%\system32\tiqmcx.dll" goto nettoyage2
if exist "%systemroot%\system32\titiau.dll" goto nettoyage2
if exist "%systemroot%\system32\tkrsw.dll" goto nettoyage2
if exist "%systemroot%\system32\tnvocyn.dll" goto nettoyage2
if exist "%systemroot%\system32\tmxxxh.dll" goto nettoyage2
if exist "%systemroot%\system32\tpedvf.dll" goto nettoyage2
if exist "%systemroot%\system32\tqcwm.dll" goto nettoyage2
if exist "%systemroot%\system32\trf32.dll" goto nettoyage2
if exist "%systemroot%\system32\tvomnc.dll" goto nettoyage2
if exist "%systemroot%\system32\twain32.dll" goto nettoyage2
if exist "%systemroot%\system32\ucbrrt.dll" goto nettoyage2
if exist "%systemroot%\system32\udpmod.dll" goto nettoyage2
if exist "%systemroot%\system32\ugofuq.dll" goto nettoyage2
if exist "%systemroot%\system32\uimcu.dll" goto nettoyage2
if exist "%systemroot%\system32\ulztc.dll" goto nettoyage2
if exist "%systemroot%\system32\urroxtl.dll" goto nettoyage2
if exist "%systemroot%\system32\vblhanf.dll" goto nettoyage2
if exist "%systemroot%\system32\vcehaeb.dll" goto nettoyage2
if exist "%systemroot%\system32\veklo.dll" goto nettoyage2
if exist "%systemroot%\system32\vgibz.dll" goto nettoyage2
if exist "%systemroot%\system32\vhywj.dll" goto nettoyage2
if exist "%systemroot%\system32\viruxz.dll" goto nettoyage2
if exist "%systemroot%\system32\viuaoq.dll" goto nettoyage2
if exist "%systemroot%\system32\viwpzla.dll" goto nettoyage2
if exist "%systemroot%\system32\vjxwnn.dll" goto nettoyage2
if exist "%systemroot%\system32\vophqmn.dll" goto nettoyage2
if exist "%systemroot%\system32\vpccw.dll" goto nettoyage2
if exist "%systemroot%\system32\vpxnk.dll" goto nettoyage2
if exist "%systemroot%\system32\vtr???.dll" goto nettoyage2
if exist "%systemroot%\system32\vwfps.dll" goto nettoyage2
if exist "%systemroot%\system32\vwlummc.dll" goto nettoyage2
if exist "%systemroot%\system32\vxgame?.exe" goto nettoyage2
if exist "%systemroot%\system32\vxgame?.exe????.exe" goto nettoyage2
if exist "%systemroot%\system32\vxgamet?.exe" goto nettoyage2
if exist "%systemroot%\system32\vxh8jkdq?.exe" goto nettoyage2
if exist "%systemroot%\system32\wbeconm.dll" goto nettoyage2
if exist "%systemroot%\system32\wfcof.dll" goto nettoyage2
if exist "%systemroot%\system32\wfkduei.dll" goto nettoyage2
if exist "%systemroot%\system32\wiatwain.dll" goto nettoyage2
if exist "%systemroot%\system32\winbl32.dll" goto nettoyage2
if exist "%systemroot%\system32\winblsrv.dll" goto nettoyage2
if exist "%systemroot%\system32\winbrume.dll" goto nettoyage2
if exist "%systemroot%\system32\wincrt.exe" goto nettoyage2
if exist "%systemroot%\system32\windesktop.dll" goto nettoyage2
if exist "%systemroot%\system32\windesktop.exe" goto nettoyage2
if exist "%systemroot%\system32\winflash.dll" goto nettoyage2
if exist "%systemroot%\system32\winsrv32.exe" goto nettoyage2
if exist "%systemroot%\system32\winstyle2.dll" goto nettoyage2
if exist "%systemroot%\system32\winstyle3.dll" goto nettoyage2
if exist "%systemroot%\system32\winstyle32.dll" goto nettoyage2
if exist "%systemroot%\system32\winntify.exe" goto nettoyage2
if exist "%systemroot%\system32\wpchz.dll" goto nettoyage2
if exist "%systemroot%\system32\wstart.dll" goto nettoyage2
if exist "%systemroot%\system32\wuwbxp.dll" goto nettoyage2
if exist "%systemroot%\system32\wzhtjqo.dll" goto nettoyage2
if exist "%systemroot%\system32\xedasn.dll" goto nettoyage2
if exist "%systemroot%\system32\xenadot.dll" goto nettoyage2
if exist "%systemroot%\system32\xikor.dll" goto nettoyage2
if exist "%systemroot%\system32\xkrdk.dll" goto nettoyage2
if exist "%systemroot%\system32\xnvaogd.dll" goto nettoyage2
if exist "%systemroot%\system32\xqpauzx.dll" goto nettoyage2
if exist "%systemroot%\system32\xtgwjrm.dll" goto nettoyage2
if exist "%systemroot%\system32\xtsyynm.dll" goto nettoyage2
if exist "%systemroot%\system32\xuefh.dll" goto nettoyage2
if exist "%systemroot%\system32\xuoce.dll" goto nettoyage2
if exist "%systemroot%\system32\xxfgmy.dll" goto nettoyage2
if exist "%systemroot%\system32\yephk.dll" goto nettoyage2
if exist "%systemroot%\system32\yesgnhr.dll" goto nettoyage2
if exist "%systemroot%\system32\yfysupa.dll" goto nettoyage2
if exist "%systemroot%\system32\ygjun.dll" goto nettoyage2
if exist "%systemroot%\system32\yhbdupd.dll" goto nettoyage2
if exist "%systemroot%\system32\yhjbbzf.dll" goto nettoyage2
if exist "%systemroot%\system32\yosdjh.dll" goto nettoyage2
if exist "%systemroot%\system32\yronl.dll" goto nettoyage2
if exist "%systemroot%\system32\yuspej.dll" goto nettoyage2
if exist "%systemroot%\system32\yvvdj.dll" goto nettoyage2
if exist "%systemroot%\system32\ywbicim.dll" goto nettoyage2
if exist "%systemroot%\system32\zdwii.dll" goto nettoyage2
if exist "%systemroot%\system32\zkpssqa.dll" goto nettoyage2
if exist "%systemroot%\system32\zlara.dll" goto nettoyage2
if exist "%systemroot%\system32\zlbw.dll" goto nettoyage2
if exist "%systemroot%\system32\zolker011.dll" goto nettoyage2
if exist "%systemroot%\system32\zpeolvh.dll" goto nettoyage2
if exist "%systemroot%\system32\zphnok.dll" goto nettoyage2
if exist "%systemroot%\system32\zpuwriz.dll" goto nettoyage2
if exist "%systemroot%\system32\ztoolb011.dll" goto nettoyage2
if exist "%syspath%\drivers\hesvc.sys" goto nettoyage2
if exist "%syspath%\drivers\svchost.exe" goto nettoyage2
if exist "%syspath%\components\flx?.dll" goto nettoyage2
if exist "%syspath%\components\flx??.dll" goto nettoyage2
if exist "%syspath%\components\flx???.dll" goto nettoyage2
if exist "%userprofile%\svchost.exe" goto nettoyage2
if exist "%userprofile%\Application Data\Install.dat" goto nettoyage2
if exist "%userprofile%\Application Data\AlfaCleaner" goto nettoyage2
if exist "%userprofile%\Application Data\AdProtect NoSpam" goto nettoyage2
if exist "%userprofile%\Application Data\Skinux" goto nettoyage2
if exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" goto nettoyage2
if exist "%userprofile%\Local Settings\Application Data\TitanShield" goto nettoyage2
if exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" goto nettoyage2
if exist "%ProgramFiles%\Brain Codec" goto nettoyage2
if exist "%ProgramFiles%\EliteCodec" goto nettoyage2
if exist "%ProgramFiles%\eMedia Codec" goto nettoyage2
if exist "%ProgramFiles%\DirectVideo" goto nettoyage2
if exist "%ProgramFiles%\FreeVideo" goto nettoyage2
if exist "%ProgramFiles%\Gold Codec" goto nettoyage2
if exist "%ProgramFiles%\HQ Codec" goto nettoyage2
if exist "%ProgramFiles%\HQvideo" goto nettoyage2
if exist "%ProgramFiles%\HQVideoCodec" goto nettoyage2
if exist "%ProgramFiles%\iCodecPack" goto nettoyage2
if exist "%ProgramFiles%\Image ActiveX Access" goto nettoyage2
if exist "%ProgramFiles%\Image ActiveX Object" goto nettoyage2
if exist "%ProgramFiles%\iMediaCodec" goto nettoyage2
if exist "%ProgramFiles%\IntCodec" goto nettoyage2
if exist "%ProgramFiles%\Internet Security" goto nettoyage2
if exist "%ProgramFiles%\iVideoCodec" goto nettoyage2
if exist "%ProgramFiles%\JPEG Encoder" goto nettoyage2
if exist "%ProgramFiles%\Key Generator" goto nettoyage2
if exist "%ProgramFiles%\Media-Codec" goto nettoyage2
if exist "%ProgramFiles%\MediaCodec" goto nettoyage2
if exist "%ProgramFiles%\MMediaCodec" goto nettoyage2
if exist "%ProgramFiles%\MPVIDEOCODEC" goto nettoyage2
if exist "%ProgramFiles%\My Pass Generator" goto nettoyage2
if exist "%ProgramFiles%\PCODEC" goto nettoyage2
if exist "%ProgramFiles%\Perfect Codec" goto nettoyage2
if exist "%ProgramFiles%\PornPass Manager" goto nettoyage2
if exist "%ProgramFiles%\PowerCodec" goto nettoyage2
if exist "%ProgramFiles%\PornMag Pass" goto nettoyage2
if exist "%ProgramFiles%\Protection Tools" goto nettoyage2
if exist "%ProgramFiles%\QualityCodec" goto nettoyage2
if exist "%ProgramFiles%\Safety Bar" goto nettoyage2
if exist "%ProgramFiles%\Silver Codec" goto nettoyage2
if exist "%ProgramFiles%\SiteTicket" goto nettoyage2
if exist "%ProgramFiles%\SoftCodec" goto nettoyage2
if exist "%ProgramFiles%\strCodec" goto nettoyage2
if exist "%ProgramFiles%\Super Codec" goto nettoyage2
if exist "%ProgramFiles%\TrueCodec" goto nettoyage2
if exist "%ProgramFiles%\VideoAccess" goto nettoyage2
if exist "%ProgramFiles%\VideoAccessCodec" goto nettoyage2
if exist "%ProgramFiles%\VidCodecs" goto nettoyage2
if exist "%ProgramFiles%\Video Access ActiveX Object" goto nettoyage2
if exist "%ProgramFiles%\Video ActiveX Access" goto nettoyage2
if exist "%ProgramFiles%\Video ActiveX Object" goto nettoyage2
if exist "%ProgramFiles%\Video AX Object" goto nettoyage2
if exist "%ProgramFiles%\Video iCodec" goto nettoyage2
if exist "%ProgramFiles%\VideoCompressionCodec" goto nettoyage2
if exist "%ProgramFiles%\VideoKeyCodec" goto nettoyage2
if exist "%ProgramFiles%\VideosCodec" goto nettoyage2
if exist "%ProgramFiles%\WinMediaCodec" goto nettoyage2
if exist "%ProgramFiles%\X Password Generator" goto nettoyage2
if exist "%ProgramFiles%\X Password Manager" goto nettoyage2
if exist "%ProgramFiles%\XXXAccess" goto nettoyage2
if exist "%ProgramFiles%\ZipCodec" goto nettoyage2
if exist "%startup%\autorun.exe" goto nettoyage2
if exist "%startup%\system.exe" goto nettoyage2
if exist "%austartup%\autorun.exe" goto nettoyage2
if exist "%austartup%\findfast.exe" goto nettoyage2
if exist "%temp%\wschtm35.dll" goto nettoyage2
if exist "%temp%\_uninst35.exe" goto nettoyage2

goto QuestionRegistre






:nettoyage2
Set DoReboot=1

rem process -k smss.exe >NUL
rem process -k rundll32.exe >NUL
rem process -k explorer.exe >NUL
rem process -k winlogon.exe >NUL

if exist setpass2.reg del setpass2.reg
echo REGEDIT4>>setpass2.reg
echo.>>setpass2.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnceEx]>>setpass2.reg
echo "Flags"=dword:00000008>>setpass2.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx\000]>>setpass2.reg
echo "smitfraudfixclean"="%systemdrive%\\Pass2.cmd">>setpass2.reg
regedit.exe /s setpass2.reg
if exist setpass2.reg del setpass2.reg

if exist %systemdrive%\Pass2.cmd del %systemdrive%\Pass2.cmd






echo @echo off>Pass2.cmd
echo.>>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo echo »»»»»»»»»»»»»»»»»»»»»»»» Reboot^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo.>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%HOMEDRIVE%\defender??.exe" (>>Pass2.cmd
echo attrib -r -h -s %HOMEDRIVE%\defender??.exe>>Pass2.cmd
echo del /q %HOMEDRIVE%\defender??.exe>>Pass2.cmd
echo if NOT exist "%HOMEDRIVE%\defender??.exe" echo %HOMEDRIVE%\defender??.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%HOMEDRIVE%\defender??.exe" echo %sError% %HOMEDRIVE%\defender??.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%HOMEDRIVE%\winstall.exe" (>>Pass2.cmd
echo attrib -r -h -s %HOMEDRIVE%\winstall.exe>>Pass2.cmd
echo del /q %HOMEDRIVE%\winstall.exe>>Pass2.cmd
echo if NOT exist "%HOMEDRIVE%\winstall.exe" echo %HOMEDRIVE%\winstall.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%HOMEDRIVE%\winstall.exe" echo %sError% %HOMEDRIVE%\winstall.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" (>>Pass2.cmd
echo attrib -r -h -s %ProgramFiles%\Fichiers communs\Windows\services32.exe>>Pass2.cmd
echo del /q %ProgramFiles%\Fichiers communs\Windows\services32.exe>>Pass2.cmd
echo if NOT exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" echo %ProgramFiles%\Fichiers communs\Windows\services32.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\Fichiers communs\Windows\services32.exe" echo %sError% %ProgramFiles%\Fichiers communs\Windows\services32.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Common Files\Windows\services32.exe" (>>Pass2.cmd
echo attrib -r -h -s %ProgramFiles%\Common Files\Windows\services32.exe>>Pass2.cmd
echo del /q %ProgramFiles%\Common Files\Windows\services32.exe>>Pass2.cmd
echo if NOT exist "%ProgramFiles%\Common Files\Windows\services32.exe" echo %ProgramFiles%\Common Files\Windows\services32.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\Common Files\Windows\services32.exe" echo %sError% %ProgramFiles%\Common Files\Windows\services32.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Common Files\VCClient" (>>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Common Files\VCClient">>Pass2.cmd
echo if NOT exist "%ProgramFiles%\Common Files\VCClient" echo %ProgramFiles%\Common Files\VCClient\ %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\Common Files\VCClient" echo %sError% %ProgramFiles%\Common Files\VCClient\^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\AdwareSheriff" (>>Pass2.cmd
echo RD /s /q "%ProgramFiles%\AdwareSheriff">>Pass2.cmd
echo if NOT exist "%ProgramFiles%\AdwareSheriff" echo %ProgramFiles%\AdwareSheriff\ %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\AdwareSheriff" echo %sError% %ProgramFiles%\AdwareSheriff\^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\AlfaCleaner" (>>Pass2.cmd
echo RD /s /q "%ProgramFiles%\AlfaCleaner">>Pass2.cmd
echo if NOT exist "%ProgramFiles%\AlfaCleaner" echo %ProgramFiles%\AlfaCleaner\ %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\AlfaCleaner" echo %sError% %ProgramFiles%\AlfaCleaner\^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Security Toolbar" (>>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Security Toolbar">>Pass2.cmd
echo if NOT exist "%ProgramFiles%\Security Toolbar" echo %ProgramFiles%\Security Toolbar\ %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\Security Toolbar" echo %sError% %ProgramFiles%\Security Toolbar\^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Security Tools" (>>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Security Tools">>Pass2.cmd
echo if NOT exist "%ProgramFiles%\Security Tools" echo %ProgramFiles%\Security Tools\ %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%ProgramFiles%\Security Tools" echo %sError% %ProgramFiles%\Security Tools\^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\adsldpbc.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\adsldpbc.dll>>Pass2.cmd
echo del /q %windir%\adsldpbc.dll>>Pass2.cmd
echo if NOT exist "%windir%\adsldpbc.dll" echo %windir%\adsldpbc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\adsldpbc.dll" echo %sError% %windir%\adsldpbc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\adsldpbd.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\adsldpbd.dll>>Pass2.cmd
echo del /q %windir%\adsldpbd.dll>>Pass2.cmd
echo if NOT exist "%windir%\adsldpbd.dll" echo %windir%\adsldpbd.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\adsldpbd.dll" echo %sError% %windir%\adsldpbd.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\adsldpbe.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\adsldpbe.dll>>Pass2.cmd
echo del /q %windir%\adsldpbe.dll>>Pass2.cmd
echo if NOT exist "%windir%\adsldpbe.dll" echo %windir%\adsldpbe.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\adsldpbe.dll" echo %sError% %windir%\adsldpbe.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\adsldpbf.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\adsldpbf.dll>>Pass2.cmd
echo del /q %windir%\adsldpbf.dll>>Pass2.cmd
echo if NOT exist "%windir%\adsldpbf.dll" echo %windir%\adsldpbf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\adsldpbf.dll" echo %sError% %windir%\adsldpbf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\adsldpbj.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\adsldpbj.dll>>Pass2.cmd
echo del /q %windir%\adsldpbj.dll>>Pass2.cmd
echo if NOT exist "%windir%\adsldpbj.dll" echo %windir%\adsldpbj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\adsldpbj.dll" echo %sError% %windir%\adsldpbj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\alexaie.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\alexaie.dll>>Pass2.cmd
echo del /q %windir%\alexaie.dll>>Pass2.cmd
echo if NOT exist "%windir%\alexaie.dll" echo %windir%\alexaie.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\alexaie.dll" echo %sError% %windir%\alexaie.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\alxie328.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\alxie328.dll>>Pass2.cmd
echo del /q %windir%\alxie328.dll>>Pass2.cmd
echo if NOT exist "%windir%\alxie328.dll" echo %windir%\alxie328.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\alxie328.dll" echo %sError% %windir%\alxie328.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\alxtb1.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\alxtb1.dll>>Pass2.cmd
echo del /q %windir%\alxtb1.dll>>Pass2.cmd
echo if NOT exist "%windir%\alxtb1.dll" echo %windir%\alxtb1.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\alxtb1.dll" echo %sError% %windir%\alxtb1.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\browsers.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\browsers.dll>>Pass2.cmd
echo del /q %windir%\browsers.dll>>Pass2.cmd
echo if NOT exist "%windir%\browsers.dll" echo %windir%\browsers.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\browsers.dll" echo %sError% %windir%\browsers.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\BTGrab.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\BTGrab.dll>>Pass2.cmd
echo del /q %windir%\BTGrab.dll>>Pass2.cmd
echo if NOT exist "%windir%\BTGrab.dll" echo %windir%\BTGrab.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\BTGrab.dll" echo %sError% %windir%\BTGrab.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\d3??.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\d3??.dll>>Pass2.cmd
echo del /q %windir%\d3??.dll>>Pass2.cmd
echo if NOT exist "%windir%\d3??.dll" echo %windir%\d3??.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\d3??.dll" echo %sError% %windir%\d3??.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\ddesupport.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\ddesupport.dll>>Pass2.cmd
echo del /q %windir%\ddesupport.dll>>Pass2.cmd
echo if NOT exist "%windir%\ddesupport.dll" echo %windir%\ddesupport.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\ddesupport.dll" echo %sError% %windir%\ddesupport.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\defender??.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\defender??.exe>>Pass2.cmd
echo del /q %windir%\defender??.exe>>Pass2.cmd
echo if NOT exist "%windir%\defender??.exe" echo %windir%\defender??.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\defender??.exe" echo %sError% %windir%\defender??.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\dxdiag.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\dxdiag.dll>>Pass2.cmd
echo del /q %windir%\dxdiag.dll>>Pass2.cmd
echo if NOT exist "%windir%\dxdiag.dll" echo %windir%\dxdiag.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\dxdiag.dll" echo %sError% %windir%\dxdiag.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\dlmax.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\dlmax.dll>>Pass2.cmd
echo del /q %windir%\dlmax.dll>>Pass2.cmd
echo if NOT exist "%windir%\dlmax.dll" echo %windir%\dlmax.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\dlmax.dll" echo %sError% %windir%\dlmax.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\duocore.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\duocore.dll>>Pass2.cmd
echo del /q %windir%\duocore.dll>>Pass2.cmd
echo if NOT exist "%windir%\duocore.dll" echo %windir%\duocore.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\duocore.dll" echo %sError% %windir%\duocore.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\iebrowser.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\iebrowser.dll>>Pass2.cmd
echo del /q %windir%\iebrowser.dll>>Pass2.cmd
echo if NOT exist "%windir%\iebrowser.dll" echo %windir%\iebrowser.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\iebrowser.dll" echo %sError% %windir%\iebrowser.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\iecontext.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\iecontext.dll>>Pass2.cmd
echo del /q %windir%\iecontext.dll>>Pass2.cmd
echo if NOT exist "%windir%\iecontext.dll" echo %windir%\iecontext.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\iecontext.dll" echo %sError% %windir%\iecontext.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\iedrv.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\iedrv.exe>>Pass2.cmd
echo del /q %windir%\iedrv.exe>>Pass2.cmd
echo if NOT exist "%windir%\iedrv.exe" echo %windir%\iedrv.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\iedrv.exe" echo %sError% %windir%\iedrv.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\iexplorer.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\iexplorer.exe>>Pass2.cmd
echo del /q %windir%\iexplorer.exe>>Pass2.cmd
echo if NOT exist "%windir%\iexplorer.exe" echo %windir%\iexplorer.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\iexplorer.exe" echo %sError% %windir%\iexplorer.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\ieyi.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\ieyi.dll>>Pass2.cmd
echo del /q %windir%\ieyi.dll>>Pass2.cmd
echo if NOT exist "%windir%\ieyi.dll" echo %windir%\ieyi.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\ieyi.dll" echo %sError% %windir%\ieyi.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\inetloader.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\inetloader.dll>>Pass2.cmd
echo del /q %windir%\inetloader.dll>>Pass2.cmd
echo if NOT exist "%windir%\inetloader.dll" echo %windir%\inetloader.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\inetloader.dll" echo %sError% %windir%\inetloader.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\inet20001" (>>Pass2.cmd
echo attrib -r -h %windir%\inet20001\*.*>>Pass2.cmd
echo del /a /f /q %windir%\inet20001\*.*>>Pass2.cmd
echo RD /s /q "%windir%\inet20001">>Pass2.cmd
echo IF NOT exist "%windir%\inet20001" echo %windir%\inet20001\ %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%windir%\inet20001" echo %sError% %windir%\inet20001^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\inet20010" (>>Pass2.cmd
echo attrib -r -h %windir%\inet20010\*.*>>Pass2.cmd
echo del /a /f /q %windir%\inet20010\*.*>>Pass2.cmd
echo RD /s /q "%windir%\inet20010">>Pass2.cmd
echo IF NOT exist "%windir%\inet20010" echo %windir%\inet20010\ %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%windir%\inet20010" echo %sError% %windir%\inet20010^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\inet20066" (>>Pass2.cmd
echo attrib -r -h %windir%\inet20066\*.*>>Pass2.cmd
echo del /a /f /q %windir%\inet20066\*.*>>Pass2.cmd
echo RD /s /q "%windir%\inet20066">>Pass2.cmd
echo IF NOT exist "%windir%\inet20066" echo %windir%\inet20066\ %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%windir%\inet20066" echo %sError% %windir%\inet20066^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\inet20099" (>>Pass2.cmd
echo attrib -r -h %windir%\inet20099\*.*>>Pass2.cmd
echo del /a /f /q %windir%\inet20099\*.*>>Pass2.cmd
echo RD /s /q "%windir%\inet20099">>Pass2.cmd
echo IF NOT exist "%windir%\inet20099" echo %windir%\inet20099\ %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%windir%\inet20099" echo %sError% %windir%\inet20099^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\msdrv.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\msdrv.exe>>Pass2.cmd
echo del /q %windir%\msdrv.exe>>Pass2.cmd
echo if NOT exist "%windir%\msdrv.exe" echo %windir%\msdrv.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\msdrv.exe" echo %sError% %windir%\msdrv.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\mslog.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\mslog.exe>>Pass2.cmd
echo del /q %windir%\mslog.exe>>Pass2.cmd
echo if NOT exist "%windir%\mslog.exe" echo %windir%\mslog.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\mslog.exe" echo %sError% %windir%\mslog.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\mxduo.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\mxduo.dll>>Pass2.cmd
echo del /q %windir%\mxduo.dll>>Pass2.cmd
echo if NOT exist "%windir%\mxduo.dll" echo %windir%\mxduo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\mxduo.dll" echo %sError% %windir%\mxduo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\nsduo.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\nsduo.dll>>Pass2.cmd
echo del /q %windir%\nsduo.dll>>Pass2.cmd
echo if NOT exist "%windir%\nsduo.dll" echo %windir%\nsduo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\nsduo.dll" echo %sError% %windir%\nsduo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\osaupd.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\osaupd.exe>>Pass2.cmd
echo del /q %windir%\osaupd.exe>>Pass2.cmd
echo if NOT exist "%windir%\osaupd.exe" echo %windir%\osaupd.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\osaupd.exe" echo %sError% %windir%\osaupd.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\policies.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\policies.dll>>Pass2.cmd
echo del /q %windir%\policies.dll>>Pass2.cmd
echo if NOT exist "%windir%\policies.dll" echo %windir%\policies.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\policies.dll" echo %sError% %windir%\policies.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\policyverifier.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\policyverifier.exe>>Pass2.cmd
echo del /q %windir%\policyverifier.exe>>Pass2.cmd
echo if NOT exist "%windir%\policyverifier.exe" echo %windir%\policyverifier.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\policyverifier.exe" echo %sError% %windir%\policyverifier.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\Pynix.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\Pynix.dll>>Pass2.cmd
echo del /q %windir%\Pynix.dll>>Pass2.cmd
echo if NOT exist "%windir%\Pynix.dll" echo %windir%\Pynix.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\Pynix.dll" echo %sError% %windir%\Pynix.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\qnxplugin.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\qnxplugin.dll>>Pass2.cmd
echo del /q %windir%\qnxplugin.dll>>Pass2.cmd
echo if NOT exist "%windir%\qnxplugin.dll" echo %windir%\qnxplugin.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\qnxplugin.dll" echo %sError% %windir%\qnxplugin.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\q*_disk.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\q*_disk.dll>>Pass2.cmd
echo del /q %windir%\q*_disk.dll>>Pass2.cmd
echo if NOT exist "%windir%\q*_disk.dll" echo %windir%\q*_disk.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\q*_disk.dll" echo %sError% %windir%\q*_disk.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\sconf32.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\sconf32.dll>>Pass2.cmd
echo del /q %windir%\sconf32.dll>>Pass2.cmd
echo if NOT exist "%windir%\sconf32.dll" echo %windir%\sconf32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\sconf32.dll" echo %sError% %windir%\sconf32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\se_spoof.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\se_spoof.dll>>Pass2.cmd
echo del /q %windir%\se_spoof.dll>>Pass2.cmd
echo if NOT exist "%windir%\se_spoof.dll" echo %windir%\se_spoof.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\se_spoof.dll" echo %sError% %windir%\se_spoof.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\sdkcb.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\sdkcb.dll>>Pass2.cmd
echo del /q %windir%\sdkcb.dll>>Pass2.cmd
echo if NOT exist "%windir%\sdkcb.dll" echo %windir%\sdkcb.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\sdkcb.dll" echo %sError% %windir%\sdkcb.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\slassac.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\slassac.dll>>Pass2.cmd
echo del /q %windir%\slassac.dll>>Pass2.cmd
echo if NOT exist "%windir%\slassac.dll" echo %windir%\slassac.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\slassac.dll" echo %sError% %windir%\slassac.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\sounddrv.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\sounddrv.dll>>Pass2.cmd
echo del /q %windir%\sounddrv.dll>>Pass2.cmd
echo if NOT exist "%windir%\sounddrv.dll" echo %windir%\sounddrv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\sounddrv.dll" echo %sError% %windir%\sounddrv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\soundplugin.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\soundplugin.dll>>Pass2.cmd
echo del /q %windir%\soundplugin.dll>>Pass2.cmd
echo if NOT exist "%windir%\soundplugin.dll" echo %windir%\soundplugin.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\soundplugin.dll" echo %sError% %windir%\soundplugin.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\System32fab.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\System32fab.exe>>Pass2.cmd
echo del /q %windir%\System32fab.exe>>Pass2.cmd
echo if NOT exist "%windir%\System32fab.exe" echo %windir%\System32fab.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\System32fab.exe" echo %sError% %windir%\System32fab.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\tool4.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\tool4.exe>>Pass2.cmd
echo del /q %windir%\tool4.exe>>Pass2.cmd
echo if NOT exist "%windir%\tool4.exe" echo %windir%\tool4.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\tool4.exe" echo %sError% %windir%\tool4.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmpconf.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmpconf.dll>>Pass2.cmd
echo del /q %windir%\wmpconf.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmpconf.dll" echo %windir%\wmpconf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmpconf.dll" echo %sError% %windir%\wmpconf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmpdev.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmpdev.dll>>Pass2.cmd
echo del /q %windir%\wmpdev.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmpdev.dll" echo %windir%\wmpdev.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmpdev.dll" echo %sError% %windir%\wmpdev.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmpenv.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmpenv.dll>>Pass2.cmd
echo del /q %windir%\wmpenv.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmpenv.dll" echo %windir%\wmpenv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmpenv.dll" echo %sError% %windir%\wmpenv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmphost.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmphost.dll>>Pass2.cmd
echo del /q %windir%\wmphost.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmphost.dll" echo %windir%\wmphost.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmphost.dll" echo %sError% %windir%\wmphost.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmplayer.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmplayer.dll>>Pass2.cmd
echo del /q %windir%\wmplayer.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmplayer.dll" echo %windir%\wmplayer.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmplayer.dll" echo %sError% %windir%\wmplayer.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\wmsound.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\wmsound.dll>>Pass2.cmd
echo del /q %windir%\wmsound.dll>>Pass2.cmd
echo if NOT exist "%windir%\wmsound.dll" echo %windir%\wmsound.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\wmsound.dll" echo %sError% %windir%\wmsound.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\xvideo.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\xvideo.dll>>Pass2.cmd
echo del /q %windir%\xvideo.dll>>Pass2.cmd
echo if NOT exist "%windir%\xvideo.dll" echo %windir%\xvideo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\xvideo.dll" echo %sError% %windir%\xvideo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\ZServ.dll" (>>Pass2.cmd
echo attrib -r -h -s %windir%\ZServ.dll>>Pass2.cmd
echo del /q %windir%\ZServ.dll>>Pass2.cmd
echo if NOT exist "%windir%\ZServ.dll" echo %windir%\ZServ.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\ZServ.dll" echo %sError% %windir%\ZServ.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%windir%\system\csrss.exe" (>>Pass2.cmd
echo attrib -r -h -s %windir%\system\csrss.exe>>Pass2.cmd
echo del /q %windir%\system\csrss.exe>>Pass2.cmd
echo if NOT exist "%windir%\system\csrss.exe" echo %windir%\system\csrss.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%windir%\system\csrss.exe" echo %sError% %windir%\system\csrss.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\adobepnl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\adobepnl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\adobepnl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\adobepnl.dll" echo %systemroot%\system32\adobepnl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\adobepnl.dll" echo %sError% %systemroot%\system32\adobepnl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\acvgxw.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\acvgxw.dll>>Pass2.cmd
echo del /q %systemroot%\system32\acvgxw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\acvgxw.dll" echo %systemroot%\system32\acvgxw.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\acvgxw.dll" echo %sError% %systemroot%\system32\acvgxw.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\afkvvy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\afkvvy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\afkvvy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\afkvvy.dll" echo %systemroot%\system32\afkvvy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\afkvvy.dll" echo %sError% %systemroot%\system32\afkvvy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\afzdbl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\afzdbl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\afzdbl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\afzdbl.dll" echo %systemroot%\system32\afzdbl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\afzdbl.dll" echo %sError% %systemroot%\system32\afzdbl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\alxres.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\alxres.dll>>Pass2.cmd
echo del /q %systemroot%\system32\alxres.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\alxres.dll" echo %systemroot%\system32\alxres.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\alxres.dll" echo %sError% %systemroot%\system32\alxres.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\antzozc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\antzozc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\antzozc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\antzozc.dll" echo %systemroot%\system32\antzozc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\antzozc.dll" echo %sError% %systemroot%\system32\antzozc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\appmagr.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\appmagr.dll>>Pass2.cmd
echo del /q %systemroot%\system32\appmagr.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\appmagr.dll" echo %systemroot%\system32\appmagr.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\appmagr.dll" echo %sError% %systemroot%\system32\appmagr.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\asxbbx.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\asxbbx.dll>>Pass2.cmd
echo del /q %systemroot%\system32\asxbbx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\asxbbx.dll" echo %systemroot%\system32\asxbbx.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\asxbbx.dll" echo %sError% %systemroot%\system32\asxbbx.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\atmclk.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\atmclk.exe>>Pass2.cmd
echo del /q %systemroot%\system32\atmclk.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\atmclk.exe" echo %systemroot%\system32\atmclk.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\atmclk.exe" echo %sError% %systemroot%\system32\atmclk.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\autodisc32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\autodisc32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\autodisc32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\autodisc32.dll" echo %systemroot%\system32\autodisc32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\autodisc32.dll" echo %sError% %systemroot%\system32\autodisc32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\autosys.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\autosys.exe>>Pass2.cmd
echo del /q %systemroot%\system32\autosys.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\autosys.exe" echo %systemroot%\system32\autosys.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\autosys.exe" echo %sError% %systemroot%\system32\autosys.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\axlet.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\axlet.dll>>Pass2.cmd
echo del /q %systemroot%\system32\axlet.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\axlet.dll" echo %systemroot%\system32\axlet.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\axlet.dll" echo %sError% %systemroot%\system32\axlet.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bhoSearchSpy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\bhoSearchSpy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\bhoSearchSpy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bhoSearchSpy.dll" echo %systemroot%\system32\bhoSearchSpy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\bhoSearchSpy.dll" echo %sError% %systemroot%\system32\bhoSearchSpy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bikini.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\bikini.exe>>Pass2.cmd
echo del /q %systemroot%\system32\bikini.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bikini.exe" echo %systemroot%\system32\bikini.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\bikini.exe" echo %sError% %systemroot%\system32\bikini.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\birdihuy32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\birdihuy32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\birdihuy32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\birdihuy32.dll" echo %systemroot%\system32\birdihuy32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\birdihuy32.dll" echo %sError% %systemroot%\system32\birdihuy32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bolnyz.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\bolnyz.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\bolnyz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bolnyz.dll" echo %systemroot%\system32\bolnyz.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\bolnyz.dll" echo %sError% %systemroot%\system32\bolnyz.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bre.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\bre.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\bre.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bre.dll" echo %systemroot%\system32\bre.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\bre.dll" echo %sError% %systemroot%\system32\bre.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bre32.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\bre32.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\bre32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bre32.dll" echo %systemroot%\system32\bre32.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\bre32.dll" echo %sError% %systemroot%\system32\bre32.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bpvcou.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\bpvcou.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\bpvcou.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bpvcou.dll" echo %systemroot%\system32\bpvcou.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\bpvcou.dll" echo %sError% %systemroot%\system32\bpvcou.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\browsela.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\browsela.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\browsela.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\browsela.dll" echo %systemroot%\system32\browsela.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\browsela.dll" echo %sError% %systemroot%\system32\browsela.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\bridge.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\bridge.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\bridge.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\bridge.dll" echo %systemroot%\system32\bridge.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\bridge.dll" echo %sError% %systemroot%\system32\bridge.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ccyszwl.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ccyszwl.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ccyszwl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ccyszwl.dll" echo %systemroot%\system32\ccyszwl.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ccyszwl.dll" echo %sError% %systemroot%\system32\ccyszwl.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cdwvhbf.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cdwvhbf.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cdwvhbf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cdwvhbf.dll" echo %systemroot%\system32\cdwvhbf.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cdwvhbf.dll" echo %sError% %systemroot%\system32\cdwvhbf.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cefrjsh.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cefrjsh.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cefrjsh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cefrjsh.dll" echo %systemroot%\system32\cefrjsh.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cefrjsh.dll" echo %sError% %systemroot%\system32\cefrjsh.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cfltygd.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cfltygd.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cfltygd.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cfltygd.dll" echo %systemroot%\system32\cfltygd.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cfltygd.dll" echo %sError% %systemroot%\system32\cfltygd.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cvxh8jkdq?.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cvxh8jkdq?.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cvxh8jkdq?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cvxh8jkdq?.exe" echo %systemroot%\system32\cvxh8jkdq?.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cvxh8jkdq?.exe" echo %sError% %systemroot%\system32\cvxh8jkdq?.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\child.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\child.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\child.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\child.dll" echo %systemroot%\system32\child.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\child.dll" echo %sError% %systemroot%\system32\child.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\chp.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\chp.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\chp.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\chp.dll" echo %systemroot%\system32\chp.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\chp.dll" echo %sError% %systemroot%\system32\chp.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ckimzeb.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ckimzeb.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ckimzeb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ckimzeb.dll" echo %systemroot%\system32\ckimzeb.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ckimzeb.dll" echo %sError% %systemroot%\system32\ckimzeb.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cqsfk.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cqsfk.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cqsfk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cqsfk.dll" echo %systemroot%\system32\cqsfk.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cqsfk.dll" echo %sError% %systemroot%\system32\cqsfk.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\comdlg64.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\comdlg64.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\comdlg64.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\comdlg64.dll" echo %systemroot%\system32\comdlg64.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\comdlg64.dll" echo %sError% %systemroot%\system32\comdlg64.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ctpmon.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ctpmon.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ctpmon.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ctpmon.exe" echo %systemroot%\system32\ctpmon.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ctpmon.exe" echo %sError% %systemroot%\system32\ctpmon.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cthkpcv.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cthkpcv.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cthkpcv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cthkpcv.dll" echo %systemroot%\system32\cthkpcv.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cthkpcv.dll" echo %sError% %systemroot%\system32\cthkpcv.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cvnzie.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cvnzie.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cvnzie.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cvnzie.dll" echo %systemroot%\system32\cvnzie.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cvnzie.dll" echo %sError% %systemroot%\system32\cvnzie.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\cwgppb.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\cwgppb.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\cwgppb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\cwgppb.dll" echo %systemroot%\system32\cwgppb.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\cwgppb.dll" echo %sError% %systemroot%\system32\cwgppb.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\czxtyx.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\czxtyx.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\czxtyx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\czxtyx.dll" echo %systemroot%\system32\czxtyx.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\czxtyx.dll" echo %sError% %systemroot%\system32\czxtyx.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dailytoolbar.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dailytoolbar.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dailytoolbar.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dailytoolbar.dll" echo %systemroot%\system32\dailytoolbar.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dailytoolbar.dll" echo %sError% %systemroot%\system32\dailytoolbar.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dbqlrij.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dbqlrij.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dbqlrij.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dbqlrij.dll" echo %systemroot%\system32\dbqlrij.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dbqlrij.dll" echo %sError% %systemroot%\system32\dbqlrij.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_14.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_14.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_14.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_14.dll" echo %systemroot%\system32\dcom_14.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_14.dll" echo %sError% %systemroot%\system32\dcom_14.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_15.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_15.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_15.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_15.dll" echo %systemroot%\system32\dcom_15.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_15.dll" echo %sError% %systemroot%\system32\dcom_15.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_16.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_16.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_16.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_16.dll" echo %systemroot%\system32\dcom_16.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_16.dll" echo %sError% %systemroot%\system32\dcom_16.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_18.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_18.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_18.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_18.dll" echo %systemroot%\system32\dcom_18.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_18.dll" echo %sError% %systemroot%\system32\dcom_18.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_19.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_19.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_19.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_19.dll" echo %systemroot%\system32\dcom_19.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_19.dll" echo %sError% %systemroot%\system32\dcom_19.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_20.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_20.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_20.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_20.dll" echo %systemroot%\system32\dcom_20.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_20.dll" echo %sError% %systemroot%\system32\dcom_20.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_21.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcom_21.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcom_21.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcom_21.dll" echo %systemroot%\system32\dcom_21.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcom_21.dll" echo %sError% %systemroot%\system32\dcom_21.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcomcfg.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\dcomcfg.exe>>Pass2.cmd
echo del /q %systemroot%\system32\dcomcfg.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcomcfg.exe" echo %systemroot%\system32\dcomcfg.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\dcomcfg.exe" echo %sError% %systemroot%\system32\dcomcfg.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dcvwaah.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dcvwaah.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dcvwaah.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dcvwaah.dll" echo %systemroot%\system32\dcvwaah.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dcvwaah.dll" echo %sError% %systemroot%\system32\dcvwaah.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hadjajr.ini" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\Delete_Me_Dummy_hadjajr.ini>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\Delete_Me_Dummy_hadjajr.ini>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\Delete_Me_Dummy_hadjajr.ini" echo %systemroot%\system32\Delete_Me_Dummy_hadjajr.ini %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hadjajr.ini" echo %sError% %systemroot%\system32\Delete_Me_Dummy_hadjajr.ini^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hanonvt.ini" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\Delete_Me_Dummy_hanonvt.ini>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\Delete_Me_Dummy_hanonvt.ini>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\Delete_Me_Dummy_hanonvt.ini" echo %systemroot%\system32\Delete_Me_Dummy_hanonvt.ini %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hanonvt.ini" echo %sError% %systemroot%\system32\Delete_Me_Dummy_hanonvt.ini^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hrum.txt" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\Delete_Me_Dummy_hrum.txt>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\Delete_Me_Dummy_hrum.txt>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\Delete_Me_Dummy_hrum.txt" echo %systemroot%\system32\Delete_Me_Dummy_hrum.txt %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hrum.txt" echo %sError% %systemroot%\system32\Delete_Me_Dummy_hrum.txt^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hrum323.txt" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\Delete_Me_Dummy_hrum323.txt>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\Delete_Me_Dummy_hrum323.txt>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\Delete_Me_Dummy_hrum323.txt" echo %systemroot%\system32\Delete_Me_Dummy_hrum323.txt %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\Delete_Me_Dummy_hrum323.txt" echo %sError% %systemroot%\system32\Delete_Me_Dummy_hrum323.txt^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dtjby.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dtjby.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dtjby.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dtjby.dll" echo %systemroot%\system32\dtjby.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dtjby.dll" echo %sError% %systemroot%\system32\dtjby.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dfrgsrv.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\dfrgsrv.exe>>Pass2.cmd
echo del /q %systemroot%\system32\dfrgsrv.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dfrgsrv.exe" echo %systemroot%\system32\dfrgsrv.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\dfrgsrv.exe" echo %sError% %systemroot%\system32\dfrgsrv.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dlh9jkdq?.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\dlh9jkdq?.exe>>Pass2.cmd
echo del /q %systemroot%\system32\dlh9jkdq?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dlh9jkdq?.exe" echo %systemroot%\system32\dlh9jkdq?.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\dlh9jkdq?.exe" echo %sError% %systemroot%\system32\dlh9jkdq?.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dnefhw.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dnefhw.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dnefhw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dnefhw.dll" echo %systemroot%\system32\dnefhw.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dnefhw.dll" echo %sError% %systemroot%\system32\dnefhw.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dooep.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dooep.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dooep.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dooep.dll" echo %systemroot%\system32\dooep.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dooep.dll" echo %sError% %systemroot%\system32\dooep.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dpfwu.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dpfwu.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dpfwu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dpfwu.dll" echo %systemroot%\system32\dpfwu.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dpfwu.dll" echo %sError% %systemroot%\system32\dpfwu.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\duxzj.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\duxzj.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\duxzj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\duxzj.dll" echo %systemroot%\system32\duxzj.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\duxzj.dll" echo %sError% %systemroot%\system32\duxzj.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dvdcap.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dvdcap.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dvdcap.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dvdcap.dll" echo %systemroot%\system32\dvdcap.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dvdcap.dll" echo %sError% %systemroot%\system32\dvdcap.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dxole32.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\dxole32.exe>>Pass2.cmd
echo del /q %systemroot%\system32\dxole32.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dxole32.exe" echo %systemroot%\system32\dxole32.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\dxole32.exe" echo %sError% %systemroot%\system32\dxole32.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dxmpp.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dxmpp.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dxmpp.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dxmpp.dll" echo %systemroot%\system32\dxmpp.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dxmpp.dll" echo %sError% %systemroot%\system32\dxmpp.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\dxovx.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\dxovx.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\dxovx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\dxovx.dll" echo %systemroot%\system32\dxovx.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\dxovx.dll" echo %sError% %systemroot%\system32\dxovx.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\eeuydc.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\eeuydc.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\eeuydc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\eeuydc.dll" echo %systemroot%\system32\eeuydc.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\eeuydc.dll" echo %sError% %systemroot%\system32\eeuydc.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\egzcqg.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\egzcqg.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\egzcqg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\egzcqg.dll" echo %systemroot%\system32\egzcqg.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\egzcqg.dll" echo %sError% %systemroot%\system32\egzcqg.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\eigbbb.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\eigbbb.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\eigbbb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\eigbbb.dll" echo %systemroot%\system32\eigbbb.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\eigbbb.dll" echo %sError% %systemroot%\system32\eigbbb.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\eowygj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\eowygj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\eowygj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\eowygj.dll" echo %systemroot%\system32\eowygj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\eowygj.dll" echo %sError% %systemroot%\system32\eowygj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\erxbx.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\erxbx.dll>>Pass2.cmd
echo del /q %systemroot%\system32\erxbx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\erxbx.dll" echo %systemroot%\system32\erxbx.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\erxbx.dll" echo %sError% %systemroot%\system32\erxbx.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\exuc32.tmp" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\exuc32.tmp>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\exuc32.tmp>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\exuc32.tmp" echo %systemroot%\system32\exuc32.tmp %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\exuc32.tmp" echo %sError% %systemroot%\system32\exuc32.tmp^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fdpzgi.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fdpzgi.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fdpzgi.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fdpzgi.dll" echo %systemroot%\system32\fdpzgi.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fdpzgi.dll" echo %sError% %systemroot%\system32\fdpzgi.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fhmfes.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fhmfes.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fhmfes.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fhmfes.dll" echo %systemroot%\system32\fhmfes.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fhmfes.dll" echo %sError% %systemroot%\system32\fhmfes.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ficqv.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ficqv.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ficqv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ficqv.dll" echo %systemroot%\system32\ficqv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ficqv.dll" echo %sError% %systemroot%\system32\ficqv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fjdcy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fjdcy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fjdcy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fjdcy.dll" echo %systemroot%\system32\fjdcy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fjdcy.dll" echo %sError% %systemroot%\system32\fjdcy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fmrmhc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fmrmhc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fmrmhc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fmrmhc.dll" echo %systemroot%\system32\fmrmhc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fmrmhc.dll" echo %sError% %systemroot%\system32\fmrmhc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fqdqs.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fqdqs.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fqdqs.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fqdqs.dll" echo %systemroot%\system32\fqdqs.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fqdqs.dll" echo %sError% %systemroot%\system32\fqdqs.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fshqaln.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fshqaln.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fshqaln.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fshqaln.dll" echo %systemroot%\system32\fshqaln.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fshqaln.dll" echo %sError% %systemroot%\system32\fshqaln.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fwrkqfl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fwrkqfl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fwrkqfl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fwrkqfl.dll" echo %systemroot%\system32\fwrkqfl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fwrkqfl.dll" echo %sError% %systemroot%\system32\fwrkqfl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fyhhxw.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fyhhxw.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fyhhxw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fyhhxw.dll" echo %systemroot%\system32\fyhhxw.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fyhhxw.dll" echo %sError% %systemroot%\system32\fyhhxw.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fyhwfc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fyhwfc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fyhwfc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fyhwfc.dll" echo %systemroot%\system32\fyhwfc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fyhwfc.dll" echo %sError% %systemroot%\system32\fyhwfc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\fyxkaah.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\fyxkaah.dll>>Pass2.cmd
echo del /q %systemroot%\system32\fyxkaah.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\fyxkaah.dll" echo %systemroot%\system32\fyxkaah.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\fyxkaah.dll" echo %sError% %systemroot%\system32\fyxkaah.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gbjkog.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gbjkog.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gbjkog.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gbjkog.dll" echo %systemroot%\system32\gbjkog.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gbjkog.dll" echo %sError% %systemroot%\system32\gbjkog.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\geplxss.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\geplxss.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\geplxss.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\geplxss.dll" echo %systemroot%\system32\geplxss.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\geplxss.dll" echo %sError% %systemroot%\system32\geplxss.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ginuerep.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ginuerep.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ginuerep.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ginuerep.dll" echo %systemroot%\system32\ginuerep.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ginuerep.dll" echo %sError% %systemroot%\system32\ginuerep.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gqagksr.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gqagksr.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gqagksr.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gqagksr.dll" echo %systemroot%\system32\gqagksr.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gqagksr.dll" echo %sError% %systemroot%\system32\gqagksr.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gsrnxgh.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gsrnxgh.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gsrnxgh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gsrnxgh.dll" echo %systemroot%\system32\gsrnxgh.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gsrnxgh.dll" echo %sError% %systemroot%\system32\gsrnxgh.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gtawclv.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gtawclv.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gtawclv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gtawclv.dll" echo %systemroot%\system32\gtawclv.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gtawclv.dll" echo %sError% %systemroot%\system32\gtawclv.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gtpbx.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gtpbx.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gtpbx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gtpbx.dll" echo %systemroot%\system32\gtpbx.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gtpbx.dll" echo %sError% %systemroot%\system32\gtpbx.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gusur.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gusur.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gusur.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gusur.dll" echo %systemroot%\system32\gusur.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gusur.dll" echo %sError% %systemroot%\system32\gusur.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\guxmhcd.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\guxmhcd.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\guxmhcd.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\guxmhcd.dll" echo %systemroot%\system32\guxmhcd.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\guxmhcd.dll" echo %sError% %systemroot%\system32\guxmhcd.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\guxxa.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\guxxa.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\guxxa.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\guxxa.dll" echo %systemroot%\system32\guxxa.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\guxxa.dll" echo %sError% %systemroot%\system32\guxxa.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\gwquvw.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\gwquvw.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\gwquvw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\gwquvw.dll" echo %systemroot%\system32\gwquvw.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\gwquvw.dll" echo %sError% %systemroot%\system32\gwquvw.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hadjajr.ini" (>>Pass2.cmd
echo ren "%systemroot%\system32\hadjajr.ini" Delete_Me_Dummy_hadjajr.ini>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hadjajr.ini" echo %systemroot%\system32\hadjajr.ini %sRen%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hadjajr.ini" echo %sError% %systemroot%\system32\hadjajr.ini^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hanonvt.ini" (>>Pass2.cmd
echo ren "%systemroot%\system32\hanonvt.ini" Delete_Me_Dummy_hanonvt.ini>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hanonvt.ini" echo %systemroot%\system32\hanonvt.ini %sRen%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hanonvt.ini" echo %sError% %systemroot%\system32\hanonvt.ini^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hjpprpu.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\hjpprpu.dll>>Pass2.cmd
echo del /q %systemroot%\system32\hjpprpu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hjpprpu.dll" echo %systemroot%\system32\hjpprpu.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\hjpprpu.dll" echo %sError% %systemroot%\system32\hjpprpu.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\higehsg.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\higehsg.dll>>Pass2.cmd
echo del /q %systemroot%\system32\higehsg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\higehsg.dll" echo %systemroot%\system32\higehsg.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\higehsg.dll" echo %sError% %systemroot%\system32\higehsg.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\higjxe.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\higjxe.dll>>Pass2.cmd
echo del /q %systemroot%\system32\higjxe.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\higjxe.dll" echo %systemroot%\system32\higjxe.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\higjxe.dll" echo %sError% %systemroot%\system32\higjxe.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hp???.tmp" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\hp???.tmp>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\hp???.tmp>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hp???.tmp" echo %systemroot%\system32\hp???.tmp %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hp???.tmp" echo %sError% %systemroot%\system32\hp???.tmp^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hp????.tmp" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\hp????.tmp>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\hp????.tmp>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hp????.tmp" echo %systemroot%\system32\hp????.tmp %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hp????.tmp" echo %sError% %systemroot%\system32\hp????.tmp^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hrum.txt" (>>Pass2.cmd
echo ren "%systemroot%\system32\hrum.txt" Delete_Me_Dummy_hrum.txt>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hrum.txt" echo %systemroot%\system32\hrum.txt %sRen%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hrum.txt" echo %sError% %systemroot%\system32\hrum.txt^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hrum323.txt" (>>Pass2.cmd
echo ren "%systemroot%\system32\hrum323.txt" Delete_Me_Dummy_hrum323.txt>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hrum323.txt" echo %systemroot%\system32\hrum323.txt %sRen%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\hrum323.txt" echo %sError% %systemroot%\system32\hrum323.txt^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\htey.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\htey.dll>>Pass2.cmd
echo del /q %systemroot%\system32\htey.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\htey.dll" echo %systemroot%\system32\htey.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\htey.dll" echo %sError% %systemroot%\system32\htey.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\httge.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\httge.dll>>Pass2.cmd
echo del /q %systemroot%\system32\httge.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\httge.dll" echo %systemroot%\system32\httge.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\httge.dll" echo %sError% %systemroot%\system32\httge.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hvcycg.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\hvcycg.dll>>Pass2.cmd
echo del /q %systemroot%\system32\hvcycg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hvcycg.dll" echo %systemroot%\system32\hvcycg.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\hvcycg.dll" echo %sError% %systemroot%\system32\hvcycg.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hvnwm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\hvnwm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\hvnwm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hvnwm.dll" echo %systemroot%\system32\hvnwm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\hvnwm.dll" echo %sError% %systemroot%\system32\hvnwm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\hzclqhc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\hzclqhc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\hzclqhc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\hzclqhc.dll" echo %systemroot%\system32\hzclqhc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\hzclqhc.dll" echo %sError% %systemroot%\system32\hzclqhc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\iauoi.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\iauoi.dll>>Pass2.cmd
echo del /q %systemroot%\system32\iauoi.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\iauoi.dll" echo %systemroot%\system32\iauoi.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\iauoi.dll" echo %sError% %systemroot%\system32\iauoi.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\icima.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\icima.dll>>Pass2.cmd
echo del /q %systemroot%\system32\icima.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\icima.dll" echo %systemroot%\system32\icima.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\icima.dll" echo %sError% %systemroot%\system32\icima.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\IeHelperEx.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\IeHelperEx.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\IeHelperEx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\IeHelperEx.dll" echo %systemroot%\system32\IeHelperEx.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\IeHelperEx.dll" echo %sError% %systemroot%\system32\IeHelperEx.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\igpfced.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\igpfced.dll>>Pass2.cmd
echo del /q %systemroot%\system32\igpfced.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\igpfced.dll" echo %systemroot%\system32\igpfced.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\igpfced.dll" echo %sError% %systemroot%\system32\igpfced.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\igzxwrl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\igzxwrl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\igzxwrl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\igzxwrl.dll" echo %systemroot%\system32\igzxwrl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\igzxwrl.dll" echo %sError% %systemroot%\system32\igzxwrl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ilmpjy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ilmpjy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ilmpjy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ilmpjy.dll" echo %systemroot%\system32\ilmpjy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ilmpjy.dll" echo %sError% %systemroot%\system32\ilmpjy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\imfdfcj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\imfdfcj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\imfdfcj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\imfdfcj.dll" echo %systemroot%\system32\imfdfcj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\imfdfcj.dll" echo %sError% %systemroot%\system32\imfdfcj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\impgsje.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\impgsje.dll>>Pass2.cmd
echo del /q %systemroot%\system32\impgsje.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\impgsje.dll" echo %systemroot%\system32\impgsje.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\impgsje.dll" echo %sError% %systemroot%\system32\impgsje.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\indwvm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\indwvm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\indwvm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\indwvm.dll" echo %systemroot%\system32\indwvm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\indwvm.dll" echo %sError% %systemroot%\system32\indwvm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ioctrl.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ioctrl.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ioctrl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ioctrl.dll" echo %systemroot%\system32\ioctrl.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ioctrl.dll" echo %sError% %systemroot%\system32\ioctrl.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ipmon.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ipmon.exe>>Pass2.cmd
echo del /q %systemroot%\system32\ipmon.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ipmon.exe" echo %systemroot%\system32\ipmon.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ipmon.exe" echo %sError% %systemroot%\system32\ipmon.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ipztub.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ipztub.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ipztub.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ipztub.dll" echo %systemroot%\system32\ipztub.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ipztub.dll" echo %sError% %systemroot%\system32\ipztub.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\iqzv.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\iqzv.dll>>Pass2.cmd
echo del /q %systemroot%\system32\iqzv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\iqzv.dll" echo %systemroot%\system32\iqzv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\iqzv.dll" echo %sError% %systemroot%\system32\iqzv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ishost.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ishost.exe>>Pass2.cmd
echo del /q %systemroot%\system32\ishost.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ishost.exe" echo %systemroot%\system32\ishost.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ishost.exe" echo %sError% %systemroot%\system32\ishost.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ismini.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ismini.exe>>Pass2.cmd
echo del /q %systemroot%\system32\ismini.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ismini.exe" echo %systemroot%\system32\ismini.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ismini.exe" echo %sError% %systemroot%\system32\ismini.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ismon.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ismon.exe>>Pass2.cmd
echo del /q %systemroot%\system32\ismon.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ismon.exe" echo %systemroot%\system32\ismon.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ismon.exe" echo %sError% %systemroot%\system32\ismon.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\isnotify.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\isnotify.exe>>Pass2.cmd
echo del /q %systemroot%\system32\isnotify.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\isnotify.exe" echo %systemroot%\system32\isnotify.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\isnotify.exe" echo %sError% %systemroot%\system32\isnotify.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\issearch.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\issearch.exe>>Pass2.cmd
echo del /q %systemroot%\system32\issearch.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\issearch.exe" echo %systemroot%\system32\issearch.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\issearch.exe" echo %sError% %systemroot%\system32\issearch.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ixt?.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ixt?.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ixt?.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ixt?.dll" echo %systemroot%\system32\ixt?.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ixt?.dll" echo %sError% %systemroot%\system32\ixt?.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ixt??.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ixt??.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ixt??.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ixt??.dll" echo %systemroot%\system32\ixt??.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ixt??.dll" echo %sError% %systemroot%\system32\ixt??.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\iwwvh.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\iwwvh.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\iwwvh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\iwwvh.dll" echo %systemroot%\system32\iwwvh.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\iwwvh.dll" echo %sError% %systemroot%\system32\iwwvh.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\jao.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\jao.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\jao.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\jao.dll" echo %systemroot%\system32\jao.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\jao.dll" echo %sError% %systemroot%\system32\jao.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\jbtazy.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\jbtazy.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\jbtazy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\jbtazy.dll" echo %systemroot%\system32\jbtazy.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\jbtazy.dll" echo %sError% %systemroot%\system32\jbtazy.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\jevtxpg.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\jevtxpg.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\jevtxpg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\jevtxpg.dll" echo %systemroot%\system32\jevtxpg.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\jevtxpg.dll" echo %sError% %systemroot%\system32\jevtxpg.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\jpqet.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\jpqet.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\jpqet.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\jpqet.dll" echo %systemroot%\system32\jpqet.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\jpqet.dll" echo %sError% %systemroot%\system32\jpqet.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\kfhrvq.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\kfhrvq.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\kfhrvq.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\kfhrvq.dll" echo %systemroot%\system32\kfhrvq.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\kfhrvq.dll" echo %sError% %systemroot%\system32\kfhrvq.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\kgkdbsk.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\kgkdbsk.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\kgkdbsk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\kgkdbsk.dll" echo %systemroot%\system32\kgkdbsk.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\kgkdbsk.dll" echo %sError% %systemroot%\system32\kgkdbsk.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\khtbpdl.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\khtbpdl.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\khtbpdl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\khtbpdl.dll" echo %systemroot%\system32\khtbpdl.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\khtbpdl.dll" echo %sError% %systemroot%\system32\khtbpdl.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\kkqfb.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\kkqfb.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\kkqfb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\kkqfb.dll" echo %systemroot%\system32\kkqfb.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\kkqfb.dll" echo %sError% %systemroot%\system32\kkqfb.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ktrxe.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ktrxe.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ktrxe.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ktrxe.dll" echo %systemroot%\system32\ktrxe.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ktrxe.dll" echo %sError% %systemroot%\system32\ktrxe.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\kuhmk.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\kuhmk.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\kuhmk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\kuhmk.dll" echo %systemroot%\system32\kuhmk.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\kuhmk.dll" echo %sError% %systemroot%\system32\kuhmk.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\kvfvw.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\kvfvw.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\kvfvw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\kvfvw.dll" echo %systemroot%\system32\kvfvw.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\kvfvw.dll" echo %sError% %systemroot%\system32\kvfvw.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\lapmvzf.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\lapmvzf.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\lapmvzf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\lapmvzf.dll" echo %systemroot%\system32\lapmvzf.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\lapmvzf.dll" echo %sError% %systemroot%\system32\lapmvzf.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\lcsrsrv.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\lcsrsrv.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\lcsrsrv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\lcsrsrv.dll" echo %systemroot%\system32\lcsrsrv.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\lcsrsrv.dll" echo %sError% %systemroot%\system32\lcsrsrv.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ld???.tmp" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ld???.tmp>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ld???.tmp>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ld???.tmp" echo %systemroot%\system32\ld???.tmp %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ld???.tmp" echo %sError% %systemroot%\system32\ld???.tmp^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ld????.tmp" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\ld????.tmp>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\ld????.tmp>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ld????.tmp" echo %systemroot%\system32\ld????.tmp %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\ld????.tmp" echo %sError% %systemroot%\system32\ld????.tmp^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\lich.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\lich.exe>>Pass2.cmd
echo del /q %systemroot%\system32\lich.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\lich.exe" echo %systemroot%\system32\lich.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\lich.exe" echo %sError% %systemroot%\system32\lich.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\lrnjnzf.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\lrnjnzf.dll>>Pass2.cmd
echo del /q %systemroot%\system32\lrnjnzf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\lrnjnzf.dll" echo %systemroot%\system32\lrnjnzf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\lrnjnzf.dll" echo %sError% %systemroot%\system32\lrnjnzf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\lwpfwjb.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\lwpfwjb.dll>>Pass2.cmd
echo del /q %systemroot%\system32\lwpfwjb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\lwpfwjb.dll" echo %systemroot%\system32\lwpfwjb.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\lwpfwjb.dll" echo %sError% %systemroot%\system32\lwpfwjb.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\mivmv.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\mivmv.dll>>Pass2.cmd
echo del /q %systemroot%\system32\mivmv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\mivmv.dll" echo %systemroot%\system32\mivmv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\mivmv.dll" echo %sError% %systemroot%\system32\mivmv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\mlraakb.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\mlraakb.dll>>Pass2.cmd
echo del /q %systemroot%\system32\mlraakb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\mlraakb.dll" echo %systemroot%\system32\mlraakb.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\mlraakb.dll" echo %sError% %systemroot%\system32\mlraakb.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\msmapi32.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\msmapi32.exe>>Pass2.cmd
echo del /q %systemroot%\system32\msmapi32.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\msmapi32.exe" echo %systemroot%\system32\msmapi32.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\msmapi32.exe" echo %sError% %systemroot%\system32\msmapi32.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\mscornet.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\mscornet.exe>>Pass2.cmd
echo del /q %systemroot%\system32\mscornet.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\mscornet.exe" echo %systemroot%\system32\mscornet.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\mscornet.exe" echo %sError% %systemroot%\system32\mscornet.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\msnscps.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\msnscps.dll>>Pass2.cmd
echo del /q %systemroot%\system32\msnscps.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\msnscps.dll" echo %systemroot%\system32\msnscps.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\msnscps.dll" echo %sError% %systemroot%\system32\msnscps.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\mssearchnet.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\mssearchnet.exe>>Pass2.cmd
echo del /q %systemroot%\system32\mssearchnet.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\mssearchnet.exe" echo %systemroot%\system32\mssearchnet.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\mssearchnet.exe" echo %sError% %systemroot%\system32\mssearchnet.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\msupdate32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\msupdate32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\msupdate32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\msupdate32.dll" echo %systemroot%\system32\msupdate32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\msupdate32.dll" echo %sError% %systemroot%\system32\msupdate32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\muvdjo.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\muvdjo.dll>>Pass2.cmd
echo del /q %systemroot%\system32\muvdjo.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\muvdjo.dll" echo %systemroot%\system32\muvdjo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\muvdjo.dll" echo %sError% %systemroot%\system32\muvdjo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\myqlejy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\myqlejy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\myqlejy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\myqlejy.dll" echo %systemroot%\system32\myqlejy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\myqlejy.dll" echo %sError% %systemroot%\system32\myqlejy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\mzoeut.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\mzoeut.dll>>Pass2.cmd
echo del /q %systemroot%\system32\mzoeut.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\mzoeut.dll" echo %systemroot%\system32\mzoeut.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\mzoeut.dll" echo %sError% %systemroot%\system32\mzoeut.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\nbbrhbd.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\nbbrhbd.dll>>Pass2.cmd
echo del /q %systemroot%\system32\nbbrhbd.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\nbbrhbd.dll" echo %systemroot%\system32\nbbrhbd.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\nbbrhbd.dll" echo %sError% %systemroot%\system32\nbbrhbd.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ncompat.tlb" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ncompat.tlb>>Pass2.cmd
echo del /q %systemroot%\system32\ncompat.tlb>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ncompat.tlb" echo %systemroot%\system32\ncompat.tlb %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ncompat.tlb" echo %sError% %systemroot%\system32\ncompat.tlb^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\netwrap.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\netwrap.dll>>Pass2.cmd
echo del /q %systemroot%\system32\netwrap.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\netwrap.dll" echo %systemroot%\system32\netwrap.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\netwrap.dll" echo %sError% %systemroot%\system32\netwrap.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\nexpegp.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\nexpegp.dll>>Pass2.cmd
echo del /q %systemroot%\system32\nexpegp.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\nexpegp.dll" echo %systemroot%\system32\nexpegp.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\nexpegp.dll" echo %sError% %systemroot%\system32\nexpegp.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\notifysb.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\notifysb.dll>>Pass2.cmd
echo del /q %systemroot%\system32\notifysb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\notifysb.dll" echo %systemroot%\system32\notifysb.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\notifysb.dll" echo %sError% %systemroot%\system32\notifysb.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\nuqjici.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\nuqjici.dll>>Pass2.cmd
echo del /q %systemroot%\system32\nuqjici.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\nuqjici.dll" echo %systemroot%\system32\nuqjici.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\nuqjici.dll" echo %sError% %systemroot%\system32\nuqjici.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\nvctrl.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\nvctrl.exe>>Pass2.cmd
echo del /q %systemroot%\system32\nvctrl.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\nvctrl.exe" echo %systemroot%\system32\nvctrl.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\nvctrl.exe" echo %sError% %systemroot%\system32\nvctrl.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oebxpba.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oebxpba.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oebxpba.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oebxpba.dll" echo %systemroot%\system32\oebxpba.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oebxpba.dll" echo %sError% %systemroot%\system32\oebxpba.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oerucu.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oerucu.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oerucu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oerucu.dll" echo %systemroot%\system32\oerucu.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oerucu.dll" echo %sError% %systemroot%\system32\oerucu.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ofcukiz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ofcukiz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ofcukiz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ofcukiz.dll" echo %systemroot%\system32\ofcukiz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ofcukiz.dll" echo %sError% %systemroot%\system32\ofcukiz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\okkmtv.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\okkmtv.dll>>Pass2.cmd
echo del /q %systemroot%\system32\okkmtv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\okkmtv.dll" echo %systemroot%\system32\okkmtv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\okkmtv.dll" echo %sError% %systemroot%\system32\okkmtv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oksrqqu.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oksrqqu.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oksrqqu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oksrqqu.dll" echo %systemroot%\system32\oksrqqu.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oksrqqu.dll" echo %sError% %systemroot%\system32\oksrqqu.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\office_pnl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\office_pnl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\office_pnl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\office_pnl.dll" echo %systemroot%\system32\office_pnl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\office_pnl.dll" echo %sError% %systemroot%\system32\office_pnl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\officescan.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\officescan.exe>>Pass2.cmd
echo del /q %systemroot%\system32\officescan.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\officescan.exe" echo %systemroot%\system32\officescan.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\officescan.exe" echo %sError% %systemroot%\system32\officescan.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oleadm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oleadm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oleadm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oleadm.dll" echo %systemroot%\system32\oleadm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oleadm.dll" echo %sError% %systemroot%\system32\oleadm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oleext.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oleext.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oleext.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oleext.dll" echo %systemroot%\system32\oleext.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oleext.dll" echo %sError% %systemroot%\system32\oleext.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oleext32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oleext32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oleext32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oleext32.dll" echo %systemroot%\system32\oleext32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oleext32.dll" echo %sError% %systemroot%\system32\oleext32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\olnohdw.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\olnohdw.dll>>Pass2.cmd
echo del /q %systemroot%\system32\olnohdw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\olnohdw.dll" echo %systemroot%\system32\olnohdw.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\olnohdw.dll" echo %sError% %systemroot%\system32\olnohdw.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\onljweo.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\onljweo.dll>>Pass2.cmd
echo del /q %systemroot%\system32\onljweo.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\onljweo.dll" echo %systemroot%\system32\onljweo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\onljweo.dll" echo %sError% %systemroot%\system32\onljweo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\onofub.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\onofub.dll>>Pass2.cmd
echo del /q %systemroot%\system32\onofub.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\onofub.dll" echo %systemroot%\system32\onofub.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\onofub.dll" echo %sError% %systemroot%\system32\onofub.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\onwtj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\onwtj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\onwtj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\onwtj.dll" echo %systemroot%\system32\onwtj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\onwtj.dll" echo %sError% %systemroot%\system32\onwtj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oqabf.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oqabf.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oqabf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oqabf.dll" echo %systemroot%\system32\oqabf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oqabf.dll" echo %sError% %systemroot%\system32\oqabf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oqipt.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oqipt.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oqipt.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oqipt.dll" echo %systemroot%\system32\oqipt.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oqipt.dll" echo %sError% %systemroot%\system32\oqipt.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ornzq.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ornzq.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ornzq.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ornzq.dll" echo %systemroot%\system32\ornzq.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ornzq.dll" echo %sError% %systemroot%\system32\ornzq.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ownyhr.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ownyhr.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ownyhr.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ownyhr.dll" echo %systemroot%\system32\ownyhr.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ownyhr.dll" echo %sError% %systemroot%\system32\ownyhr.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oybgrql.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oybgrql.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oybgrql.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oybgrql.dll" echo %systemroot%\system32\oybgrql.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oybgrql.dll" echo %sError% %systemroot%\system32\oybgrql.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\oyopu.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\oyopu.dll>>Pass2.cmd
echo del /q %systemroot%\system32\oyopu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\oyopu.dll" echo %systemroot%\system32\oyopu.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\oyopu.dll" echo %sError% %systemroot%\system32\oyopu.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\pjgerka.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\pjgerka.dll>>Pass2.cmd
echo del /q %systemroot%\system32\pjgerka.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\pjgerka.dll" echo %systemroot%\system32\pjgerka.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\pjgerka.dll" echo %sError% %systemroot%\system32\pjgerka.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\pkgvyg.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\pkgvyg.dll>>Pass2.cmd
echo del /q %systemroot%\system32\pkgvyg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\pkgvyg.dll" echo %systemroot%\system32\pkgvyg.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\pkgvyg.dll" echo %sError% %systemroot%\system32\pkgvyg.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\pkjcoxq.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\pkjcoxq.dll>>Pass2.cmd
echo del /q %systemroot%\system32\pkjcoxq.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\pkjcoxq.dll" echo %systemroot%\system32\pkjcoxq.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\pkjcoxq.dll" echo %sError% %systemroot%\system32\pkjcoxq.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\pmnqguh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\pmnqguh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\pmnqguh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\pmnqguh.dll" echo %systemroot%\system32\pmnqguh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\pmnqguh.dll" echo %sError% %systemroot%\system32\pmnqguh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\posem.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\posem.dll>>Pass2.cmd
echo del /q %systemroot%\system32\posem.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\posem.dll" echo %systemroot%\system32\posem.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\posem.dll" echo %sError% %systemroot%\system32\posem.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\psndz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\psndz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\psndz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\psndz.dll" echo %systemroot%\system32\psndz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\psndz.dll" echo %sError% %systemroot%\system32\psndz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\prflbmsgp32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\prflbmsgp32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\prflbmsgp32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\prflbmsgp32.dll" echo %systemroot%\system32\prflbmsgp32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\prflbmsgp32.dll" echo %sError% %systemroot%\system32\prflbmsgp32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qnusjji.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\qnusjji.dll>>Pass2.cmd
echo del /q %systemroot%\system32\qnusjji.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qnusjji.dll" echo %systemroot%\system32\qnusjji.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\qnusjji.dll" echo %sError% %systemroot%\system32\qnusjji.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\questmod.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\questmod.dll>>Pass2.cmd
echo del /q %systemroot%\system32\questmod.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\questmod.dll" echo %systemroot%\system32\questmod.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\questmod.dll" echo %sError% %systemroot%\system32\questmod.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qvjpt.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\qvjpt.dll>>Pass2.cmd
echo del /q %systemroot%\system32\qvjpt.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qvjpt.dll" echo %systemroot%\system32\qvjpt.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\qvjpt.dll" echo %sError% %systemroot%\system32\qvjpt.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qvxgamet?.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\qvxgamet?.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\qvxgamet?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qvxgamet?.exe" echo %systemroot%\system32\qvxgamet?.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\qvxgamet?.exe" echo %sError% %systemroot%\system32\qvxgamet?.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qrzsyr.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\qrzsyr.dll>>Pass2.cmd
echo del /q %systemroot%\system32\qrzsyr.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qrzsyr.dll" echo %systemroot%\system32\qrzsyr.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\qrzsyr.dll" echo %sError% %systemroot%\system32\qrzsyr.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qxfgcg.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\qxfgcg.dll>>Pass2.cmd
echo del /q %systemroot%\system32\qxfgcg.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qxfgcg.dll" echo %systemroot%\system32\qxfgcg.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\qxfgcg.dll" echo %sError% %systemroot%\system32\qxfgcg.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\qzviz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\qzviz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\qzviz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\qzviz.dll" echo %systemroot%\system32\qzviz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\qzviz.dll" echo %sError% %systemroot%\system32\qzviz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rcohty.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rcohty.dll>>Pass2.cmd
echo del /q %systemroot%\system32\rcohty.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rcohty.dll" echo %systemroot%\system32\rcohty.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rcohty.dll" echo %sError% %systemroot%\system32\rcohty.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\reglogs.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\reglogs.dll>>Pass2.cmd
echo del /q %systemroot%\system32\reglogs.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\reglogs.dll" echo %systemroot%\system32\reglogs.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\reglogs.dll" echo %sError% %systemroot%\system32\reglogs.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\regperf.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\regperf.exe>>Pass2.cmd
echo del /q %systemroot%\system32\regperf.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\regperf.exe" echo %systemroot%\system32\regperf.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\regperf.exe" echo %sError% %systemroot%\system32\regperf.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\replmap.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\replmap.dll>>Pass2.cmd
echo del /q %systemroot%\system32\replmap.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\replmap.dll" echo %systemroot%\system32\replmap.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\replmap.dll" echo %sError% %systemroot%\system32\replmap.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rjxdexau.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rjxdexau.exe>>Pass2.cmd
echo del /q %systemroot%\system32\rjxdexau.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rjxdexau.exe" echo %systemroot%\system32\rjxdexau.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rjxdexau.exe" echo %sError% %systemroot%\system32\rjxdexau.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rmzdzx.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rmzdzx.dll>>Pass2.cmd
echo del /q %systemroot%\system32\rmzdzx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rmzdzx.dll" echo %systemroot%\system32\rmzdzx.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rmzdzx.dll" echo %sError% %systemroot%\system32\rmzdzx.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rosdzop.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rosdzop.dll>>Pass2.cmd
echo del /q %systemroot%\system32\rosdzop.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rosdzop.dll" echo %systemroot%\system32\rosdzop.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rosdzop.dll" echo %sError% %systemroot%\system32\rosdzop.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rrtcany.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rrtcanydll>>Pass2.cmd
echo del /q %systemroot%\system32\rrtcany.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rrtcany.dll" echo %systemroot%\system32\rrtcany.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rrtcany.dll" echo %sError% %systemroot%\system32\rrtcany.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\RpcxSs.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\RpcxSs.dll>>Pass2.cmd
echo del /q %systemroot%\system32\RpcxSs.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\RpcxSs.dll" echo %systemroot%\system32\RpcxSs.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\RpcxSs.dll" echo %sError% %systemroot%\system32\RpcxSs.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\rxqcpn.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\rxqcpn.dll>>Pass2.cmd
echo del /q %systemroot%\system32\rxqcpn.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\rxqcpn.dll" echo %systemroot%\system32\rxqcpn.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\rxqcpn.dll" echo %sError% %systemroot%\system32\rxqcpn.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ryxrho.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ryxrho.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ryxrhodll.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ryxrho.dll" echo %systemroot%\system32\ryxrho.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ryxrho.dll" echo %sError% %systemroot%\system32\ryxrho.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sachostc.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sachostc.exe>>Pass2.cmd
echo del /q %systemroot%\system32\sachostc.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sachostc.exe" echo %systemroot%\system32\sachostc.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sachostc.exe" echo %sError% %systemroot%\system32\sachostc.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sachosts.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sachosts.exe>>Pass2.cmd
echo del /q %systemroot%\system32\sachosts.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sachosts.exe" echo %systemroot%\system32\sachosts.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sachosts.exe" echo %sError% %systemroot%\system32\sachosts.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sacskza.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sacskza.dll>>Pass2.cmd
echo del /q %systemroot%\system32\sacskza.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sacskza.dll" echo %systemroot%\system32\sacskza.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sacskza.dll" echo %sError% %systemroot%\system32\sacskza.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sbnudh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sbnudh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\sbnudh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sbnudh.dll" echo %systemroot%\system32\sbnudh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sbnudh.dll" echo %sError% %systemroot%\system32\sbnudh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\Security Toolbar.dll" (>>Pass2.cmd
echo attrib -r -h -s "%systemroot%\system32\Security Toolbar.dll">>Pass2.cmd
echo del /q "%systemroot%\system32\Security Toolbar.dll">>Pass2.cmd
echo if NOT exist "%systemroot%\system32\Security Toolbar.dll" echo %systemroot%\system32\Security Toolbar.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\Security Toolbar.dll" echo %sError% %systemroot%\system32\Security Toolbar.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\shdochp.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\shdochp.exe>>Pass2.cmd
echo del /q %systemroot%\system32\shdochp.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\shdochp.exe" echo %systemroot%\system32\shdochp.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\shdochp.exe" echo %sError% %systemroot%\system32\shdochp.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\shdocsvc.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\shdocsvc.exe>>Pass2.cmd
echo del /q %systemroot%\system32\shdocsvc.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\shdocsvc.exe" echo %systemroot%\system32\shdocsvc.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\shdocsvc.exe" echo %sError% %systemroot%\system32\shdocsvc.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\shellgui32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\shellgui32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\shellgui32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\shellgui32.dll" echo %systemroot%\system32\shellgui32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\shellgui32.dll" echo %sError% %systemroot%\system32\shellgui32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\shsexl32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\shsexl32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\shsexl32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\shsexl32.dll" echo %systemroot%\system32\shsexl32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\shsexl32.dll" echo %sError% %systemroot%\system32\shsexl32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\simpole.tlb" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\simpole.tlb>>Pass2.cmd
echo del /q %systemroot%\system32\simpole.tlb>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\simpole.tlb" echo %systemroot%\system32\simpole.tlb %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\simpole.tlb" echo %sError% %systemroot%\system32\simpole.tlb^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sivudro.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sivudro.dll>>Pass2.cmd
echo del /q %systemroot%\system32\sivudro.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sivudro.dll" echo %systemroot%\system32\sivudro.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sivudro.dll" echo %sError% %systemroot%\system32\sivudro.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\smaexp32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\smaexp32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\smaexp32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\smaexp32.dll" echo %systemroot%\system32\smaexp32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\smaexp32.dll" echo %sError% %systemroot%\system32\smaexp32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\smartdrv.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\smartdrv.exe>>Pass2.cmd
echo del /q %systemroot%\system32\smartdrv.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\smartdrv.exe" echo %systemroot%\system32\smartdrv.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\smartdrv.exe" echo %sError% %systemroot%\system32\smartdrv.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\st3.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\st3.dll>>Pass2.cmd
echo del /q %systemroot%\system32\st3.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\st3.dll" echo %systemroot%\system32\st3.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\st3.dll" echo %sError% %systemroot%\system32\st3.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\stdole3.tlb" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\stdole3.tlb>>Pass2.cmd
echo del /q %systemroot%\system32\stdole3.tlb>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\stdole3.tlb" echo %systemroot%\system32\stdole3.tlb %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\stdole3.tlb" echo %sError% %systemroot%\system32\stdole3.tlb^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\stickrep.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\stickrep.dll>>Pass2.cmd
echo del /q %systemroot%\system32\stickrep.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\stickrep.dll" echo %systemroot%\system32\stickrep.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\stickrep.dll" echo %sError% %systemroot%\system32\stickrep.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\suprox.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\suprox.dll>>Pass2.cmd
echo del /q %systemroot%\system32\suprox.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\suprox.dll" echo %systemroot%\system32\suprox.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\suprox.dll" echo %sError% %systemroot%\system32\suprox.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\surzzh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\surzzh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\surzzh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\surzzh.dll" echo %systemroot%\system32\surzzh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\surzzh.dll" echo %sError% %systemroot%\system32\surzzh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\svchosts.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\svchosts.dll>>Pass2.cmd
echo del /q %systemroot%\system32\svchosts.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\svchosts.dll" echo %systemroot%\system32\svchosts.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\svchosts.dll" echo %sError% %systemroot%\system32\svchosts.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\sysmain.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\sysmain.dll>>Pass2.cmd
echo del /q %systemroot%\system32\sysmain.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\sysmain.dll" echo %systemroot%\system32\sysmain.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\sysmain.dll" echo %sError% %systemroot%\system32\sysmain.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\syycum.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\syycum.dll>>Pass2.cmd
echo del /q %systemroot%\system32\syycum.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\syycum.dll" echo %systemroot%\system32\syycum.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\syycum.dll" echo %sError% %systemroot%\system32\syycum.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tahxqcj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tahxqcj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tahxqcj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tahxqcj.dll" echo %systemroot%\system32\tahxqcj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tahxqcj.dll" echo %sError% %systemroot%\system32\tahxqcj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\taskdir.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\taskdir.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\taskdir.dll" echo %systemroot%\system32\taskdir.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir.dll" echo %sError% %systemroot%\system32\taskdir.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\taskdir.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\taskdir.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\taskdir.exe" echo %systemroot%\system32\taskdir.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir.exe" echo %sError% %systemroot%\system32\taskdir.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir~.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\taskdir~.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\taskdir~.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\taskdir~.exe" echo %systemroot%\system32\taskdir~.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\taskdir~.exe" echo %sError% %systemroot%\system32\taskdir~.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tazth.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\tazth.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\tazth.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tazth.dll" echo %systemroot%\system32\tazth.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\tazth.dll" echo %sError% %systemroot%\system32\tazth.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tczij.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\tczij.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\tczij.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tczij.dll" echo %systemroot%\system32\tczij.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\tczij.dll" echo %sError% %systemroot%\system32\tczij.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tiqmcx.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tiqmcx.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tiqmcx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tiqmcx.dll" echo %systemroot%\system32\tiqmcx.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tiqmcx.dll" echo %sError% %systemroot%\system32\tiqmcx.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\titiau.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\titiau.dll>>Pass2.cmd
echo del /q %systemroot%\system32\titiau.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\titiau.dll" echo %systemroot%\system32\titiau.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\titiau.dll" echo %sError% %systemroot%\system32\titiau.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tkrsw.dll" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\tkrsw.dll>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\tkrsw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tkrsw.dll" echo %systemroot%\system32\tkrsw.dll %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\tkrsw.dll" echo %sError% %systemroot%\system32\tkrsw.dll^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tnvocyn.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tnvocyn.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tnvocyn.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tnvocyn.dll" echo %systemroot%\system32\tnvocyn.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tnvocyn.dll" echo %sError% %systemroot%\system32\tnvocyn.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tmxxxh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tmxxxh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tmxxxh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tmxxxh.dll" echo %systemroot%\system32\tmxxxh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tmxxxh.dll" echo %sError% %systemroot%\system32\tmxxxh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tpedvf.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tpedvf.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tpedvf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tpedvf.dll" echo %systemroot%\system32\tpedvf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tpedvf.dll" echo %sError% %systemroot%\system32\tpedvf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tqcwm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tqcwm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tqcwm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tqcwm.dll" echo %systemroot%\system32\tqcwm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tqcwm.dll" echo %sError% %systemroot%\system32\tqcwm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\trf32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\trf32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\trf32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\trf32.dll" echo %systemroot%\system32\trf32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\trf32.dll" echo %sError% %systemroot%\system32\trf32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\tvomnc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\tvomnc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\tvomnc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\tvomnc.dll" echo %systemroot%\system32\tvomnc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\tvomnc.dll" echo %sError% %systemroot%\system32\tvomnc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\twain32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\twain32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\twain32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\twain32.dll" echo %systemroot%\system32\twain32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\twain32.dll" echo %sError% %systemroot%\system32\twain32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ucbrrt.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ucbrrt.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ucbrrt.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ucbrrt.dll" echo %systemroot%\system32\ucbrrt.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ucbrrt.dll" echo %sError% %systemroot%\system32\ucbrrt.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\udpmod.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\udpmod.dll>>Pass2.cmd
echo del /q %systemroot%\system32\udpmod.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\udpmod.dll" echo %systemroot%\system32\udpmod.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\udpmod.dll" echo %sError% %systemroot%\system32\udpmod.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ugofuq.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ugofuq.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ugofuq.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ugofuq.dll" echo %systemroot%\system32\ugofuq.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ugofuq.dll" echo %sError% %systemroot%\system32\ugofuq.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\uimcu.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\uimcu.dll>>Pass2.cmd
echo del /q %systemroot%\system32\uimcu.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\uimcu.dll" echo %systemroot%\system32\uimcu.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\uimcu.dll" echo %sError% %systemroot%\system32\uimcu.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ulztc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ulztc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ulztc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ulztc.dll" echo %systemroot%\system32\ulztc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ulztc.dll" echo %sError% %systemroot%\system32\ulztc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\urroxtl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\urroxtl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\urroxtl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\urroxtl.dll" echo %systemroot%\system32\urroxtl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\urroxtl.dll" echo %sError% %systemroot%\system32\urroxtl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vblhanf.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vblhanf.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vblhanf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vblhanf.dll" echo %systemroot%\system32\vblhanf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vblhanf.dll" echo %sError% %systemroot%\system32\vblhanf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vcehaeb.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vcehaeb.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vcehaeb.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vcehaeb.dll" echo %systemroot%\system32\vcehaeb.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vcehaeb.dll" echo %sError% %systemroot%\system32\vcehaeb.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\veklo.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\veklo.dll>>Pass2.cmd
echo del /q %systemroot%\system32\veklo.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\veklo.dll" echo %systemroot%\system32\veklo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\veklo.dll" echo %sError% %systemroot%\system32\veklo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vgibz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vgibz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vgibz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vgibz.dll" echo %systemroot%\system32\vgibz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vgibz.dll" echo %sError% %systemroot%\system32\vgibz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vhywj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vhywj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vhywj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vhywj.dll" echo %systemroot%\system32\vhywj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vhywj.dll" echo %sError% %systemroot%\system32\vhywj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\viruxz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\viruxz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\viruxz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\viruxz.dll" echo %systemroot%\system32\viruxz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\viruxz.dll" echo %sError% %systemroot%\system32\viruxz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\viuaoq.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\viuaoq.dll>>Pass2.cmd
echo del /q %systemroot%\system32\viuaoq.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\viuaoq.dll" echo %systemroot%\system32\viuaoq.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\viuaoq.dll" echo %sError% %systemroot%\system32\viuaoq.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\viwpzla.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\viwpzla.dll>>Pass2.cmd
echo del /q %systemroot%\system32\viwpzla.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\viwpzla.dll" echo %systemroot%\system32\viwpzla.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\viwpzla.dll" echo %sError% %systemroot%\system32\viwpzla.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vjxwnn.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vjxwnn.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vjxwnn.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vjxwnn.dll" echo %systemroot%\system32\vjxwnn.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vjxwnn.dll" echo %sError% %systemroot%\system32\vjxwnn.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vophqmn.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vophqmn.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vophqmn.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vophqmn.dll" echo %systemroot%\system32\vophqmn.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vophqmn.dll" echo %sError% %systemroot%\system32\vophqmn.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vpccw.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vpccw.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vpccw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vpccw.dll" echo %systemroot%\system32\vpccw.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vpccw.dll" echo %sError% %systemroot%\system32\vpccw.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vpxnk.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vpxnk.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vpxnk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vpxnk.dll" echo %systemroot%\system32\vpxnk.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vpxnk.dll" echo %sError% %systemroot%\system32\vpxnk.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vtr???.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vtr???.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vtr???.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vtr???.dll" echo %systemroot%\system32\vtr???.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vtr???.dll" echo %sError% %systemroot%\system32\vtr???.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vwfps.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vwfps.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vwfps.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vwfps.dll" echo %systemroot%\system32\vwfps.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vwfps.dll" echo %sError% %systemroot%\system32\vwfps.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vwlummc.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\vwlummc.dll>>Pass2.cmd
echo del /q %systemroot%\system32\vwlummc.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vwlummc.dll" echo %systemroot%\system32\vwlummc.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\vwlummc.dll" echo %sError% %systemroot%\system32\vwlummc.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgame?.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\vxgame?.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\vxgame?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vxgame?.exe" echo %systemroot%\system32\vxgame?.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgame?.exe" echo %sError% %systemroot%\system32\vxgame?.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgame?.exe????.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\vxgame?.exe????.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\vxgame?.exe????.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vxgame?.exe????.exe" echo %systemroot%\system32\vxgame?.exe????.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgame?.exe????.exe" echo %sError% %systemroot%\system32\vxgame?.exe????.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgamet?.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\vxgamet?.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\vxgamet?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vxgamet?.exe" echo %systemroot%\system32\vxgamet?.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\vxgamet?.exe" echo %sError% %systemroot%\system32\vxgamet?.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\vxh8jkdq?.exe" (>>Pass2.cmd
echo attrib -r -s -h %systemroot%\system32\vxh8jkdq?.exe>>Pass2.cmd
echo del /a /f /q %systemroot%\system32\vxh8jkdq?.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\vxh8jkdq?.exe" echo %systemroot%\system32\vxh8jkdq?.exe %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%systemroot%\system32\vxh8jkdq?.exe" echo %sError% %systemroot%\system32\vxh8jkdq?.exe^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wbeconm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wbeconm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wbeconm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wbeconm.dll" echo %systemroot%\system32\wbeconm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wbeconm.dll" echo %sError% %systemroot%\system32\wbeconm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wfcof.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wfcof.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wfcof.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wfcof.dll" echo %systemroot%\system32\wfcof.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wfcof.dll" echo %sError% %systemroot%\system32\wfcof.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wfkduei.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wfkduei.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wfkduei.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wfkduei.dll" echo %systemroot%\system32\wfkduei.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wfkduei.dll" echo %sError% %systemroot%\system32\wfkduei.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wiatwain.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wiatwain.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wiatwain.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wiatwain.dll" echo %systemroot%\system32\wiatwain.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wiatwain.dll" echo %sError% %systemroot%\system32\wiatwain.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winbl32.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winbl32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winbl32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winbl32.dll" echo %systemroot%\system32\winbl32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winbl32.dll" echo %sError% %systemroot%\system32\winbl32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winblsrv.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winblsrv.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winblsrv.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winblsrv.dll" echo %systemroot%\system32\winblsrv.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winblsrv.dll" echo %sError% %systemroot%\system32\winblsrv.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winbrume.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winbrume.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winbrume.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winbrume.dll" echo %systemroot%\system32\winbrume.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winbrume.dll" echo %sError% %systemroot%\system32\winbrume.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wincrt.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wincrt.exe>>Pass2.cmd
echo del /q %systemroot%\system32\wincrt.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wincrt.exe" echo %systemroot%\system32\wincrt.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wincrt.exe" echo %sError% %systemroot%\system32\wincrt.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\windesktop.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\windesktop.dll>>Pass2.cmd
echo del /q %systemroot%\system32\windesktop.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\windesktop.dll" echo %systemroot%\system32\windesktop.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\windesktop.dll" echo %sError% %systemroot%\system32\windesktop.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\windesktop.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\windesktop.exe>>Pass2.cmd
echo del /q %systemroot%\system32\windesktop.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\windesktop.exe" echo %systemroot%\system32\windesktop.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\windesktop.exe" echo %sError% %systemroot%\system32\windesktop.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winflash.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winflash.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winflash.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winflash.dll" echo %systemroot%\system32\winflash.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winflash.dll" echo %sError% %systemroot%\system32\winflash.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winsrv32.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winsrv32.exe>>Pass2.cmd
echo del /q %systemroot%\system32\winsrv32.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winsrv32.exe" echo %systemroot%\system32\winsrv32.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winsrv32.exe" echo %sError% %systemroot%\system32\winsrv32.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle2.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winstyle2.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winstyle2.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winstyle2.dll" echo %systemroot%\system32\winstyle2.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle2.dll" echo %sError% %systemroot%\system32\winstyle2.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle3.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winstyle3.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winstyle3.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winstyle3.dll" echo %systemroot%\system32\winstyle3.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle3.dll" echo %sError% %systemroot%\system32\winstyle3.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle32.dll" (>>Pass2.cmd>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winstyle32.dll>>Pass2.cmd
echo del /q %systemroot%\system32\winstyle32.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winstyle32.dll" echo %systemroot%\system32\winstyle32.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winstyle32.dll" echo %sError% %systemroot%\system32\winstyle32.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\winntify.exe" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\winntify.exe>>Pass2.cmd
echo del /q %systemroot%\system32\winntify.exe>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\winntify.exe" echo %systemroot%\system32\winntify.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\winntify.exe" echo %sError% %systemroot%\system32\winntify.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wpchz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wpchz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wpchz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wpchz.dll" echo %systemroot%\system32\wpchz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wpchz.dll" echo %sError% %systemroot%\system32\wpchz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wstart.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wstart.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wstart.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wstart.dll" echo %systemroot%\system32\wstart.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wstart.dll" echo %sError% %systemroot%\system32\wstart.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wuwbxp.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wuwbxp.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wuwbxp.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wuwbxp.dll" echo %systemroot%\system32\wuwbxp.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wuwbxp.dll" echo %sError% %systemroot%\system32\wuwbxp.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\wzhtjqo.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\wzhtjqo.dll>>Pass2.cmd
echo del /q %systemroot%\system32\wzhtjqo.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\wzhtjqo.dll" echo %systemroot%\system32\wzhtjqo.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\wzhtjqo.dll" echo %sError% %systemroot%\system32\wzhtjqo.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xedasn.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xedasn.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xedasn.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xedasn.dll" echo %systemroot%\system32\xedasn.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xedasn.dll" echo %sError% %systemroot%\system32\xedasn.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xenadot.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xenadot.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xenadot.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xenadot.dll" echo %systemroot%\system32\xenadot.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xenadot.dll" echo %sError% %systemroot%\system32\xenadot.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xikor.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xikor.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xikor.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xikor.dll" echo %systemroot%\system32\xikor.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xikor.dll" echo %sError% %systemroot%\system32\xikor.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xkrdk.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xkrdk.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xkrdk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xkrdk.dll" echo %systemroot%\system32\xkrdk.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xkrdk.dll" echo %sError% %systemroot%\system32\xkrdk.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xnvaogd.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xnvaogd.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xnvaogd.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xnvaogd.dll" echo %systemroot%\system32\xnvaogd.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xnvaogd.dll" echo %sError% %systemroot%\system32\xnvaogd.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xqpauzx.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xqpauzx.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xqpauzx.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xqpauzx.dll" echo %systemroot%\system32\xqpauzx.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xqpauzx.dll" echo %sError% %systemroot%\system32\xqpauzx.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xtgwjrm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xtgwjrm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xtgwjrm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xtgwjrm.dll" echo %systemroot%\system32\xtgwjrm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xtgwjrm.dll" echo %sError% %systemroot%\system32\xtgwjrm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xtsyynm.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xtsyynm.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xtsyynm.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xtsyynm.dll" echo %systemroot%\system32\xtsyynm.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xtsyynm.dll" echo %sError% %systemroot%\system32\xtsyynm.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xuefh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xuefh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xuefh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xuefh.dll" echo %systemroot%\system32\xuefh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xuefh.dll" echo %sError% %systemroot%\system32\xuefh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xuoce.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xuoce.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xuoce.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xuoce.dll" echo %systemroot%\system32\xuoce.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xuoce.dll" echo %sError% %systemroot%\system32\xuoce.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\xxfgmy.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\xxfgmy.dll>>Pass2.cmd
echo del /q %systemroot%\system32\xxfgmy.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\xxfgmy.dll" echo %systemroot%\system32\xxfgmy.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\xxfgmy.dll" echo %sError% %systemroot%\system32\xxfgmy.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yephk.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yephk.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yephk.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yephk.dll" echo %systemroot%\system32\yephk.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yephk.dll" echo %sError% %systemroot%\system32\yephk.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yesgnhr.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yesgnhr.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yesgnhr.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yesgnhr.dll" echo %systemroot%\system32\yesgnhr.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yesgnhr.dll" echo %sError% %systemroot%\system32\yesgnhr.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yfysupa.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yfysupa.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yfysupa.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yfysupa.dll" echo %systemroot%\system32\yfysupa.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yfysupa.dll" echo %sError% %systemroot%\system32\yfysupa.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ygjun.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ygjun.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ygjun.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ygjun.dll" echo %systemroot%\system32\ygjun.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ygjun.dll" echo %sError% %systemroot%\system32\ygjun.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yhbdupd.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yhbdupd.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yhbdupd.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yhbdupd.dll" echo %systemroot%\system32\yhbdupd.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yhbdupd.dll" echo %sError% %systemroot%\system32\yhbdupd.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yhjbbzf.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yhjbbzf.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yhjbbzf.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yhjbbzf.dll" echo %systemroot%\system32\yhjbbzf.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yhjbbzf.dll" echo %sError% %systemroot%\system32\yhjbbzf.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yosdjh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yosdjh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yosdjh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yosdjh.dll" echo %systemroot%\system32\yosdjh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yosdjh.dll" echo %sError% %systemroot%\system32\yosdjh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yronl.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yronl.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yronl.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yronl.dll" echo %systemroot%\system32\yronl.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yronl.dll" echo %sError% %systemroot%\system32\yronl.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yuspej.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yuspej.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yuspej.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yuspej.dll" echo %systemroot%\system32\yuspej.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yuspej.dll" echo %sError% %systemroot%\system32\yuspej.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\yvvdj.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\yvvdj.dll>>Pass2.cmd
echo del /q %systemroot%\system32\yvvdj.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\yvvdj.dll" echo %systemroot%\system32\yvvdj.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\yvvdj.dll" echo %sError% %systemroot%\system32\yvvdj.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ywbicim.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ywbicim.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ywbicim.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ywbicim.dll" echo %systemroot%\system32\ywbicim.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ywbicim.dll" echo %sError% %systemroot%\system32\ywbicim.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zdwii.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zdwii.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zdwii.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zdwii.dll" echo %systemroot%\system32\zdwii.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zdwii.dll" echo %sError% %systemroot%\system32\zdwii.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zkpssqa.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zkpssqa.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zkpssqa.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zkpssqa.dll" echo %systemroot%\system32\zkpssqa.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zkpssqa.dll" echo %sError% %systemroot%\system32\zkpssqa.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zlara.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zlara.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zlara.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zlara.dll" echo %systemroot%\system32\zlara.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zlara.dll" echo %sError% %systemroot%\system32\zlara.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zlbw.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zlbw.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zlbw.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zlbw.dll" echo %systemroot%\system32\zlbw.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zlbw.dll" echo %sError% %systemroot%\system32\zlbw.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zolker011.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zolker011.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zolker011.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zolker011.dll" echo %systemroot%\system32\zolker011.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zolker011.dll" echo %sError% %systemroot%\system32\zolker011.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zpeolvh.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zpeolvh.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zpeolvh.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zpeolvh.dll" echo %systemroot%\system32\zpeolvh.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zpeolvh.dll" echo %sError% %systemroot%\system32\zpeolvh.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zphnok.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zphnok.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zphnok.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zphnok.dll" echo %systemroot%\system32\zphnok.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zphnok.dll" echo %sError% %systemroot%\system32\zphnok.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\zpuwriz.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\zpuwriz.dll>>Pass2.cmd
echo del /q %systemroot%\system32\zpuwriz.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\zpuwriz.dll" echo %systemroot%\system32\zpuwriz.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\zpuwriz.dll" echo %sError% %systemroot%\system32\zpuwriz.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%systemroot%\system32\ztoolb011.dll" (>>Pass2.cmd
echo attrib -r -h -s %systemroot%\system32\ztoolb011.dll>>Pass2.cmd
echo del /q %systemroot%\system32\ztoolb011.dll>>Pass2.cmd
echo if NOT exist "%systemroot%\system32\ztoolb011.dll" echo %systemroot%\system32\ztoolb011.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%systemroot%\system32\ztoolb011.dll" echo %sError% %systemroot%\system32\ztoolb011.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%syspath%\drivers\hesvc.sys" (>>Pass2.cmd
echo attrib -r -h -s %syspath%\drivers\hesvc.sys>>Pass2.cmd
echo del /q %syspath%\drivers\hesvc.sys>>Pass2.cmd
echo if NOT exist "%syspath%\drivers\hesvc.sys" echo %syspath%\drivers\hesvc.sys %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%syspath%\drivers\hesvc.sys" echo %sError% %syspath%\drivers\hesvc.sys^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%syspath%\drivers\svchost.exe" (>>Pass2.cmd
echo attrib -r -h -s %syspath%\drivers\svchost.exe>>Pass2.cmd
echo del /q %syspath%\drivers\svchost.exe>>Pass2.cmd
echo if NOT exist "%syspath%\drivers\svchost.exe" echo %syspath%\drivers\svchost.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%syspath%\drivers\svchost.exe" echo %sError% %syspath%\drivers\svchost.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%syspath%\components\flx?.dll" (>>Pass2.cmd
echo attrib -r -h -s %syspath%\components\flx?.dll>>Pass2.cmd
echo del /q %syspath%\components\flx?.dll>>Pass2.cmd
echo if NOT exist "%syspath%\components\flx?.dll" echo %syspath%\components\flx?.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%syspath%\components\flx?.dll" echo %sError% %syspath%\components\flx?.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%syspath%\components\flx??.dll" (>>Pass2.cmd
echo attrib -r -h -s %syspath%\components\flx??.dll>>Pass2.cmd
echo del /q %syspath%\components\flx??.dll>>Pass2.cmd
echo if NOT exist "%syspath%\components\flx??.dll" echo %syspath%\components\flx??.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%syspath%\components\flx??.dll" echo %sError% %syspath%\components\flx??.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%syspath%\components\flx???.dll" (>>Pass2.cmd
echo attrib -r -h -s %syspath%\components\flx???.dll>>Pass2.cmd
echo del /q %syspath%\components\flx???.dll>>Pass2.cmd
echo if NOT exist "%syspath%\components\flx???.dll" echo %syspath%\components\flx???.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%syspath%\components\flx???.dll" echo %sError% %syspath%\components\flx???.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\svchost.exe" (>>Pass2.cmd
echo attrib -r -h -s "%userprofile%\svchost.exe">>Pass2.cmd
echo del /q "%userprofile%\svchost.exe">>Pass2.cmd
echo if NOT exist "%userprofile%\svchost.exe" echo %userprofile%\svchost.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%userprofile%\svchost.exe" echo %sError% %userprofile%\svchost.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Application Data\AlfaCleaner" (>>Pass2.cmd
echo attrib -r -h "%userprofile%\Application Data\AlfaCleaner\*.*">>Pass2.cmd
echo del /a /f /q "%userprofile%\Application Data\AlfaCleaner\*.*">>Pass2.cmd
echo RD /s /q "%userprofile%\Application Data\AlfaCleaner">>Pass2.cmd
echo IF NOT exist "%userprofile%\Application Data\AlfaCleaner" echo %userprofile%\Application Data\AlfaCleaner %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%userprofile%\Application Data\AlfaCleaner" echo %sError% %userprofile%\Application Data\AlfaCleaner^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Application Data\AdProtect NoSpam" (>>Pass2.cmd
echo attrib -r -h "%userprofile%\Application Data\AdProtect NoSpam\*.*">>Pass2.cmd
echo del /a /f /q "%userprofile%\Application Data\AdProtect NoSpam\*.*">>Pass2.cmd
echo RD /s /q "%userprofile%\Application Data\AdProtect NoSpam">>Pass2.cmd
echo IF NOT exist "%userprofile%\Application Data\AdProtect NoSpam" echo %userprofile%\Application Data\AdProtect NoSpam %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%userprofile%\Application Data\AdProtect NoSpam" echo %sError% %userprofile%\Application Data\AdProtect NoSpam^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Application Data\Skinux" (>>Pass2.cmd
echo attrib -r -h "%userprofile%\Application Data\Skinux\*.*">>Pass2.cmd
echo del /a /f /q "%userprofile%\Application Data\Skinux\*.*">>Pass2.cmd
echo RD /s /q "%userprofile%\Application Data\Skinux">>Pass2.cmd
echo IF NOT exist "%userprofile%\Application Data\Skinux" echo %userprofile%\Application Data\Skinux %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%userprofile%\Application Data\Skinux" echo %sError% %userprofile%\Application Data\Skinux^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" (>>Pass2.cmd
echo attrib -r -h "%userprofile%\Local Settings\Application Data\AdwareSheriff\*.*">>Pass2.cmd
echo del /a /f /q "%userprofile%\Local Settings\Application Data\AdwareSheriff\*.*">>Pass2.cmd
echo RD /s /q "%userprofile%\Local Settings\Application Data\AdwareSheriff">>Pass2.cmd
echo IF NOT exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" echo %userprofile%\Local Settings\Application Data\AdwareSheriff %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%userprofile%\Local Settings\Application Data\AdwareSheriff" echo %sError% %userprofile%\Local Settings\Application Data\AdwareSheriff^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Local Settings\Application Data\TitanShield" (>>Pass2.cmd
echo attrib -r -h "%userprofile%\Local Settings\Application Data\TitanShield\*.*">>Pass2.cmd
echo del /a /f /q "%userprofile%\Local Settings\Application Data\TitanShield\*.*">>Pass2.cmd
echo RD /s /q "%userprofile%\Local Settings\Application Data\TitanShield">>Pass2.cmd
echo IF NOT exist "%userprofile%\Local Settings\Application Data\TitanShield" echo %userprofile%\Local Settings\Application Data\TitanShield %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%userprofile%\Local Settings\Application Data\TitanShield" echo %sError% %userprofile%\Local Settings\Application Data\TitanShield^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" (>>Pass2.cmd
echo attrib -r -h "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner\*.*">>Pass2.cmd
echo del /a /f /q "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner\*.*">>Pass2.cmd
echo RD /s /q "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner">>Pass2.cmd
echo IF NOT exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" echo %HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner" echo %sError% %HOMEDRIVE%\Documents and Settings\LocalService\Application Data\AlfaCleaner^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Brain Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Brain Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Brain Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Brain Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Brain Codec" echo %ProgramFiles%\Brain Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Brain Codec" echo %sError% %ProgramFiles%\Brain Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\EliteCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\EliteCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\EliteCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\EliteCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\EliteCodec" echo %ProgramFiles%\EliteCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\EliteCodec" echo %sError% %ProgramFiles%\EliteCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\eMedia Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\eMedia Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\eMedia Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\eMedia Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\eMedia Codec" echo %ProgramFiles%\eMedia Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\eMedia Codec" echo %sError% %ProgramFiles%\eMedia Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\DirectVideo" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\DirectVideo\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\DirectVideo\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\DirectVideo">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\DirectVideo" echo %ProgramFiles%\DirectVideo %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\DirectVideo" echo %sError% %ProgramFiles%\DirectVideo^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\FreeVideo" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\FreeVideo\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\FreeVideo\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\FreeVideo">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\FreeVideo" echo %ProgramFiles%\FreeVideo %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\FreeVideo" echo %sError% %ProgramFiles%\FreeVideo^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Gold Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Gold Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Gold Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Gold Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Gold Codec" echo %ProgramFiles%\Gold Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Gold Codec" echo %sError% %ProgramFiles%\Gold Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\HQ Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\HQ Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\HQ Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\HQ Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\HQ Codec" echo %ProgramFiles%\HQ Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\HQ Codec" echo %sError% %ProgramFiles%\HQ Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\HQvideo" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\HQvideo\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\HQvideo\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\HQvideo">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\HQvideo" echo %ProgramFiles%\HQvideo %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\HQvideo" echo %sError% %ProgramFiles%\HQvideo^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\HQVideoCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\HQVideoCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\HQVideoCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\HQVideoCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\HQVideoCodec" echo %ProgramFiles%\HQVideoCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\HQVideoCodec" echo %sError% %ProgramFiles%\HQVideoCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\iCodecPack" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\iCodecPack\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\iCodecPack\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\iCodecPack">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\iCodecPack" echo %ProgramFiles%\iCodecPack %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\iCodecPack" echo %sError% %ProgramFiles%\iCodecPack^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Image ActiveX Access" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Image ActiveX Access\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Image ActiveX Access\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Image ActiveX Access">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Image ActiveX Access" echo %ProgramFiles%\Image ActiveX Access %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Image ActiveX Access" echo %sError% %ProgramFiles%\Image ActiveX Access^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Image ActiveX Object" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Image ActiveX Object\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Image ActiveX Object\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Image ActiveX Object">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Image ActiveX Object" echo %ProgramFiles%\Image ActiveX Object %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Image ActiveX Object" echo %sError% %ProgramFiles%\Image ActiveX Object^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\iMediaCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\iMediaCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\iMediaCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\iMediaCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\iMediaCodec" echo %ProgramFiles%\iMediaCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\iMediaCodec" echo %sError% %ProgramFiles%\iMediaCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\IntCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\IntCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\IntCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\IntCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\IntCodec" echo %ProgramFiles%\IntCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\IntCodec" echo %sError% %ProgramFiles%\IntCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Internet Security" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Internet Security\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Internet Security\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Internet Security">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Internet Security" echo %ProgramFiles%\Internet Security %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Internet Security" echo %sError% %ProgramFiles%\Internet Security^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\iVideoCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\iVideoCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\iVideoCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\iVideoCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\iVideoCodec" echo %ProgramFiles%\iVideoCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\iVideoCodec" echo %sError% %ProgramFiles%\iVideoCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\JPEG Encoder" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\JPEG Encoder\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\JPEG Encoder\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\JPEG Encoder">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\JPEG Encoder" echo %ProgramFiles%\JPEG Encoder %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\JPEG Encoder" echo %sError% %ProgramFiles%\JPEG Encoder^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Key Generator" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Key Generator\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Key Generator\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Key Generator">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Key Generator" echo %ProgramFiles%\Key Generator %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Key Generator" echo %sError% %ProgramFiles%\Key Generator^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Media-Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Media-Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Media-Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Media-Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Media-Codec" echo %ProgramFiles%\Media-Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Media-Codec" echo %sError% %ProgramFiles%\Media-Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\MediaCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\MediaCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\MediaCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\MediaCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\MediaCodec" echo %ProgramFiles%\MediaCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\MediaCodec" echo %sError% %ProgramFiles%\MediaCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\MMediaCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\MMediaCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\MMediaCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\MMediaCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\MMediaCodec" echo %ProgramFiles%\MMediaCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\MMediaCodec" echo %sError% %ProgramFiles%\MMediaCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\MPVIDEOCODEC" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\MPVIDEOCODEC\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\MPVIDEOCODEC\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\MPVIDEOCODEC">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\MPVIDEOCODEC" echo %ProgramFiles%\MPVIDEOCODEC %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\MPVIDEOCODEC" echo %sError% %ProgramFiles%\MPVIDEOCODEC^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\My Pass Generator" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\My Pass Generator\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\My Pass Generator\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\My Pass Generator">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\My Pass Generator" echo %ProgramFiles%\My Pass Generator %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\My Pass Generator" echo %sError% %ProgramFiles%\My Pass Generator^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\PCODEC" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\PCODEC\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\PCODEC\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\PCODEC">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\PCODEC" echo %ProgramFiles%\PCODEC %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\PCODEC" echo %sError% %ProgramFiles%\PCODEC^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Perfect Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Perfect Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Perfect Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Perfect Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Perfect Codec" echo %ProgramFiles%\Perfect Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Perfect Codec" echo %sError% %ProgramFiles%\Perfect Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\PornPass Manager" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\PornPass Manager\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\PornPass Manager\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\PornPass Manager">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\PornPass Manager" echo %ProgramFiles%\PornPass Manager %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\PornPass Manager" echo %sError% %ProgramFiles%\PornPass Manager^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\PowerCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\PowerCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\PowerCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\PowerCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\PowerCodec" echo %ProgramFiles%\PowerCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\PowerCodec" echo %sError% %ProgramFiles%\PowerCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\PornMag Pass" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\PornMag Pass\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\PornMag Pass\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\PornMag Pass">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\PornMag Pass" echo %ProgramFiles%\PornMag Pass %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\PornMag Pass" echo %sError% %ProgramFiles%\PornMag Pass^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Protection Tools" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Protection Tools\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Protection Tools\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Protection Tools">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Protection Tools" echo %ProgramFiles%\Protection Tools %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Protection Tools" echo %sError% %ProgramFiles%\Protection Tools^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\QualityCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\QualityCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\QualityCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\QualityCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\QualityCodec" echo %ProgramFiles%\QualityCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\QualityCodec" echo %sError% %ProgramFiles%\QualityCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Safety Bar" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Safety Bar\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Safety Bar\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Safety Bar">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Safety Bar" echo %ProgramFiles%\Safety Bar %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Safety Bar" echo %sError% %ProgramFiles%\Safety Bar^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\SiteTicket" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\SiteTicket\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\SiteTicket\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\SiteTicket">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\SiteTicket" echo %ProgramFiles%\SiteTicket %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\SiteTicket" echo %sError% %ProgramFiles%\SiteTicket^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\X Password Generator" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\X Password Generator\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\X Password Generator\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\X Password Generator">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\X Password Generator" echo %ProgramFiles%\X Password Generator %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\X Password Generator" echo %sError% %ProgramFiles%\X Password Generator^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\X Password Manager" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\X Password Manager\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\X Password Manager\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\X Password Manager">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\X Password Manager" echo %ProgramFiles%\X Password Manager %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\X Password Manager" echo %sError% %ProgramFiles%\X Password Manager^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Silver Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Silver Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Silver Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Silver Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Silver Codec" echo %ProgramFiles%\Silver Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Silver Codec" echo %sError% %ProgramFiles%\Silver Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\SoftCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\SoftCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\SoftCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\SoftCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\SoftCodec" echo %ProgramFiles%\SoftCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\SoftCodec" echo %sError% %ProgramFiles%\SoftCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\strCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\strCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\strCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\strCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\strCodec" echo %ProgramFiles%\strCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\strCodec" echo %sError% %ProgramFiles%\strCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Super Codec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Super Codec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Super Codec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Super Codec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Super Codec" echo %ProgramFiles%\Super Codec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Super Codec" echo %sError% %ProgramFiles%\Super Codec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\TrueCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\TrueCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\TrueCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\TrueCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\TrueCodec" echo %ProgramFiles%\TrueCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\TrueCodec" echo %sError% %ProgramFiles%\TrueCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoAccess" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VideoAccess\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VideoAccess\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VideoAccess">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VideoAccess" echo %ProgramFiles%\VideoAccess %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoAccess" echo %sError% %ProgramFiles%\VideoAccess^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoAccessCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VideoAccessCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VideoAccessCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VideoAccessCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VideoAccessCodec" echo %ProgramFiles%\VideoAccessCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoAccessCodec" echo %sError% %ProgramFiles%\VideoAccessCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VidCodecs" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VidCodecs\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VidCodecs\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VidCodecs">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VidCodecs" echo %ProgramFiles%\VidCodecs %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VidCodecs" echo %sError% %ProgramFiles%\VidCodecs^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Video Access ActiveX Object" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Video Access ActiveX Object\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Video Access ActiveX Object\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Video Access ActiveX Object">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Video Access ActiveX Object" echo %ProgramFiles%\Video Access ActiveX Object %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Video Access ActiveX Object" echo %sError% %ProgramFiles%\Video Access ActiveX Object^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Video ActiveX Access" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Video ActiveX Access\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Video ActiveX Access\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Video ActiveX Access">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Video ActiveX Access" echo %ProgramFiles%\Video ActiveX Access %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Video ActiveX Access" echo %sError% %ProgramFiles%\Video ActiveX Access^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Video ActiveX Object" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Video ActiveX Object\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Video ActiveX Object\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Video ActiveX Object">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Video ActiveX Object" echo %ProgramFiles%\Video ActiveX Object %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Video ActiveX Object" echo %sError% %ProgramFiles%\Video ActiveX Object^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Video AX Object" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Video AX Object\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Video AX Object\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Video AX Object">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Video AX Object" echo %ProgramFiles%\Video AX Object %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Video AX Object" echo %sError% %ProgramFiles%\Video AX Object^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\Video iCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\Video iCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\Video iCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\Video iCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\Video iCodec" echo %ProgramFiles%\Video iCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\Video iCodec" echo %sError% %ProgramFiles%\Video iCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoCompressionCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VideoCompressionCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VideoCompressionCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VideoCompressionCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VideoCompressionCodec" echo %ProgramFiles%\VideoCompressionCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoCompressionCodec" echo %sError% %ProgramFiles%\VideoCompressionCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoKeyCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VideoKeyCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VideoKeyCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VideoKeyCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VideoKeyCodec" echo %ProgramFiles%\VideoKeyCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VideoKeyCodec" echo %sError% %ProgramFiles%\VideoKeyCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\VideosCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\VideosCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\VideosCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\VideosCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\VideosCodec" echo %ProgramFiles%\VideosCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\VideosCodec" echo %sError% %ProgramFiles%\VideosCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\WinMediaCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\WinMediaCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\WinMediaCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\WinMediaCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\WinMediaCodec" echo %ProgramFiles%\WinMediaCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\WinMediaCodec" echo %sError% %ProgramFiles%\WinMediaCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\XXXAccess" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\XXXAccess\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\XXXAccess\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\XXXAccess">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\XXXAccess" echo %ProgramFiles%\XXXAccess %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\XXXAccess" echo %sError% %ProgramFiles%\XXXAccess^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%ProgramFiles%\ZipCodec" (>>Pass2.cmd
echo attrib -r -h "%ProgramFiles%\ZipCodec\*.*">>Pass2.cmd
echo del /a /f /q "%ProgramFiles%\ZipCodec\*.*">>Pass2.cmd
echo RD /s /q "%ProgramFiles%\ZipCodec">>Pass2.cmd
echo IF NOT exist "%ProgramFiles%\ZipCodec" echo %ProgramFiles%\ZipCodec %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo if exist "%ProgramFiles%\ZipCodec" echo %sError% %ProgramFiles%\ZipCodec^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd

echo if exist "%startup%\autorun.exe" (>>Pass2.cmd
echo attrib -r -h -s %startup%\autorun.exe>>Pass2.cmd
echo del /q %startup%\autorun.exe>>Pass2.cmd
echo if NOT exist "%startup%\autorun.exe" echo %startup%\autorun.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%startup%\autorun.exe" echo %sError% %startup%\autorun.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%startup%\system.exe" (>>Pass2.cmd
echo attrib -r -h -s %startup%\system.exe>>Pass2.cmd
echo del /q %startup%\system.exe>>Pass2.cmd
echo if NOT exist "%startup%\system.exe" echo %startup%\system.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%startup%\system.exe" echo %sError% %startup%\system.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%austartup%\findfast.exe" (>>Pass2.cmd
echo attrib -r -h -s %austartup%\findfast.exe>>Pass2.cmd
echo del /q %austartup%\findfast.exe>>Pass2.cmd
echo if NOT exist "%austartup%\findfast.exe" echo %austartup%\findfast.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%austartup%\findfast.exe" echo %sError% %austartup%\findfast.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%austartup%\autorun.exe" (>>Pass2.cmd
echo attrib -r -h -s %austartup%\autorun.exe>>Pass2.cmd
echo del /q %austartup%\autorun.exe>>Pass2.cmd
echo if NOT exist "%austartup%\autorun.exe" echo %austartup%\autorun.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%austartup%\autorun.exe" echo %sError% %austartup%\autorun.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd

echo if exist "%temp%\wschtm35.dll" (>>Pass2.cmd
echo attrib -r -h -s %temp%\wschtm35.dll>>Pass2.cmd
echo del /q %temp%\wschtm35.dll>>Pass2.cmd
echo if NOT exist "%temp%\wschtm35.dll" echo %temp%\wschtm35.dll %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%temp%\wschtm35.dll" echo %sError% %temp%\wschtm35.dll^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%temp%\_uninst35.exe" (>>Pass2.cmd
echo attrib -r -h -s %temp%\_uninst35.exe>>Pass2.cmd
echo del /q %temp%\_uninst35.exe>>Pass2.cmd
echo if NOT exist "%temp%\_uninst35.exe" echo %temp%\_uninst35.exe %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%temp%\_uninst35.exe" echo %sError% %temp%\_uninst35.exe^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo if exist "%userprofile%\Application Data\Install.dat" (>>Pass2.cmd
echo attrib -r -h -s "%userprofile%\Application Data\Install.dat">>Pass2.cmd
echo del /q "%userprofile%\Application Data\Install.dat">>Pass2.cmd
echo if NOT exist "%userprofile%\Application Data\Install.dat" echo %userprofile%\Application Data\Install.dat %sDel%^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo if exist "%userprofile%\Application Data\Install.dat" echo %sError% %userprofile%\Application Data\Install.dat^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo )>>Pass2.cmd
echo.>>Pass2.cmd





if %FSType%==NTFS goto StartFix_KD
goto :FixEnd_KD

:StartFix_KD
echo IF EXIST tmp.hiv del tmp.hiv >>Pass2.cmd
echo IF EXIST tmp.txt del tmp.txt >>Pass2.cmd
echo IF EXIST tmp2.txt del tmp2.txt >>Pass2.cmd
echo IF EXIST tmp3.txt del tmp3.txt >>Pass2.cmd
echo swreg save "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" %systemdrive%\tmp.hiv >>Pass2.cmd

echo dumphive %systemdrive%\tmp.hiv %systemdrive%\tmp.txt ^>NUL >>Pass2.cmd
echo type tmp.txt ^| find /i /V "Userinit"^>tmp2.txt >>Pass2.cmd
echo type tmp2.txt ^| find /i /V "Dllname"^>tmp.txt >>Pass2.cmd
echo type tmp.txt ^| find /i /V "system32"^>tmp2.txt >>Pass2.cmd
echo type tmp2.txt ^| find /i "System"^>tmp.txt >>Pass2.cmd
echo type tmp.txt ^| find /i "kd"^>tmp2.txt >>Pass2.cmd
echo for /f "tokens=* delims=" %%%%a in (tmp2.txt) do echo %%%%a^>tmp3.txt>>Pass2.cmd
echo if exist tmp3.txt goto Fix_KD>>Pass2.cmd
echo goto FixEnd_KD >>Pass2.cmd
echo.>>Pass2.cmd

echo :Fix_KD >>Pass2.cmd
echo for /f "tokens=2 delims==" %%%%a in (tmp3.txt) do echo %%%%a^>tmp.txt>>Pass2.cmd

echo echo Option Explicit^>unquote.vbs>>Pass2.cmd
echo echo Dim objFichier,MyFile,MyFile2,ligne^>^>unquote.vbs>>Pass2.cmd
echo echo Set objFichier=CreateObject("Scripting.FileSystemObject")^>^>unquote.vbs>>Pass2.cmd
echo echo Set MyFile= objFichier.OpenTextFile("tmp.txt", 1)^>^>unquote.vbs>>Pass2.cmd
echo echo ligne=MyFile.ReadLine^>^>unquote.vbs>>Pass2.cmd
echo echo If len(ligne) > 2 Then^>^>unquote.vbs>>Pass2.cmd
echo echo    Set MyFile2= objFichier.OpenTextFile("tmp2.txt", 2, true)^>^>unquote.vbs>>Pass2.cmd
echo echo    ligne=Right(ligne,Len(ligne)-1)^>^>unquote.vbs>>Pass2.cmd
echo echo    ligne=Left(ligne,Len(ligne)-5)^>^>unquote.vbs>>Pass2.cmd
echo echo    MyFile2.WriteLine(ligne)^>^>unquote.vbs>>Pass2.cmd
echo echo    MyFile2.Close^>^>unquote.vbs>>Pass2.cmd
echo echo End If^>^>unquote.vbs>>Pass2.cmd
echo echo MyFile.Close^>^>unquote.vbs>>Pass2.cmd

echo cscript //I //nologo unquote.vbs>>Pass2.cmd
echo IF EXIST unquote.vbs del unquote.vbs>>Pass2.cmd
echo for /f "tokens=*" %%%%a in (tmp2.txt) do set file=%%%%a.exe>>Pass2.cmd

echo echo REGEDIT4^>Pass2.reg >>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]^>^>Pass2.reg>>Pass2.cmd
echo echo "system"=""^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo regedit.exe /s Pass2.reg>>Pass2.cmd
echo del Pass2.reg>>Pass2.cmd

echo IF EXIST "%syspath%\%%file%%" (>>Pass2.cmd

echo swxcacls "%syspath%\%%file%%" /de:x /i remove /q>>Pass2.cmd
echo attrib -r -s -h "%syspath%\%%file%%">>Pass2.cmd
echo del /a /f "%syspath%\%%file%%">>Pass2.cmd
echo IF NOT EXIST "%syspath%\%%file%%" echo %syspath%\%%file%% %sDel%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo IF EXIST "%syspath%\%%file%%" echo %sError% %syspath%\%%file%%^>^>%systemdrive%\rapport.txt>>Pass2.cmd

echo ) ELSE (>>Pass2.cmd
echo echo %syspath%\%%file%% %sNotFound%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo )>>Pass2.cmd

echo IF EXIST tmp.hiv del tmp.hiv >>Pass2.cmd
echo IF EXIST tmp.txt del tmp.txt >>Pass2.cmd
echo IF EXIST tmp2.txt del tmp2.txt >>Pass2.cmd
echo IF EXIST tmp3.txt del tmp3.txt >>Pass2.cmd
echo swreg save "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" %systemdrive%\tmp.hiv >>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt >>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo dumphive %systemdrive%\tmp.hiv %systemdrive%\tmp.txt ^>NUL >>Pass2.cmd
echo type tmp.txt ^| find /i /V "Userinit"^>tmp2.txt >>Pass2.cmd
echo type tmp2.txt ^| find /i /V "Dllname"^>tmp.txt >>Pass2.cmd
echo type tmp.txt ^| find /i /V "system32"^>tmp2.txt >>Pass2.cmd
echo type tmp2.txt ^| find /i "System"^>^>%systemdrive%\rapport.txt>>Pass2.cmd

echo.>>Pass2.cmd
echo :FixEnd_KD >>Pass2.cmd
echo IF EXIST tmp.hiv del tmp.hiv >>Pass2.cmd
echo IF EXIST tmp.txt del tmp.txt >>Pass2.cmd
echo IF EXIST tmp2.txt del tmp2.txt >>Pass2.cmd
echo IF EXIST tmp3.txt del tmp3.txt >>Pass2.cmd
echo set file= >>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt >>Pass2.cmd





echo.>>Pass2.cmd
echo.>>Pass2.cmd
echo echo REGEDIT4^>Pass2.reg >>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{24E27EA9-FCF3-444F-BD80-20543BA5D946}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{5753791b-f607-48ca-814e-91c14d081f9e}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{7507739F-BC2E-4DC3-B233-816783C25DC9}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B712}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_CLASSES_ROOT\CLSID\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{24E27EA9-FCF3-444F-BD80-20543BA5D946}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{5753791b-f607-48ca-814e-91c14d081f9e}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{7507739F-BC2E-4DC3-B233-816783C25DC9}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B712}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5753791b-f607-48ca-814e-91c14d081f9e}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7507739F-BC2E-4DC3-B233-816783C25DC9}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{826B2228-BC09-49F2-B5F8-42CE26B1B712}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SharedTaskScheduler]^>^>Pass2.reg>>Pass2.cmd
echo echo "{24E27EA9-FCF3-444F-BD80-20543BA5D946}"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\explorer\run]^>^>Pass2.reg>>Pass2.cmd
echo echo "homepage.monitor.exe"=-^>^>Pass2.Reg>>Pass2.cmd
echo echo "isamonitor.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "ishost.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "issearch.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "kernel32.dll"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "msmsgs.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "notepad.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "notepad2.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "nvctrl.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "paint.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "pmsngr.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "popuper.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "shnlog.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "wininet.dll"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "winlogon.exe"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]^>^>Pass2.reg>>Pass2.cmd
echo echo "FHPage"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]^>^>Pass2.reg>>Pass2.cmd
echo echo "Srv32 spool service"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\browsela]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\s_reg]^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_CURRENT_USER\]^>^>Pass2.reg>>Pass2.cmd
echo echo "ColorTable19"=-^>^>Pass2.reg>>Pass2.cmd
echo echo "ColorTable20"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main]^>^>Pass2.reg>>Pass2.cmd
echo echo "Start Page"="http://www.microsoft.com/isapi/redir.dll?prd=ie&pver=6&ar=msnhome"^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]^>^>Pass2.reg>>Pass2.cmd
echo echo "taskdir"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]^>^>Pass2.reg>>Pass2.cmd
echo echo "Srv32 spool service"=-^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd


if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hadjajr.ini">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]^>^>Pass2.reg>>Pass2.cmd
echo echo "AppInit_DLLs"=""^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hanonvt.ini">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]^>^>Pass2.reg>>Pass2.cmd
echo echo "AppInit_DLLs"=""^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hrum.txt">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]^>^>Pass2.reg>>Pass2.cmd
echo echo "AppInit_DLLs"=""^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hrum323.txt">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo echo.^>^>Pass2.reg>>Pass2.cmd
echo echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]^>^>Pass2.reg>>Pass2.cmd
echo echo "AppInit_DLLs"=""^>^>Pass2.reg>>Pass2.cmd
echo echo.^>^>Pass2.reg>>Pass2.cmd
del shell2.txt
)
if exist shell.txt del shell.txt


echo.>>Pass2.cmd
echo if exist Pass2.reg (>>Pass2.cmd
echo regedit.exe /s Pass2.reg>>Pass2.cmd
echo del Pass2.reg>>Pass2.cmd
echo ) ELSE ( >>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt>>Pass2.cmd
if %lang%==fra (
echo echo *** Erreur : Pass2.reg non trouvé ***^>^>%systemdrive%\rapport.txt>>Pass2.cmd
) else (
echo echo *** Error : Pass2.reg not found ***^>^>%systemdrive%\rapport.txt>>Pass2.cmd
)
echo )>>Pass2.cmd
echo.>>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo echo »»»»»»»»»»»»»»»»»»»»»»»» %sEnd%^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo echo.^>^>%systemdrive%\rapport.txt>>Pass2.cmd
echo.>>Pass2.cmd
echo start %windir%\notepad.exe %systemdrive%\rapport.txt>>Pass2.cmd
echo if exist Pass2.cmd del %systemdrive%\Pass2.cmd>>Pass2.cmd
echo.>>Pass2.cmd
echo exit>>Pass2.cmd




move Pass2.cmd %systemdrive%\Pass2.cmd

goto QuestionRegistre
echo 20 46 69 78 20 62 79 20 53 21 52 69






:QuestionRegistre
echo.
echo.>>%systemdrive%\rapport.txt
echo %sRegClean%
echo »»»»»»»»»»»»»»»»»»»»»»»» %sRegClean%>>%systemdrive%\rapport.txt
set ChoixRegistre=''
set /p ChoixRegistre=%sRegCleanQ%
if '%ChoixRegistre%'=='n' GOTO nonet
if '%ChoixRegistre%'=='N' GOTO nonet
if '%ChoixRegistre%'=='o' GOTO net
if '%ChoixRegistre%'=='O' GOTO net
if '%ChoixRegistre%'=='y' GOTO net
if '%ChoixRegistre%'=='Y' GOTO net
goto QuestionRegistre


:net 

regedit.exe /e %systemdrive%\SHUDDERLTD.txt "HKEY_LOCAL_MACHINE\SOFTWARE\SHUDDERLTD"
IF EXIST %systemdrive%\SHUDDERLTD.txt (

del %systemdrive%\SHUDDERLTD.txt
swreg add HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTDdummy >NUL
swreg save HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTDdummy ShudderLTDdummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTDdummy /f >NUL
swreg restore HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTD ShudderLTDdummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTD /f >NUL
del ShudderLTDdummy.hiv

regedit.exe /e %systemdrive%\SHUDDERLTD.txt "HKEY_LOCAL_MACHINE\SOFTWARE\SHUDDERLTD"
echo.>>%systemdrive%\rapport.txt 
IF NOT EXIST %systemdrive%\SHUDDERLTD.txt echo HKLM\SOFTWARE\SHUDDERLTD %sDel%>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\SHUDDERLTD.txt echo %sError% HKLM\SOFTWARE\SHUDDERLTD>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\SHUDDERLTD.txt del %systemdrive%\SHUDDERLTD.txt
)



regedit.exe /e %systemdrive%\PSGuard.txt "HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.com"
IF EXIST %systemdrive%\PSGuard.txt (

del %systemdrive%\PSGuard.txt
swreg add HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.comdummy >NUL
swreg save HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.comdummy PSGuarddummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.comdummy /f >NUL
swreg restore HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.com PSGuarddummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.com /f >NUL
del PSGuarddummy.hiv

regedit.exe /e %systemdrive%\PSGuard.txt "HKEY_LOCAL_MACHINE\SOFTWARE\PSGuard.com"
echo.>>%systemdrive%\rapport.txt 
IF NOT EXIST %systemdrive%\PSGuard.txt echo HKLM\SOFTWARE\PSGuard.com %sDel%>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\PSGuard.txt echo %sError% HKLM\SOFTWARE\PSGuard.com>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\PSGuard.txt del %systemdrive%\PSGuard.txt
)



regedit.exe /e %systemdrive%\WinHound.txt "HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com"
IF EXIST %systemdrive%\WinHound.txt (

del %systemdrive%\WinHound.txt
swreg add HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.comdummy >NUL
swreg save HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.comdummy WinHounddummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.comdummy /f >NUL
swreg restore HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com WinHounddummy.hiv >NUL
swreg delete HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com /f >NUL
del WinHounddummy.hiv

regedit.exe /e %systemdrive%\WinHound.txt "HKEY_LOCAL_MACHINE\SOFTWARE\WinHound.com"
echo.>>%systemdrive%\rapport.txt 
IF NOT EXIST %systemdrive%\WinHound.txt echo HKLM\SOFTWARE\WinHound.com %sDel%>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\WinHound.txt echo %sError% HKLM\SOFTWARE\WinHound.com>>%systemdrive%\rapport.txt
IF EXIST %systemdrive%\WinHound.txt del %systemdrive%\WinHound.txt
)



echo.>>%systemdrive%\rapport.txt 
echo REGEDIT4>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\MyBHOImpl.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\SpywareStrike.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\WStart.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\{70F17C8C-1744-41B6-9D07-575DB448DCC5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\{77a7d7ab-576a-4b90-b4ee-909093c3bc69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\{78364D99-A640-4ddf-B91A-67EFF8373045}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\AppID\{F6BDB4E5-D6AA-4D1F-8B67-BCB0F2246E21}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CLASSES_ROOT\CLSID\{00020424-0000-0000-C000-000000000046}]>>cleanup.reg
echo "InprocServer32"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{020b1227-417d-4682-9ac3-61f43cb5b6b1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{03413bf7-e34c-445b-bfc0-a2b127255871}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{04f3168f-5afc-4531-b3b4-16ca93720415}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{052b12f7-86fa-4921-8482-26c42316b522}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{057e242f-2947-4e0a-8e61-a11345d97ea6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{05a91164-3c96-47d6-aa74-2c855791b2d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0878F045-B52E-46B3-9724-D3AE69D50067}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0976BE78-EA53-4DD6-91E6-E6175940032B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0BC9BC01-54D4-4CCE-2B7D-955164314CD4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0c7416f0-dd23-420f-97f5-aae352ea2bf1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0EA04667-E53B-4E81-8E7C-DE2CA114CBD6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0F25878F-F8AE-5D5D-2BB7-31B5F803290D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{0ffdaffc-d80d-47bf-b9b0-895ea240f4de}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{125494b2-acad-414c-98b9-452f3ef7703a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{145E6FB1-1256-44ED-A336-8BBA43373BE6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{16875E09-927B-4494-82BD-158A1CD46BA0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{17E02586-A91D-4A9D-A74E-187B05DFFE6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{187a8428-bd94-470d-a178-a2347f940519}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{192c5b4a-3efd-40c7-9f99-c472deb8efc0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1a1ddc19-5893-43ab-a73f-f41a0f34d115}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1a29a79a-b9c8-44a9-bedf-7fadde3cf33f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1B68470C-2DEF-493B-8A4A-8E2D81BE4EA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1BD98DFD-2DA9-4C54-85D7-BE03A0F9C487}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1C3B31AE-FD16-D2CE-43FF-DC4CD5C1BC5E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1C94EA51-3800-4F08-B5DC-A5B67823FFEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1ca480cd-c0e5-4548-874e-b85b17905b3a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1CA7DBAF-B066-4554-977E-5CEBB7FA59C8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1CBC7F79-C21A-4468-8116-38E8AD875816}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{1da7dbe8-c51b-4ae4-bc6e-21863349b0b4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{202a961f-23ae-42b1-9505-ffe3c818d717}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{203B1C4D9-BC71-8916-38AD-9DEA5D213614}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{20a3d913-30ef-4e69-b3f7-93b3f1fb9d5c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{20D1AF34-6E19-42D8-AF9F-BDFBE45C2454}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{210b4043-35ca-4aa0-8796-191f9663dfb3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{21E132C9-1F98-4151-BDAD-7D9B49C60A8E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{23F7AD29-F51A-4BA1-BE70-143B1CB25BD1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{23f9d371-0bd6-41ab-a00b-a1f9342d6390}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{24c60b9b-26b5-4201-9f7a-fb9219356ae9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{24E27EA9-FCF3-444F-BD80-20543BA5D946}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{265C2AF8-C94C-4AFF-B2B6-340D3982562C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{27150f81-0877-42e9-af13-55e5a3439a26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{274c0420-ebe0-4f1d-b473-edd1aa9b85dd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2810fba5-55ec-4bee-8263-0e2fa5883768}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2865930b-4588-4ff3-8227-6d4f66c92c7a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{29D3E589-2DCC-699E-1A0F-61AF30BAA3A4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2C1CD3D7-86AC-4068-93BC-A02304BB8C34}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2C59D5EC-6B91-4896-BD6F-5F121D87A7F8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2F34E0E0-F0BB-477F-AFB8-509262FA0AD1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{2fe2edc0-9e62-4f34-8a73-bc66dae48ef3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{315f73fc-a7b1-49e6-a3c4-cc00cf8a3fdb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{31EE3286-D785-4E3F-95FC-51D00FDABC01}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{330A77C2-C15A-43B5-055C-B4E35EAED279}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{357a87ed-3e5d-437d-b334-deb7eb4982a3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{336ec37f-54bf-4f13-8237-03f64fa591e7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{35a88e51-b53d-43e9-b8a7-75d4c31b4676}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{35ED274E-3F42-4A78-BBDC-3B7D73E85578}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3946A33D-BBC6-4792-A383-D855E0F76D91}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{39f25b12-74ff-4079-a51f-1d70f5b08b84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3a3a8c24-8ff0-4140-9731-54d9483ea70b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3a906593-b4bd-48ed-84b0-3249bed65ef9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3bb84870-e757-4fb1-a195-e2f7d3d95e40}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3d00a39c-655b-428b-aeb2-2fba03dcc49c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3D74D140-F780-4AE3-8D6D-F8DC39107213}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3dab4d3e-1d45-406e-9cda-25227a7a2633}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3e4155b8-5a4a-4e95-83b2-ab032da9acbc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3E9B951E-6F72-431B-82CF-4A9FBF2F53BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{3F245C2A-1558-3CCA-04A8-7AA23B60E40F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{405132A4-5DD1-4BA8-A181-95C8D435093A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{408f660a-9465-44a3-b557-8709dfd992bc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{41D7BB0A-64E0-4AB2-BD0B-69EA78E462E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{429F4BB8-7BF7-4152-8011-3C6F9EB7E892}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4734044c-7427-43d8-adbe-df942e52bef2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{479fd0cf-5be9-4c63-8cda-b6d371c67bd5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4823B0A6-EAB4-4577-9792-C59231379CEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{49443D6E-CE4E-47A9-8DEB-F5774CE14984}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{49b72a72-01f5-4ae8-bbd7-daa67f1e303b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4AA55E8C-2C19-4F3A-91EC-43B6DF937C4F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4da4616d-7e6e-4fd9-a2d5-b6c535733e22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4F141CBA-1457-6CCA-03A7-7AA21B61EA0F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{4F93062D-7BDA-48BE-AEB6-88AF2B1FE2D4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{52034AD2-914C-4634-B375-9299631E5525}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5206DF89-97FC-41AD-BAE3-993E87053A99}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5321E378-FFAD-4999-8C62-03CA8155F0B3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{55059d4f-a1ac-4837-ae07-4859101f598d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5753791b-f607-48ca-814e-91c14d081f9e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5839511e-ec1b-4f91-ace3-fb88e52f5239}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{59080fb1-a43e-4059-a155-18b1eac7352c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5aaf6542-f4ba-4df4-873d-4902ecbe794c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5B55C4E3-C179-BA0B-B4FD-F2DB862D6202}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{58E68548-42E2-479D-A9E0-86D9F2EAF02E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5bc82bdb-bc03-4671-9a78-3ef2b68449de}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5E5A79A6-C67B-444E-BE58-BD0ACEFCDA07}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5f4c3d09-b3b9-4f88-aa82-31332fee1c08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{5f6bbd8a-18cf-4d55-8b4c-c9b4c9328dfe}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{62eb0924-19d2-4226-b4b9-8ad1f70904c1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{64ba30a2-811a-4597-b0af-d551128be340}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{66BD9D4C-FAF3-38B9-F43F-169E15DB1A3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{67196B3E-55A0-49DE-BA11-66F07DF804DB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{673BA504-3DDA-4851-8B3C-37AE54E2D688}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{686a161d-5bd1-4999-8832-6393f41e564c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{6ae3aca6-1be3-4443-98dd-effcfa793d35}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{6AB7158B-4BFF-4160-AD7D-4D622DF548CF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{6af69c4d-420a-4c95-b34f-e4635f84f53b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{6c69e319-0d03-47da-997a-36586cbc53b3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{70fbd528-2d3c-4a00-9b8c-bbf441e534be}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7198F8DA-012C-4DB4-ABD8-923A54C87900}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{724510C3-F3C8-4FB7-879A-D99F29008A2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7288C0BD-7F2F-4229-A0C4-3C90A6E2A881}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{736B5468-BDAD-41BE-92D0-22AE2DDF7BCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{74a49269-9779-48b4-a0e6-3a5af2a3ade6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7507739F-BC2E-4DC3-B233-816783C25DC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7702C521-76AE-42C0-A181-3B5A96C2EEF7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{78364D99-A640-4ddf-B91A-67EFF8373045}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{784aa380-13f2-422e-8540-f2280f1dd4f1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{787dec39-69d0-40b3-b173-e0411c59b300}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7916f057-223f-4612-ac84-e882cbe043d4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{79ddf2ef-d881-464b-b2af-5af8816a3964}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7A7E6D97-B492-4884-9ABB-C31281DCC4F2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7A932ED2-1737-4AB8-B84D-C71779958551}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7ADDA344-1D36-4446-9F4B-B2351FB19EFD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7b1eeccd-0a6d-4ad5-8ac1-4af5722b3885}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7b4d79df-9ef0-429d-a0e9-d9b138c6a53b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7caf96a2-c556-460a-988e-76fc7895d284}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7D98221E-AF8F-4D29-8BB1-1DFABC288173}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{7fcf04b6-6354-47ef-b45e-a48268e92757}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{813c8e86-4c90-4617-b59e-e130cc068140}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B712}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{82847700-FE61-46A3-B3EE-761A1E312ACA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{860c2f6b-ca82-4282-9187-beccbb66f0af}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{873eb32d-ae1a-4183-89bd-45a77f761be4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{874443fe-aa33-4ebf-a6ac-73208787e62d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{89133bce-57d0-4d2b-afaf-a97b74ad704e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{893FAD3A-931E-4E53-B515-B1426D63799B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{89aef01d-d237-49c7-84dc-4e1904c1fd31}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{89e4aaba-3b21-49b3-b922-8ca35193c68e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8aed5df3-6e0b-4930-b1a5-f8aa8d757497}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8bf5b8fc-11cb-409f-8c91-4d4ca04a1b6d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8C2A05C5-780F-4A2E-AE1C-FB8181F860E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8c56b6ce-c53f-44c4-9bdc-a9bc1711d05a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8D82BB89-B58C-4F21-9C5D-377F65947806}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8d83b16e-0de1-452b-ac52-96ec0b34aa4b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8dc1f789-e073-4363-b40d-07376bc5ecc5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8DCA6B3D-1FCA-4500-B210-76119BB5C69E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8e99f990-b75a-4568-b3c8-24cbc8cbbfc1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8ee6bf73-b370-4d13-9126-eb0071178f2e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{8f40cc34-fe77-4618-aa3d-bd2efacaa8dc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9114249C-F5E5-36A3-4480-169B869E0556}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{93ac7c30-3878-4eaa-9420-7977285df5b1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{957bab51-81ff-8195-f273-d7e286ea702f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{96ebbe6a-2864-4345-b32b-26ee9be524b5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9746B450-6064-4EC8-9480-72A289AA2237}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{97f56e12-c706-4aeb-9ffb-133c05ee5d38}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9896231A-C487-43A5-8369-6EC9B0A96CC0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9952355f-fefb-4764-bcd7-a993d03dd7e2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9ae613a2-a13b-4379-8d0e-86a1a78476ec}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9bb7e700-4e48-476d-b75c-6f47606be988}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9C5875B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9EAC0102-5E61-2312-BC2D-4D54434D5443}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9F230924-E275-4FD2-BC99-5C30362332E3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{9f89e240-06a6-4e1c-ba84-f267de7db391}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{a0aa3e4b-31cb-4ea2-9049-22b7f5b65edb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{a0c51615-738a-4542-801a-5af61614e182}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{A1D9D3F0-8C2A-9A1D-A376-2CACFB10AB72}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{a2595f37-48d0-46a1-9b51-478591a97764}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{A2C8F6B1-7C2A-3D1C-A3C6-A1FDA113B43F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{a2cd90b5-e5a2-4aac-a504-c964a6d499df}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{A2D9D3F0-8C2A-2A1D-A376-1BECFB10AB72}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{a566f298-05a6-4b3d-b672-da7c27316430}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{A6790AA5-C6C7-4BCF-A46D-0FDAC4EA90EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{AC1B4DA2-12FA-31F2-1A7D-CD2B14E6AD4E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{ACC647EE-991A-4811-B420-F063F50CDDC1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{ae18da4e-be15-4925-81bb-890c04af0200}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{aea3d2df-2b2c-4d7b-81a0-d975c6dc088e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{aeabe83d-672b-4717-9154-45bd6283c610}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{AEECBFDA-12FA-4881-BDCE-8C3E1CE4B344}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{af3fd9a8-1287-4159-9212-9a5b4494af70}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{b0398eca-0bcd-4645-8261-5e9dc70248d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{B212D577-05B7-4963-911E-4A8588160DFA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{b60a0e56-548d-40ae-9383-d752531f653f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{b67b0756-2528-4996-b4bd-c993614cc0b6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{bcc51ea9-6340-4ebe-8736-13a752ecb0be}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{B75F75B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{BA12780E-B91E-41A7-A51A-528CBD64284E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{bf1ced2c-4b3f-4079-a330-864eda5a4cff}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C0E5FF11-4AE0-4699-A6A7-2FB7118F2081}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C1212066-16A4-F478-E898-BC64A80D4908}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C1A2FDA2-1A5B-2A8F-F3A2-B22DA1A3C41D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C1A2FDA2-2A5B-2C8A-F2A2-BA2DB3A2C31C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C1A8B6A1-2C81-1C3D-A3C6-A1CCDB10B47F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{c3703265-4671-4858-92a4-cba6a7b3bb45}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{c3786a8d-6426-4c29-a23f-f36e47b31e0c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C5A40FCE-0A0F-40CA-985E-661C28B5B431}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C5B70256-5B08-4056-B84E-C6CE084967F5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C7CF1142-0785-4B12-A280-B64681E4D45E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C7F22879-7151-4C71-8C50-9557AFDA66C6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{C9FA1DC9-1FB3-C2A8-2F1A-DC1A33E7AF9D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CA14EE13-ED15-C4A2-17FF-DA4D15C1BC5E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CA5E7959-60B5-47B7-80AC-1606309733F3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{cbb430e6-5b1b-474a-9d7e-160d4fe74bea}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{cbcaca58-1aee-4600-8cf0-e8b30bff1535}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CBE4B748-08F9-44DB-8FB1-9AD25979DA35}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{ccf982af-f3aa-48c4-97c4-ecdea4bd3fc3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CD5E2AC9-25CE-A1C5-D1E2-DC6B28A6ED5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CDD964C2-FB78-4A74-BB1E-1CB1FCB72018}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{CEABF027-6CDC-4D47-ADF6-AC5D065826A6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{D1A2E7CD-F5C1-21A8-CA2C-13D0AC72D19D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{d1ac752e-883f-4ed8-8828-b618c3a72152}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{D25F7446-4D36-4203-9EA5-5422B26FA9D0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{d6d64cdf-0363-4261-b723-29a3af365e1d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{D7BF3304-138B-4DD5-86EE-491BB6A2286C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{D81E2FC4-B0A2-11D3-21AC-07C04C21A18A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e0103cd4-d1ce-411a-b75b-4fec072867f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e04408db-4812-4478-8d4d-e46edcffd3b6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{E12AAACF-8AF2-4C31-BA94-E3787B44F90E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{E2CA7CD1-1AD9-F1C4-3D2A-DC1A33E7AF9D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{E479197F-49E5-4E60-9FA2-A71D4C7C2BBC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e5b1e382-817e-4b74-8a96-ec78751e6acf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e51e3ade-ddc4-45d9-9a21-36cf20ea9306}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{E802FFFF-8E58-4d2c-A435-8BEEFB10AB77}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e944d14a-03aa-43e3-9d0e-4f50c4d1b005}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{e9719d38-ec55-4c8b-9df0-080ade95a9fa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{EA26CE12-DE64-A1C5-9A4F-FC1A64E6AC2E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{ed39ecef-902e-4ed1-8434-71e8db89e5ca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{edbf1bc8-39ab-48eb-a0a9-c75078eb7c8e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{ee2975b6-e8d5-405e-8448-8fe9590f6cfb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f4b3e25a-33b4-4647-9a78-b627dde211a6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{F4E04583-354E-4076-BE7D-ED6A80FD66DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{F33812FB-F35C-4674-90F6-FD757C419C51}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f5947202-e9cb-4a72-88e7-22f2cbd2b124}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f79fd28e-36ee-4989-aa61-9dd8e30a82fa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f7d40011-29bb-43eb-9c97-875ce89e9e36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f85e05f5-667e-41b0-ab8a-147337a99e65}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{F880B4F2-75BF-44EC-B7AA-45EC37448027}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{f8d02387-789a-4c0f-a1d8-8a93f33ee4df}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{FCADDC14-BD46-408A-9842-CDBE1C6D37EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{feac45db-84dc-4123-8b0d-4d9408fcf9ea}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{fe2d25c1-c1db-4b5e-9390-af1cb5302f32}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{FEFEC367-0557-50DA-92D8-EFF9A710070B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{FFF5092F-7172-4018-827B-FA5868FB0478}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\VMHomepage]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\CLSID\VMHomepage.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{001501E7-C970-4CB1-9740-E055BF3DDFD6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{08101c3e-6c90-439e-9734-6e4dd1b53b69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{09b90087-4ffa-4a44-be69-da117a710f07}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{0f68a8aa-a9a8-4711-be36-ae363efa6443}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{0FBBBC44-296D-4A2F-AF45-BE1EE387F569}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{1449f89c-ad28-427a-97ff-1d5bd812ea43}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{163469FD-6009-48E2-AD8C-47BB2E0D88BE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{1694E5C6-9E1F-4C3B-B79A-828C2FC40003}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{189518DF-7EBA-4D31-A7E1-73B5BB60E8D5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{1c08d3d0-1e04-4dde-ab0a-75355ea2585e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{1E1B2878-88FF-11D2-8D96-D7ACAC95951F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{200BD3A6-A02B-4BAC-A364-A9D8017E3C4E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{206538f7-f98c-4a46-a7d4-4a37fcdc932b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{20C59F9F-33CB-4B1B-AFB6-B710DB845709}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{20f8b70d-9f16-4dcb-8788-90a0498e46b9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{23D627FE-3F02-44CF-9EE1-7B9E44BD9E13}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{23D80835-4A3A-4572-9F5F-3F24A7A28AE5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{255CDDA3-576B-44C9-B944-46EAC18D5D6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{28420952-c82b-47d9-a042-fa2217d8a082}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{28fedb90-53c7-4928-994a-cee782606507}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{2C15CDEA-3EF4-4405-90B0-19A1389B36ED}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{2c462d06-3ba0-48bb-9282-bb6519fe86e9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{3115A433-3FA0-483B-AB01-2A61C951FE58}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{3261F690-1CA4-4839-928B-F4F898B74EB7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{376C5E0D-E8DD-4161-B74B-37E6323E538E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{37B9988B-1997-41F4-A832-DAE42CC3F7C2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{3a350193-c7f7-4e10-b347-02ff4c3cc4e9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{3c099c83-8587-4b35-8af0-fc3a169ce14f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{3fe13f31-e890-4c37-8213-4b5f9a511c26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{43CFEFBE-8AE4-400E-BBE4-A2B61BB140FB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{4723879b-8f52-4be7-9994-626afa539366}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{4cad27dc-1b60-42f4-820e-316fe0a13512}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{50F91B80-0270-46CE-86B1-4C508F5CB280}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{51FEFA9C-1D5A-41C4-81FE-8C0FBE9254F0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{54874d12-c0c6-44cc-83fb-2c35202f881b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{54a3200b-d76e-48d1-b35c-d87eaf6d90bd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{5790B963-23C5-43C1-BCF5-01C9B5A3E44E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{57F88FBD-FFD2-4AF2-B138-CD644A8E62B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{5B861FB8-903C-4996-B1D3-E9A86ED4BBCF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{5CCC8D01-9F75-4F07-9ACF-DEB314176C79}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{5D42DDF4-81EB-4668-9951-819A1D5BEFC8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{5E7BF614-960B-4A1F-9236-9EC01AC4C5E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{663dfe59-032c-46fb-a09a-ffc2dc074f54}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{66F0AC1C-DED5-4965-9E31-39788DF1B264}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{6876543E-DA55-4F90-9CD2-5ED380D9516C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{69ce4fbc-4861-4206-8211-dd5a9ee79ad3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{6DEEE498-08CC-43F0-BCA0-DBB5A25C9501}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{701E8C3A-7910-4CCD-A9F8-7B9A5F5B3947}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{71237FD0-9DF9-46B3-8F1C-6F2998543EA2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{76D06077-D5D3-40CA-B32D-6A67A7FF3F06}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{7b6a3434-8625-4abf-b79d-09d98c2498c4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{849E056A-D67A-431E-9370-2275F26D39B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{850300D6-D53B-4720-9372-6D31B85537E1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{86C7E6C3-EC47-44E5-AA08-EE0D0A25895F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{8b6c0168-baac-4c7c-911e-0132590f5661}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{8B7AFBFD-631C-45BA-9145-F059EB58DD73}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{8C803228-BD61-4744-8B79-949E3F512DDC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{8ec33b7d-9953-4edb-ace2-d4c105968601}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{9283DAC1-43F5-4580-BF86-841F22AF2335}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{9EF3F6BA-1BF9-4B4E-9475-437A02DBFA8B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{a00e2305-7001-4200-ba00-5779f9a3e7d3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{a20f5672-7486-4d27-bd2b-e555e4692c5f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{a917b2f3-a9bf-477c-a0e3-0382d0376159}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{AE90CAFC-09D4-47F0-9E11-CE621C424F08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{afa9056f-aa11-4771-ae01-04ecfde18206}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{AFEB8519-0B8B-4023-8C15-FFB17D5225F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{b26b5883-f15f-4283-b3d5-a1728077de47}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{B7C685F0-1804-4382-A8EF-17D33DF97069}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{b803d266-a08d-4a4c-9604-6d35689abe09}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{b8f2487f-aa6a-4914-9a3f-db84e6868d66}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{BA397E39-F67F-423F-BC6E-65939450093A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{BA9CC151-4581-438E-94AF-4C703201B7CA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{BC74C336-FF2C-40C9-AD4E-3772C208406B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{BDF00F24-A571-4392-95EC-04FDFF82A82C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{BEC8A83D-01D4-4F15-B8A9-4B4AB24253A7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{C4E953E6-770E-4F59-A5E3-43E9F0D682E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{C4EEDC19-992D-409A-B323-ED57D511AFA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{c6e2a22c-b3a8-43a4-b5ec-a5bb671ab3f7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{cb9385ab-8541-4b2f-a363-48f64c612993}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{cf1674cc-ec9a-4aee-996e-65a8f7c0b0e4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{D4D2958F-EDBE-430B-AB15-793E921C3A09}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{d5d6e9b5-30d5-4457-ac8b-399205f50411}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{d6a7d177-0b2f-4283-b2e8-b6310a45e606}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{DCFAB192-4A0E-4720-8E24-70D5F0CB8C39}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{DD90F677-D205-4F70-9014-659614AABCB2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{E0105E7C-D0C4-4DEA-AA21-B02F2960ECAF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{e0d6c30a-b9a3-4181-8099-3b0d5a2b98af}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{E3DF91F3-F24F-441E-9001-D61F36024322}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{e4645720-e02f-4bb2-8e6d-be7653dd1bf2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{ED39CB7C-1BF6-429B-A275-F183B4A3EFCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{f100a342-3ac5-47ff-b5b3-fcdb6fc9f016}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{F23AA637-31D5-4526-B5C6-9FF89E16202C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{f4364eec-31f5-4b8b-a7e0-3b6394c9d23f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{F4394F24-163D-430B-B5AF-B68B56031B99}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Interface\{F459EADB-5903-48D5-864C-2B7B46AB1424}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{fa46b160-c9dd-4040-b9d9-ccf5d3db5438}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{fc1f0c2c-8117-427d-816c-215b68524f74}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{FC4EDF66-0547-4F1A-AE96-7CFCAD711C90}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{fd1eee96-8dc7-478d-be3b-7d06ac67fb66}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\interface\{fd8e5ed7-0091-416f-a55b-1d072d58a24f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ADP.UrlCatcher]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ADP.UrlCatcher.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.foundcollection]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.foundcollection.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.foundobject]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.foundobject.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.killedprocessescollection]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.killedprocessescollection.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.killedprocessinfo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.killedprocessinfo.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.license]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.license.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.options]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.options.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.quarantine]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.quarantine.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.realtime]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.realtime.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.rtobject]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.rtobject.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.safemode]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.safemode.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.scaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.scaner.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.scanstatistic]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.scanstatistic.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.theapp]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.theapp.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.update]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.update.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.updateinfo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.updateinfo.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.versioninfo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\avecore.versioninfo.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Balloon.Application]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\NLS.UrlCatcher]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\NLS.UrlCatcher.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Replace.HBO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Replace.HBO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\SpecSoft2.BrowserHook]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\SpecSoft2.BrowserHook.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\SpecSoft2.IExplorerHelper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\SpecSoft2.IExplorerHelper.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TDS.MyBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TDS.MyBHO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Tubby.ToolBandObj]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\Tubby.ToolBandObj.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.Window]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.Window.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.WindowCollection]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.WindowCollection.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.WindowLayer]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WndLayer.WindowLayer.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\VMHomepage]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\VMHomepage.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\winapi32.Intelinks]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\winapi32.MyBaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\winapi32.MyBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WStart.WHttpHelper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\WStart.WHttpHelper.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.activator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.activator.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.ParamWr]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.ParamWr.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\ZToolbar.StockBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{1E1B286C-88FF-11D2-8D96-D7ACAC95951F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{244B730E-D899-4E38-9428-03D1143242E0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{31E956BF-8CA9-4D75-B534-7EBC79770002}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{661173EE-FA31-4769-97D4-B556B5D09BDA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{6E9E448E-B195-4627-953C-5377FA9BBA36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{77A7D7AB-576A-4B90-B4EE-909093C3BC69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{7885264B-8B30-46EB-8361-ECA766800258}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\TypeLib\{84C94803-B5EC-4491-B2BE-7B113E013B77}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\typelib\{982392f9-9c65-48b4-b667-3459c46630d1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\typelib\{B82C3D8C-F764-4B4E-8272-DC1185CE12FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\typelib\{C1A4C0C9-DBD0-493A-93F8-0B05EDC96224}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CLASSES_ROOT\typelib\{f61d1ce1-5199-4b57-b59e-c6819ea92f3b}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\]>>cleanup.reg
echo "ColorTable19"=->>cleanup.reg
echo "ColorTable20"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Control Panel\Colors]>>cleanup.reg
echo "Background"="0 78 152">>cleanup.reg
echo "WallpaperStyle"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Control Panel\Desktop]>>cleanup.reg
echo "Wallpaper"=->>cleanup.reg
echo "WallpaperStyle"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{05a91164-3c96-47d6-aa74-2c855791b2d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{0BC9BC01-54D4-4CCE-2B7D-955164314CD4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{0c7416f0-dd23-420f-97f5-aae352ea2bf1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{0ffdaffc-d80d-47bf-b9b0-895ea240f4de}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{1C3B31AE-FD16-D2CE-43FF-DC4CD5C1BC5E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{203B1C4D9-BC71-8916-38AD-9DEA5D213614}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{23f9d371-0bd6-41ab-a00b-a1f9342d6390}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{24c60b9b-26b5-4201-9f7a-fb9219356ae9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{27150f81-0877-42e9-af13-55e5a3439a26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{315f73fc-a7b1-49e6-a3c4-cc00cf8a3fdb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{336ec37f-54bf-4f13-8237-03f64fa591e7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{35a88e51-b53d-43e9-b8a7-75d4c31b4676}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{3e4155b8-5a4a-4e95-83b2-ab032da9acbc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{3F245C2A-1558-3CCA-04A8-7AA23B60E40F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{429F4BB8-7BF7-4152-8011-3C6F9EB7E892}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{4F141CBA-1457-6CCA-03A7-7AA21B61EA0F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{55059d4f-a1ac-4837-ae07-4859101f598d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{5aaf6542-f4ba-4df4-873d-4902ecbe794c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{5bc82bdb-bc03-4671-9a78-3ef2b68449de}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{62eb0924-19d2-4226-b4b9-8ad1f70904c1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{64ba30a2-811a-4597-b0af-d551128be340}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{6af69c4d-420a-4c95-b34f-e4635f84f53b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{6c69e319-0d03-47da-997a-36586cbc53b3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{70fbd528-2d3c-4a00-9b8c-bbf441e534be}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{7916f057-223f-4612-ac84-e882cbe043d4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{89aef01d-d237-49c7-84dc-4e1904c1fd31}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{8dc1f789-e073-4363-b40d-07376bc5ecc5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{8e99f990-b75a-4568-b3c8-24cbc8cbbfc1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{9952355f-fefb-4764-bcd7-a993d03dd7e2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{9ae613a2-a13b-4379-8d0e-86a1a78476ec}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{a0aa3e4b-31cb-4ea2-9049-22b7f5b65edb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{a0c51615-738a-4542-801a-5af61614e182}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{A1D9D3F0-8C2A-9A1D-A376-2CACFB10AB72}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{a2cd90b5-e5a2-4aac-a504-c964a6d499df}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{A2D9D3F0-8C2A-2A1D-A376-1BECFB10AB72}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{a566f298-05a6-4b3d-b672-da7c27316430}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{AC1B4DA2-12FA-31F2-1A7D-CD2B14E6AD4E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{af3fd9a8-1287-4159-9212-9a5b4494af70}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{aea3d2df-2b2c-4d7b-81a0-d975c6dc088e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{aeabe83d-672b-4717-9154-45bd6283c610}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{C1A2FDA2-1A5B-2A8F-F3A2-B22DA1A3C41D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{C1A2FDA2-2A5B-2C8A-F2A2-BA2DB3A2C31C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{c3786a8d-6426-4c29-a23f-f36e47b31e0c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{C9FA1DC9-1FB3-C2A8-2F1A-DC1A33E7AF9D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{CA14EE13-ED15-C4A2-17FF-DA4D15C1BC5E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{cbb430e6-5b1b-474a-9d7e-160d4fe74bea}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{ccf982af-f3aa-48c4-97c4-ecdea4bd3fc3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{CD5E2AC9-25CE-A1C5-D1E2-DC6B28A6ED5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{D1A2E7CD-F5C1-21A8-CA2C-13D0AC72D19D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{D81E2FC4-B0A2-11D3-21AC-07C04C21A18A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{e04408db-4812-4478-8d4d-e46edcffd3b6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Classes\CLSID\{e5b1e382-817e-4b74-8a96-ec78751e6acf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{E802FFFF-8E58-4d2c-A435-8BEEFB10AB77}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{EA26CE12-DE64-A1C5-9A4F-FC1A64E6AC2E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{E2CA7CD1-1AD9-F1C4-3D2A-DC1A33E7AF9D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{ed39ecef-902e-4ed1-8434-71e8db89e5ca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{F33812FB-F35C-4674-90F6-FD757C419C51}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{f5947202-e9cb-4a72-88e7-22f2cbd2b124}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{f85e05f5-667e-41b0-ab8a-147337a99e65}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Classes\CLSID\{feac45db-84dc-4123-8b0d-4d9408fcf9ea}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\1]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\Main]>>cleanup.reg
echo "Default_Page_URL"=->>cleanup.reg
echo "Default_Search_URL"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo "HomeOldSP"=->>cleanup.reg
echo "Local Page"="%SystemDrive%\\windows\\system32\\blank.htm">>cleanup.reg
echo "Search Bar"=->>cleanup.reg
echo "Search Page"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo "Start Page"="http://www.microsoft.com/isapi/redir.dll?prd=ie&pver=6&ar=msnhome">>cleanup.reg
echo "Use Custom Search URL"=dword:00000000>>cleanup.reg
echo "Use Search Asst"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Search]>>cleanup.reg
echo "SearchAssistant"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\SearchUrl]>>cleanup.reg
echo ""="http://home.microsoft.com/access/autosearch.asp?p=%%s">>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar\WebBrowser]>>cleanup.reg
echo "{736B5468-BDAD-41BE-92D0-22AE2DDF7BCB}"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\IPCheck]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Office\Outlook\Addins\Ad-Protect.Addin.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\st3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\style2]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\style3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\style32]>>cleanup.reg
echo.>>cleanup.reg
REM echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Ext\Stats\{72267f6a-a6f9-11d0-bc94-00c04fb67863}]>>cleanup.reg
REM echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{4DA4616D-7E6E-4FD9-A2D5-B6C535733E22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{736B5468-BDAD-41BE-92D0-22AE2DDF7BCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Ext\Stats\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\ActiveDesktop]>>cleanup.reg
echo "NoChangingWallPaper"=->>cleanup.reg
echo "NoComponents"=->>cleanup.reg
echo "NoAddingComponents"=->>cleanup.reg
echo "NoDeletingComponents"=->>cleanup.reg
echo "NoEditingComponents"=->>cleanup.reg
echo "NoHTMLWallpaper"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]>>cleanup.reg
echo "NoControlPanel"=->>cleanup.reg
echo "NoViewContextMenu"=->>cleanup.reg
echo "NoSaveSettings"=->>cleanup.reg
echo "NoActiveDesktopChanges"=->>cleanup.reg
echo "ForceActiveDesktopOn"=->>cleanup.reg
echo "NoActiveDesktop"=->>cleanup.reg
echo "NoThemesTab"=->>cleanup.reg
echo "NoWindowsUpdate"=->>cleanup.reg
echo "ClassicShell"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]>>cleanup.reg
echo "NoDispAppearancePage"=->>cleanup.reg
echo "Wallpaper"=->>cleanup.reg
echo "WallpaperStyle"=->>cleanup.reg
echo "NoDispBackgroundPage"=->>cleanup.reg
echo "NoDispCpl"=->>cleanup.reg
echo "NoDispScrSavPage"=->>cleanup.reg
echo "NoDispSettingsPage"=->>cleanup.reg
echo "NoVisualStyleChoice"=->>cleanup.reg
echo "NoColorChoice"=->>cleanup.reg
echo "NoSizeChoice"=->>cleanup.reg
echo "SetVisualStyle"=->>cleanup.reg
echo "DisableTaskMgr"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]>>cleanup.reg
echo "0mcamcap"=->>cleanup.reg
echo "977efcdb.exe"=->>cleanup.reg
echo "aupd"=->>cleanup.reg
echo "autoload"=->>cleanup.reg
echo "autorun"=->>cleanup.reg
echo "Brave-Sentry"=->>cleanup.reg
echo "BraveSentry"=->>cleanup.reg
echo "bxproxy"=->>cleanup.reg
echo "CU1"=->>cleanup.reg
echo "CU2"=->>cleanup.reg
echo "ctpmon"=->>cleanup.reg
echo "ieengine"=->>cleanup.reg
echo "Intel system tool"=->>cleanup.reg
echo "Key"=->>cleanup.reg
echo "mquu"=->>cleanup.reg
echo "multitran"=->>cleanup.reg
echo "muwq"=->>cleanup.reg
echo "netfilt4"=->>cleanup.reg
echo "pro"=->>cleanup.reg
echo "Paytime"=->>cleanup.reg
echo "PestCapture"=->>cleanup.reg
echo "PestTrap"=->>cleanup.reg
echo "pigglett"=->>cleanup.reg
echo "qofk"=->>cleanup.reg
echo "qwum"=->>cleanup.reg
echo "services32"=->>cleanup.reg
echo "SNInstall"=->>cleanup.reg
echo "Spoolsv"=->>cleanup.reg
echo "SpyMarshal"=->>cleanup.reg
echo "SpySheriff"=->>cleanup.reg
echo "SpyKiller"=->>cleanup.reg
echo "System"=->>cleanup.reg
echo "taskdir"=->>cleanup.reg
echo "tetriz3"=->>cleanup.reg
echo "The Spy Guard"=->>cleanup.reg
echo "The Spy Guard Monitor"=->>cleanup.reg
echo "truetype"=->>cleanup.reg
echo "Trust Cleaner"=->>cleanup.reg
echo "TrustIn Popups"=->>cleanup.reg
echo "value"=->>cleanup.reg
echo "WinAVX"=->>cleanup.reg
echo "WindowsFY"=->>cleanup.reg
echo "WindowsFZ"=->>cleanup.reg
echo "WindowsUpdateNT"=->>cleanup.reg
echo "Windows installer"=->>cleanup.reg
echo "Windows update loader"=->>cleanup.reg
echo "WinMedia"=->>cleanup.reg
echo "xp_system"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]>>cleanup.reg
echo "Srv32 spool service"=->>cleanup.reg
echo "Svr32 spool service"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce\Srv32 spool service]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\1das]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell\dnl7]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\AdLoader]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Trace7]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "run"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\ADV]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Brave-Sentry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\BraveSentry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\eMedia Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\DirectVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\FreeVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\HQ Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\HQCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\HQvideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\HQVideoCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Install]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\IntCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Internet Security]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Media-Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\MovieBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\MovieCommander]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PCODEC]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PestCapture]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PestTrap]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PornMag Pass]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PornoPlayer]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\PrivateVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Protection Tools]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Safety Bar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SiteEntry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SiteTicket]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SpyMarshal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SpySheriff]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SpySoldier]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SpywareKnight]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\SNO2]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\TheSpyGuard]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Trust Cleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\TrustIn]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\Video iCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\VideoAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\VideoBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\WinRAR SFX]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\X Password Manager]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\XXXAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\SOFTWARE\ZipCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\.key]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\asgp32.ASGP]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\ad-protect.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\Cerberus.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\DailyToolbar.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\IEControl.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\WStart.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\MyBHOImpl.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\MalwareWipe.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\spamdet.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\SpyAxe.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\SpywareStrike.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\ToolBarNotifier.EXE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\WStart.DLL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{490E7D57-1FC1-4ea6-BD52-483B7271B223}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{6B677F1F-F86C-4757-BF24-7D865EF20639}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{70F17C8C-1744-41B6-9D07-575DB448DCC5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{77a7d7ab-576a-4b90-b4ee-909093c3bc69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{78364D99-A640-4ddf-B91A-67EFF8373045}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{7C11C36C-2AE0-4489-9B09-A6129139D52D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\{951B3138-AE8E-4676-A05A-250A5F111631}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\{9DA1990B-9BCA-4c80-AEFB-11A40FA849F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\{C628512D-A058-4BD4-B47B-B036F45FA02B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\AppID\{F6BDB4E5-D6AA-4D1F-8B67-BCB0F2246E21}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{035C1836-0D78-DABC-F4A7-D5D0517EE1F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{008E3200-28EB-463b-9B58-75C23D80911A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{01775F16-B10C-B483-63E3-AFCED5DCDEF2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{01b55afa-f451-474b-9e91-c35b24d02641}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{01d8d081-0f76-4ab5-b5e4-9b23a709670e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{020B1227-417D-4682-9AC3-61F43CB5B6B1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{03413bf7-e34c-445b-bfc0-a2b127255871}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{052b12f7-86fa-4921-8482-26c42316b522}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{06506B3A-857D-431f-BE0B-038B1EC386B3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{06CB2908-DD90-4293-8C98-9ABA1025F163}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{06fe8138-6c67-484f-ab1f-42abddd2cbb6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{07a582e8-bae3-457d-9d29-2048de45a369}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{07A78AEA-4A54-4967-9A60-4B68592D30C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{081669BA-EFC4-48C2-A8F4-874052D02553}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0878F045-B52E-46B3-9724-D3AE69D50067}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0B847A1A-A872-95FC-8E22-F8B4AE044657}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0B9B7B2E-30E3-4C5D-AD2C-C38724979B4B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0bad5052-665d-40d4-a9bd-a2891eaafb42}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0BFF94F7-9748-43d1-BAC4-D963351B63E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0C580891-CA9D-4619-BDC9-85378EB65931}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0c5a0fff-9164-493b-93e0-17446374e0a0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0CB66BA8-5E1F-4963-93D1-E1D6B78FE9A2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0D045BAA-4BD3-4C94-BE8B-21536BD6BD9F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0D0FAB5C-2BE4-4126-A28E-828FEBCE1E55}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0D4C7057-EAD2-44C6-AD18-9092905F28F1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0d9eb558-0666-479e-868a-21b1d1a53bd1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0e4e5110-a772-4c4a-a7dc-137fe10abd6e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0EA04667-E53B-4E81-8E7C-DE2CA114CBD6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0F25878F-F8AE-5D5D-2BB7-31B5F803290D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{0F7E55FC-6D46-491C-922B-4EBC6636B561}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{100B21CD-3B97-44FB-B1C0-EA6249E482E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{11853d5f-f894-4cc7-bbc3-fc7a9dcfd896}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{125494B2-ACAD-414c-98B9-452F3EF7703A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{145E6FB1-1256-44ED-A336-8BBA43373BE6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{150EA8E7-A97C-4816-AD02-4865EEF8C5FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1559e6c1-7e5e-4461-9457-6a2dea85eb9f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{15DC7116-E58E-4395-A45A-A1C99B17C030}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{16789285-C094-4aa6-88B9-2BB9DC13A485}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{168cf174-6dab-461c-a761-a7adfa5a5719}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{17E02586-A91D-4A9D-A74E-187B05DFFE6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{184746EC-9E9D-4C7D-B9E7-9039EBD801A9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{18668683-731c-48fa-b1b9-ad013748fb00}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{18a8f76b-804b-4981-b87c-460699971a4b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{18c3fa26-192e-4c17-9c0f-76dc9b56c0c2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{192c5b4a-3efd-40c7-9f99-c472deb8efc0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{196B9CB5-4C83-46F7-9B06-9672ECD9D99B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1a01a98c-4f25-42e1-971a-185cf63569b2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1a1ddc19-5893-43ab-a73f-f41a0f34d115}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1a29a79a-b9c8-44a9-bedf-7fadde3cf33f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1b17f1db-790e-4d42-8e0c-d4d19123ee5b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1B68470C-2DEF-493B-8A4A-8E2D81BE4EA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1BD98DFD-2DA9-4C54-85D7-BE03A0F9C487}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1BE8C6A5-A75F-4e33-89C3-18CC58A0B952}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1c6fd4e6-49ce-4178-875b-df70eac260c5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1C94EA51-3800-4F08-B5DC-A5B67823FFEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1ca480cd-c0e5-4548-874e-b85b17905b3a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1CA7DBAF-B066-4554-977E-5CEBB7FA59C8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1cb82d6d-f9a3-40c4-8ad5-6d7ea00ed6ad}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1CBC7F79-C21A-4468-8116-38E8AD875816}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1D27320E-2DA2-41E2-A103-B5FD9D6A798B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1da7dbe8-c51b-4ae4-bc6e-21863349b0b4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1F6FE2C2-6040-4645-9053-7F689AFFE176}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1F86727C-57A3-410E-AB91-176730DAEB45}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1FC4ADE1-15D3-057E-81D5-DD934DE6542E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{1FC80E00-41B0-4F74-BC16-2C83ED49CAC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{202a961f-23ae-42b1-9505-ffe3c818d717}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{208D7BCC-9857-4C9E-823B-D04E72490A67}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{20A3D913-30EF-4e69-B3F7-93B3F1FB9D5C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{20D1AF34-6E19-42D8-AF9F-BDFBE45C2454}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{210b4043-35ca-4aa0-8796-191f9663dfb3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{21E132C9-1F98-4151-BDAD-7D9B49C60A8E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{234FF2FC-BB16-4A7C-AC09-A833CB3D56FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{23F7AD29-F51A-4BA1-BE70-143B1CB25BD1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{24E27EA9-FCF3-444F-BD80-20543BA5D946}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2513A321-CB50-4C5F-91C5-80342AFACFB1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{25b7d2fd-4f71-46d1-801a-7de323e4ec82}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{265C2AF8-C94C-4AFF-B2B6-340D3982562C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{27150f81-0877-42e9-af13-55e5a3439a26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2724E072-19D0-486d-A819-9D914191AE92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{27321538-5739-4aa1-b84c-7d18e4383f1f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{274c0420-ebe0-4f1d-b473-edd1aa9b85dd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{27A7FB75-FB40-4f94-BCF6-4945BCC8BAAF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{27CF2E73-9839-404B-85A8-8FB7EE27474C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2810fba5-55ec-4bee-8263-0e2fa5883768}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{283A0EE3-2CC1-45AB-8207-B1D7B69C7F83}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{29C5A3B6-9A8D-4FA0-B5AD-3E20F4AA5C00}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{29D3E589-2DCC-699E-1A0F-61AF30BAA3A4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2acf3add-34a1-4f2f-99cf-cc69785d1e90}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2bb2b2d6-8b86-412e-acca-d656a8979b3e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2be26361-58a2-4836-be57-b838f02fec3f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2C014816-5BD4-4166-85EA-62FE05E517C3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2C1CD3D7-86AC-4068-93BC-A02304BB8C34}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2C59D5EC-6B91-4896-BD6F-5F121D87A7F8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2F34E0E0-F0BB-477F-AFB8-509262FA0AD1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{2fdde73c-273e-4e55-84dc-455de06e4866}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{31615D5C-5126-448A-818A-A7CDFEE85A9B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{31EE3286-D785-4E3F-95FC-51D00FDABC01}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{330A77C2-C15A-43B5-055C-B4E35EAED279}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{33b8d257-07f6-4c06-8605-94bc21728635}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{34E6F97C-34E0-4CE5-B92B-F83634BEDC01}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{35ED274E-3F42-4A78-BBDC-3B7D73E85578}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{366B2151-E1C7-44a3-86A3-E5686C2A3D2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{36ADA89D-2440-4DC4-820A-3A05E8630935}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3820350F-5092-2ADD-8A4C-8DE2C609FAE5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3828496C-9E4F-4278-8C85-0DF3A3CB41EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3946A33D-BBC6-4792-A383-D855E0F76D91}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{39d23dba-a362-4803-b26c-5f2cb46e669b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{39f25b12-74ff-4079-a51f-1d70f5b08b84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3afa7405-68e8-4bdb-920e-0d506f552826}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3baa1ad8-ee49-4772-bf0b-f55083e0f7aa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3bb84870-e757-4fb1-a195-e2f7d3d95e40}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3c767c6b-602d-4b9b-829d-a3dc5b2d89dd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3D00A39C-655B-428b-AEB2-2FBA03DCC49C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3D74D140-F780-4AE3-8D6D-F8DC39107213}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3dab4d3e-1d45-406e-9cda-25227a7a2633}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3DDBC9CF-30B8-8733-7445-754FC2F405F2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3E9B951E-6F72-431B-82CF-4A9FBF2F53BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{3F245C2A-1558-3CCA-04A8-7AA23B60E40F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{408F660A-9465-44a3-B557-8709DFD992BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{40dcff6e-af8d-4183-8ebe-a82270ac449e]}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4118A625-1B64-4ED1-A2E9-76DEC529D2D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{41D7BB0A-64E0-4AB2-BD0B-69EA78E462E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{41eaa909-24be-4d24-877f-076a0576a6fd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4233ac08-a2c4-4742-a0b4-83719613d62c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{429F4BB8-7BF7-4152-8011-3C6F9EB7E892}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{44d22a64-2399-4edf-8b32-f2c729c1e8a7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{44e670f2-d57b-4815-a576-955d17dbbf2d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{45C2FDBE-1D46-B98E-F9A9-9D44B93A9D52}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4688f900-0d0c-4788-b297-59cc10e70ccc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{46f5a8b0-0b73-48c5-9e40-3c443a43c161}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4734044c-7427-43d8-adbe-df942e52bef2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{477D1353-BA0E-43CC-8F40-DEA6BF81ADEE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{479fd0cf-5be9-4c63-8cda-b6d371c67bd5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{47C54F02-1B28-45F1-AE46-B5CDFB6E7926}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4823B0A6-EAB4-4577-9792-C59231379CEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{49443D6E-CE4E-47A9-8DEB-F5774CE14984}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{49CF52D7-8D58-4E22-A874-AAD721F5B523}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{49f29a27-2451-4314-a480-8d2481ce6c81}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4a9e875b-d032-45e4-8294-789fe3be5b19}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4AA55E8C-2C19-4F3A-91EC-43B6DF937C4F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4d993022-0899-4599-b4b6-0f887d0802e6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4da4616d-7e6e-4fd9-a2d5-b6c535733e22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4eb548e5-1fb1-4f83-b49f-a3101fe5fc97}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4f5f16ef-af9d-4fe6-8410-f0670b58979d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4F93062D-7BDA-48BE-AEB6-88AF2B1FE2D4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4fbbdfd6-2ca9-4bba-93e4-aadf75321bca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{4fc003c3-87a0-489c-85cd-878246eb2d18}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{52034AD2-914C-4634-B375-9299631E5525}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5206DF89-97FC-41AD-BAE3-993E87053A99}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5321E378-FFAD-4999-8C62-03CA8155F0B3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{53525A6C-3774-4b47-B317-BC7DFE4FC7ED}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{547aaa89-7e6b-42b4-b112-a64955f86a2a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5574E139-F59C-4bee-9A61-150B0D3A16C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5753791b-f607-48ca-814e-91c14d081f9e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5839511e-ec1b-4f91-ace3-fb88e52f5239}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{588599f4-de26-4c28-ba14-f4eb17e33481}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5889f7b0-3277-4266-b4bd-1bf2d394aee6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{58E68548-42E2-479D-A9E0-86D9F2EAF02E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{58F9B276-E1CC-458e-8159-21CBC021874B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{59080fb1-a43e-4059-a155-18b1eac7352c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{590FFB84-6A29-4797-9C0E-B15DF2C4CDCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{596e4935-4d3b-4a3c-842d-2efd1b3de598}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5B55C4E3-C179-BA0B-B4FD-F2DB862D6202}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5bf53d50-b1ec-47b6-a00a-0bd32baeb7ef}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5c4f2cbc-f32d-4a03-9812-86f39379811b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5d4831e0-5a7c-4a46-afd5-a79ab8ce36c2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5DDE5591-A8AB-4897-93EF-1E4E943F85A7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5DEB9A24-19E0-49e6-A6B2-110BC3E1062A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5E1ACE2A-8638-4775-8AA9-5C187AD40A82}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5E5A79A6-C67B-444E-BE58-BD0ACEFCDA07}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5E8FA924-DEF0-4E71-8A82-A11CA0C1413B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5f4c3d09-b3b9-4f88-aa82-31332fee1c08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5F6BBD8A-18CF-4d55-8B4C-C9B4C9328DFE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5F90B57B-3F17-4D9B-8909-1A32AFD6EC0C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{5f938c17-fbc7-4a3c-8526-85e5b1a1f762}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6076d2b1-634c-4685-843b-f826045ea5dc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{60e2e76b-60e2e76b-60e2e76b-60e2e76b-60e2e76b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{61877300-54DB-4746-BA42-03E03A2B269C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{629C4FE9-B627-4905-AF5B-AD652BB1B5C5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{62E2E094-F989-48C6-B947-6E79DA2294F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{634be415-da12-496b-b89e-329b73c4807f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6570b782-1a41-4053-b2c9-12c7fcf0d84d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{659F78EA-6FF2-40f8-8EA3-06F7418A209E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6625fc6c-731c-443a-b3f0-2c8c520a1766}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{663DE629-4FFD-A944-6F0A-64F98E925B62}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{66BD9D4C-FAF3-38B9-F43F-169E15DB1A3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{67196B3E-55A0-49DE-BA11-66F07DF804DB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{67270207-b9ee-4d26-9270-860fdb060ca1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{673BA504-3DDA-4851-8B3C-37AE54E2D688}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{67982BB7-0F95-44C5-92DC-E3AF3DC19D6D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{686a161d-5bd1-4999-8832-6393f41e564c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{68c7f143-f9ea-4ee0-a06a-ad4ff3dbe8c3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6A66CC28-F0A2-FCBC-D3D5-1EA3001ED26A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6AB7158B-4BFF-4160-AD7D-4D622DF548CF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6ad686b9-ab56-4ebc-a804-9f70b55b4577}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6f396a67-f473-48c9-9950-636ce17e584e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6F4DB301-0698-4AF4-A8A2-473996DF425A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6e603242-2ef7-4f20-8d8c-ede065595a9b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{6e886df7-914d-48f0-86b3-a5cf24385361}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{70305bc2-b289-4209-a344-be21f22bc930}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{70d17a5f-ef27-4295-90f5-20ad6f24834f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{716002db-288c-4bf0-80cd-a467e78d8b55}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7198F8DA-012C-4DB4-ABD8-923A54C87900}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{724510C3-F3C8-4FB7-879A-D99F29008A2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7288C0BD-7F2F-4229-A0C4-3C90A6E2A881}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{735e980d-45d2-4777-af82-9923d3c8d3ae}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{736B5468-BDAD-41BE-92D0-22AE2DDF7BCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{74a49269-9779-48b4-a0e6-3a5af2a3ade6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7507739F-BC2E-4DC3-B233-816783C25DC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{755bbd1a-aa59-456c-afeb-b4c42c4dcb6f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7616A7F7-DF99-432f-870D-4AFEA0D079F4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7702C521-76AE-42C0-A181-3B5A96C2EEF7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{77701e16-9bfe-4b63-a5b4-7bd156758a37}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{78364D99-A640-4ddf-B91A-67EFF8373045}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{784aa380-13f2-422e-8540-f2280f1dd4f1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7A8F5B7A-A74F-495E-8A33-DF6226D2BAD8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7A932ED2-1737-4AB8-B84D-C71779958551}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7ADDA344-1D36-4446-9F4B-B2351FB19EFD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7AF59C20-A1D8-4C1C-927A-99DD9F2A9E0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7b1eeccd-0a6d-4ad5-8ac1-4af5722b3885}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7b4d79df-9ef0-429d-a0e9-d9b138c6a53b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7be183d2-a42d-4915-bf60-ec86fbf002cf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7caf96a2-c556-460a-988e-76fc7895d284}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7D98221E-AF8F-4D29-8BB1-1DFABC288173}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7EB22F36-2CCD-4003-89EE-6CF40EBC4282}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7fa55359-7223-410f-bc82-efb3e3ded07f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{7fcf04b6-6354-47ef-b45e-a48268e92757}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8068bf35-3711-4dce-a2f3-f008cecfe894}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{80bb7465-a638-43b5-9827-8e8fe38dfcc1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{80ced3d6-ece9-48ba-8df8-2503d8d87c2b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{82847700-FE61-46A3-B3EE-761A1E312ACA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{82C9202F-07E7-C95D-0A61-7FCBB3DC4E2A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8333C319-0669-4893-A418-F56D9249FCA6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{84938242-5C5B-4A55-B6B9-A1507543B418}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8578D751-1FD7-4916-8843-907DAEFC40E0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{85E659D3-E110-4CE7-9D99-416FD61A1720}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{860c2f6b-ca82-4282-9187-beccbb66f0af}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8670ee50-01f9-47da-ac1e-cf8549e9e521}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{873eb32d-ae1a-4183-89bd-45a77f761be4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{874443fe-aa33-4ebf-a6ac-73208787e62d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{893FAD3A-931E-4E53-B515-B1426D63799B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{89e4aaba-3b21-49b3-b922-8ca35193c68e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8aa7a4d2-73c7-4fca-bef7-7923e38a3b1c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8aed5df3-6e0b-4930-b1a5-f8aa8d757497}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8bbe40fd-0416-4c3f-80ea-0c7ad5fb1aab}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8BD7DB09-1199-41E2-BE9D-AB1D29DD0C3E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8bf5b8fc-11cb-409f-8c91-4d4ca04a1b6d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8C2A05C5-780F-4A2E-AE1C-FB8181F860E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8C56B6CE-C53F-44c4-9BDC-A9BC1711D05A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8d83b16e-0de1-452b-ac52-96ec0b34aa4b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8d8c2387-7f80-4022-9be6-43630a969558}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8DCA6B3D-1FCA-4500-B210-76119BB5C69E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8E6CFDFE-79A8-421C-B854-04081690CE6B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{8EE6BF73-B370-4d13-9126-EB0071178F2E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9114249C-F5E5-36A3-4480-169B869E0556}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{93ac7c30-3878-4eaa-9420-7977285df5b1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{94524218-9af3-4643-9687-cbc2880e54da}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{951a98d0-dad6-4a77-8280-a494279a884b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{96E6B1C3-B5D0-89CC-4909-92D85A48B1A0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{96ebbe6a-2864-4345-b32b-26ee9be524b5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9746B450-6064-4EC8-9480-72A289AA2237}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{97F56E12-C706-4aeb-9FFB-133C05EE5D38}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9896231A-C487-43A5-8369-6EC9B0A96CC0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{98ca7898-6029-41ab-8f67-ea4f5e1afc22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9a4b860b-b18e-4afe-9b26-2a19268eb6be}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9af8f31b-b778-4413-b8ed-ae63a62e1f7d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9BB7E700-4E48-476d-B75C-6F47606BE988}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9c0c879c-9091-45d1-807f-2adc37d7d6d6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9C5875B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9cc1c589-4b22-4dae-8e12-4c3b5fa12b3f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9d635a36-6b3c-4146-8625-f3aaf507bbf8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9d6fac42-a7be-4702-87ef-75d8dc14249e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9DA04BBD-71BB-020C-436E-42FECBB98F05}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9DFD0A51-6176-5770-217C-A5BCD7E6F3E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9EAC0102-5E61-2312-BC2D-4D54434D5443}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9F230924-E275-4FD2-BC99-5C30362332E3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9FA1AA9E-7ECF-4f3b-AC23-7F09E01298E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{9ff419a8-1748-4ca7-99df-d269465b0e8b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A0D06AA3-499B-4156-9FFD-0BE236F0D4E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A1770FD6-A7CB-44DA-AD2C-692D2A2B521B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{a19ef336-01d4-48e6-926a-fe7e1c747aed}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{a1c16871-b797-4ec7-bbee-83852379c390}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{a2595f37-48d0-46a1-9b51-478591a97764}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A2C8F6B1-7C2A-3D1C-A3C6-A1FDA113B43F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{a4029063-4fe3-422c-ac72-12905c09642a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A40D9D65-5C09-421A-AFF8-2160D7ABD4E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{a43385f0-7113-496d-96d7-b9b550e3fcca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A5845A98-EBDA-4670-9DE6-5201C506E741}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A5C70510-5A01-B2A5-CF84-D6DC13859967}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A646CE7E-951E-44d1-B93C-F7136DA41E58}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A6790AA5-C6C7-4BCF-A46D-0FDAC4EA90EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A6ACAE64-F798-4930-AD86-BD3FB32038DB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{A717DBE3-D78D-4aa7-BDCF-2CC06B36371B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{aa6d4f53-4c8d-4549-84d2-02d584acc4e9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ab340860-fd81-4a65-b345-82eb77a66b5e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ABCDECF0-4B15-11D1-ABED-709549C10000}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{abef791f-947e-4cdf-83c3-e72a240afb67}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ae18da4e-be15-4925-81bb-890c04af0200}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{aed6f6a3-183c-488d-9f90-23db99f56e7f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{AEECBFDA-12FA-4881-BDCE-8C3E1CE4B344}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{af4fd984-a939-4c32-82b2-8bae7abe9aec}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{af8bca8b-a9f1-471d-bdcd-caa14be2bdd9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ACC647EE-991A-4811-B420-F063F50CDDC1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b0398eca-0bcd-4645-8261-5e9dc70248d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B0CB769E-2057-5D37-EA39-F7F57583005F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b0ded443-5e68-4001-a81b-0a0001621ab8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b166be07-30a4-4d38-b781-44528a630706}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b23dc537-3e13-44c7-bf67-d8405eb377f7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b28b396b-b9e8-44f5-aa04-ed4f383d79ad}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b292ec9f-a074-4115-8342-1f459702d8d2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B53455DB-5527-4041-AC41-F86E6947AA47}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B599C57E-113A-4488-A5E9-BC552C4F1152}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b59f3ba4-98da-4b5f-8a2d-7b56fb11140b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B5D099E3-B033-4DB3-A7A6-465859B7A477}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B6610F1D-DA77-42c4-8300-721D9DA9D70B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B72549CE-5644-4116-B8A4-A2B042321EC4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B75F75B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{b8b3850e-a22e-43ab-a15e-63f6e47db7e6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B8C5186E-EC37-4889-9C2E-F73649FFB7BB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{B8ECE6B4-3734-4403-A857-B90310B81B0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{BA12780E-B91E-41A7-A51A-528CBD64284E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{BABA5BDB-4EFF-48DB-B443-679651D37128}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{bb720bab-2f75-456b-a850-04d77b20f6b8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{BBBD3E11-D201-46C9-8471-091D33159287}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{bd0fc212-0a36-4232-83cc-2063fb9282e0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{bd1299cd-b98a-4ee1-9ae3-d3cb3da41d0d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{bd2948f8-c949-464f-824a-6272608c739e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{bf1ced2c-4b3f-4079-a330-864eda5a4cff}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{BFCBB188-18E3-1DEB-59D5-BACE1CE655A4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C1212066-16A4-F478-E898-BC64A80D4908}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C1A8B6A1-2C81-1C3D-A3C6-A1CCDB10B47F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C1DF2728-8510-0773-96D8-5D0C1F27821B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{c3703265-4671-4858-92a4-cba6a7b3bb45}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C3E7E8D3-0B97-4FF3-B1BD-DAB4B04CD697}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C42E5047-FCAD-4B62-A4B0-1052C76A9E1B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{c4da240e-7525-404a-b366-f50a422376d8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C5991634-0185-4B0D-B4F9-6C45597962B7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C5A40FCE-0A0F-40CA-985E-661C28B5B431}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C5B70256-5B08-4056-B84E-C6CE084967F5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C65C3770-598C-A2FD-DBAA-C7A45C50338E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{c704547b-26c0-4222-a034-81653c07b494}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C7EDAB2E-D7F9-11D8-BA48-C79B0C409D70}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{C7F22879-7151-4C71-8C50-9557AFDA66C6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{c82e1789-207a-4b8a-806f-76b62dfac2a2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CA5E7959-60B5-47B7-80AC-1606309733F3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CBCACA58-1AEE-4600-8CF0-E8B30BFF1535}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CBE4B748-08F9-44DB-8FB1-9AD25979DA35}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CC18AE76-7E65-4258-A193-9EA0C52DA6B8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{cc824bb2-d4b3-41f1-bba0-f8240e4cc495}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CCFB2B33-F4DB-B63D-ABDC-C7384ED93B34}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{cd0e4a1a-dbc2-48f7-9a6a-a41cac20bddc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CDD964C2-FB78-4A74-BB1E-1CB1FCB72018}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CDE8EAB9-CEF3-4885-B12F-26960A25C800}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{cea2e5cd-e849-427b-80f0-59298caef1c4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{CEABF027-6CDC-4D47-ADF6-AC5D065826A6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ceca6f2b-247b-4ece-9b7a-d0135c8036fc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ced7d5f3-74cc-4c2f-8d60-62ebcdda0a22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{cfda6372-043c-48d2-ba3c-7bfe1cf71854}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D06E2EAE-1922-4A0B-6A7C-8D9E3DE0E708}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{d1ac752e-883f-4ed8-8828-b618c3a72152}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{d1e5ca97-235e-4ff0-9b92-7543c9d61ff4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D25F7446-4D36-4203-9EA5-5422B26FA9D0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D2C1986A-FBEC-4472-AABF-6D42F08DBC8E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D34F5D71-99E4-4D96-91CA-F4104F69B8AE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D56A1203-1452-EBA1-7294-EE3377770000}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D5EFDB0E-4F51-414F-B740-54A5C87A8957}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D61D7E1A-6613-49CA-B6F9-51DB248E209D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D6D64CDF-0363-4261-B723-29A3AF365E1D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D6ECDA42-AD6F-F8C3-03EA-5834841ADEC3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{d7058baa-49a4-40b7-95c2-eec95cdf51f3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D76F06D4-1659-482d-BCB2-3F731BFE0941}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D7ABE914-B8CF-4602-9145-6BDAAEDA21AA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{d7bdd42a-7e69-4bb8-aac3-d76ff65a3aa3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D7BF3304-138B-4DD5-86EE-491BB6A2286C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{D7FFD784-5276-42D1-887B-00267870A4C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{da3b49f6-8c54-4429-a275-21a86dcca413}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{da7ff3f8-08be-4cac-bc00-94d91c6ae7f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{d869742a-e5d2-4624-96c7-aae26170665e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{DBE5BEE8-F032-11DB-826A-C4BB56D89593}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{DF4E7A0C-E233-4906-B4C1-A404356541FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{df8c3aed-b58e-4bcb-96b3-aa1b7bbdbbd4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{dfa61db1-388e-4c87-8d56-540fa229bcb4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e0103cd4-d1ce-411a-b75b-4fec072867f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E0AA0493-C410-4CBD-B1DB-1723374FA8E0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E12AAACF-8AF2-4C31-BA94-E3787B44F90E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e1d3b05d-4dd9-468d-982e-c342f05436e5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E26CEADA-67B0-4543-BE8B-307F00265118}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E479197F-49E5-4E60-9FA2-A71D4C7C2BBC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e4c46558-da01-4637-a85e-f1ccb1c7436a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e51e3ade-ddc4-45d9-9a21-36cf20ea9306}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E52DEDBB-D168-4BDB-B229-C48160800E81}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E5D78BD8-3874-4AA0-9D45-CFB79382C484}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e6adaaf0-79b2-4cf1-a660-50a0b33991a1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E6B4AB50-F423-4EE6-9839-B35DCFCDFA49}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e71aba09-d81a-4876-baa3-df133c1dfc48}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e758745e-b8aa-47ac-a652-6307ff5f3ebf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e7aff349-39e1-4a96-a13d-24983440b44a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{e944d14a-03aa-43e3-9d0e-4f50c4d1b005}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{E99D4D0C-EB54-46AF-B62A-3AA1F31D53E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{EA038DDD-0FE0-41f5-BA60-FC3660529E71}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{eb86b46a-d6db-4478-8f5f-06cb2ebc1b35}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{edbf1bc8-39ab-48eb-a0a9-c75078eb7c8e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ede8bed5-92cf-4482-8f51-a01cd9b3ea37}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ee2975b6-e8d5-405e-8448-8fe9590f6cfb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{EF0D1E98-4FAF-44BD-8ECA-E745820E63DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F06E2ABE-3A50-4079-BE25-FC100D9EAA25}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F0993251-2512-4710-AF6E-0A13EA199D02}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F1FABE79-25FC-46de-8C5A-2C6DB9D64333}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f2efa195-4785-4db1-9316-b48c64bb71da}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F301710A-1204-44C8-A611-E89E58FEFFDA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f31aee4a-1530-4fef-8537-79c6973bff9a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f38b1b2b-4976-46dd-9fe5-60fde72f0b4d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F4CF814F-970F-405D-A42C-0CE06EB97373}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F4E04583-354E-4076-BE7D-ED6A80FD66DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f4d74aaa-a178-4463-846b-b4bc87a024e0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F5BDC469-1EC5-4193-824B-2E209993D183}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f79fd28e-36ee-4989-aa61-9dd8e30a82fa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f7d40011-29bb-43eb-9c97-875ce89e9e36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{F880B4F2-75BF-44EC-B7AA-45EC37448027}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{f8d02387-789a-4c0f-a1d8-8a93f33ee4df}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fa19bd7e-50bc-4203-80ac-c4edc81ca9a3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fa4fbf53-c766-4622-8011-a87a805eebf0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fa55d551-9698-48ac-b639-9b00cf1a6ea0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fbea0445-4c4a-4136-864a-c72a4a182a84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fc7cbb1b-2da6-4e7d-a1ea-bf6705dd0f8c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fde1bd72-ca80-443f-9526-595337b73878}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fe288882-f661-4522-88f3-20cfb7866fa4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fe2d25c1-c1db-4b5e-9390-af1cb5302f32}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{FE6C16C4-16AD-47B6-B250-26AD1829E49A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{fedff4ae-1302-4b8a-bda9-43b9f67b9749}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{FEFEC367-0557-50DA-92D8-EFF9A710070B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Classes\CLSID\{ff170564-36c8-43f7-9100-559e166405cf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{FFF5092F-7172-4018-827B-FA5868FB0478}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Ad-Protect.Addin]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Ad-Protect.Addin.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Ad-Protect.Server]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Ad-Protect.Server.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AlxTB.BHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\adobepnl.ADOBE_PANEL]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ADP.UrlCatcher]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ADP.UrlCatcher.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AVZipEnchancer.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\bandserv.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\bandserv.ToolBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Balloon.Application]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\bhoSearchSpy.IESecPlugin]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Bridge.brdg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\browsers.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\browsers.ToolBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.EngineListener]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.EngineListener.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.Scanner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.Scanner.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.ThreatCollection]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Cerberus.ThreatCollection.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ChangerBHO.ChangerBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ChangerBHO.ChangerBHO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CodecsSoftwarePackage.chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DailyToolbar.IEBand]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DailyToolbar.SysMgr]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\DirectVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\EMediaCodec.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\EMediaCodek.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Backup]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Backup.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.IgnoreList]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.IgnoreList.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Log]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Log.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.LogRecord]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.LogRecord.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Paths]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Paths.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Quarantine]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Quarantine.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.RunAs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.RunAs.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.SearchItem]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.SearchItem.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Threat]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Engine.Threat.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\FreeVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HQCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HQvideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\HQVideoCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\JPEGEncoder.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\IAXObject.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\IEControl.IEExtension]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\IEControl.IEExtension.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\IEToolbar.AffiliateCtl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InetLoader.WeeklyExecuter]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InetLoader.WeeklyExecuter.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\jao.jao]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Media-Codec.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MovieBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MovieCommander]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ms-wordapp]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\msdn32.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\msdn32.ToolBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MSDNS.MSDNSApp]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\MSVPS.MSVPSApp]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\office_pnl.office_panel]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PlayVideoEnchancer.chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PopMenu.Menu]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Popup.HTMLEvent.]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Popup.PopupKiller]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PornoPlayer]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PrivateVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Sb6.StrangeBho]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Sb6.StrangeBho.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SCToolBand.SCToolBandObj]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SCToolBand.SCToolBandObj.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SiteEntry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SiteTicket]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Se_spoof.SpoofBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Se_spoof.SpoofBHO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\spamdet.SpamDetector]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\spamdet.SpamDetector.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Svshostt.arty]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SysMonitor.SysMon]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SysMonitor.SysMon.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ToolBarNotifier.Notifier]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ToolBarNotifier.Notifier.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\url_relpacer.URLResolver]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VAC.Video]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VAXObject.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VB.Server]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VB.Server.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\videoaccessactivex.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VideoAXObject.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VideoBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VPNS.VPNSApp]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\VSEnchancer.Chl]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\winapi32.MyBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\XXXAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{001501E7-C970-4CB1-9740-E055BF3DDFD6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{00628C22-6886-439B-AA2E-3639367F02A0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0065CDBC-2439-4365-A7E7-BF5B853BF49D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0118155F-254E-4899-B4B0-C12A7D27BD43}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{016859C2-97B6-45FC-816B-A3B91BA10A0F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{01AEC716-82E6-4D7D-AAE9-E7A3C77669FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{02313722-BB43-4C84-80A2-7CEDFC3F8560}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0249BEB1-A2AA-45A3-9EC5-95D9C4A40A62}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{02743820-2E7C-42C6-B60C-726D67379EDB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{028800B5-3050-4A25-9D4C-1D765EF44598}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0354A901-C606-4DCC-8EA3-4F3383ECE67C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{03713ADE-819C-43D9-B138-67828D4C0405}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{03F65A7B-6E49-4ACE-848B-4459DDBD3981}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{04DA0CE8-87C6-4379-9CBD-5D6E93C919E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{05436423-E2DA-4307-AEE4-275C2522D4DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{05DDEB15-33E0-4DE3-B7CD-84E2E011D889}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{05F169E6-B9E9-4655-8718-B3390D7F603A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{062BC936-7CE4-421C-944E-BD388EC91C86}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0678CAB9-7825-467E-9310-CDD2DCA855D0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{07F8DED2-2140-400E-86F3-6C6E5AD2B002}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{082DA6AF-F994-4C6C-A2B0-DFC3B3FF540A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A03153E-AE2A-47FE-BBA3-3333C0EEEB86}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A1949AB-8B12-4A6F-9B5D-12D4115CCCEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A3C742D-8A14-4DD6-806C-CAEC606F6F83}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A479D87-72AC-4DCE-A3F1-FDC882390F60}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A8C61AE-9639-4E4D-AF61-25B0CE935EAB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0A8CD4A5-F54F-4EB6-9507-D32E4A8328C5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0B386DB3-239C-41D6-85CB-CA728F31F3FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0B5398C2-D494-426C-A32B-4C27687ABE1B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0B595E3D-27BE-4DA1-A278-CA4D904B5823}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0BBB0424-E98E-4405-9A94-481854765C80}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0BDF8F38-347C-4810-BDA6-2F85C1050B26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0BE87CAF-1C8E-43C7-A476-5AF1A2F5A43F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0C9A71B1-8A8A-48A1-AA3F-0C83CE1C0BBD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0CBD1CBA-E034-4287-9B49-5F2912E1D33B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0CD726EC-F1F5-4210-9011-EE6B5332A279}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0D5364E2-8FD5-4AEE-8353-79ABE11BC89B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0DF3EB27-E122-4E77-9481-D9332351B606}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0E109276-830E-4543-980D-660F305D052C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0EBCA7C4-AA97-4B47-99D7-4932A73E9198}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0EF25077-DA22-4FF2-B6FF-6FC1C26F5740}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0F3332B5-BC98-48AF-9FAC-05FEC94EBE73}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0F4C207D-8105-4A69-9597-CA35DD7D40E0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{0FBBBC44-296D-4A2F-AF45-BE1EE387F569}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{10195311-E434-47A9-ADBA-48839E3F7E4E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{111792AF-85B4-4768-AB91-682174B14B90}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1131081D-81ED-46F0-8B03-B728AEAFFD12}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{118601E4-0BC8-4B98-AAEC-723EBA43ED33}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{11ED5DDF-90D0-45C1-BE2B-C9C4F98CCFE2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{12BFCFD5-4661-430F-A6C9-75CBA2396880}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{131706D3-7294-4EDC-BA4B-5290BAB9FB36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{13854DA2-8414-4007-9693-2B6E6002520E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1386F568-F1AB-477D-B69E-31D66B6E4DAA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{14B512A9-25CF-4C90-AE5F-418689DF0A8D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{14D6736F-9918-46D2-A96B-75713158DC9C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{150D28AC-7C2D-4B57-B837-C74DCE7CC728}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{15125718-D196-47C9-8FBF-9889C0C85D67}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{15548C74-5C8B-4911-AE88-739DD473E2BA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{158CB0F8-4E71-483B-8A1F-E5F6A2925186}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{15A6894B-53B5-46C0-8C38-050E21DDD201}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{161D399B-0789-4402-864E-F4347690BD48}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{163469FD-6009-48E2-AD8C-47BB2E0D88BE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{16398BFE-0D35-45A1-AD20-3E5B605D79C5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{16640BA0-193C-4BD5-882B-F92D6EF82156}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{16737204-F9B6-45D0-BA08-EC632ACA96EA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1694E5C6-9E1F-4C3B-B79A-828C2FC40003}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1724E437-1FCE-4D21-95E2-6E2452C25628}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{17468406-36B6-4BD1-9B6C-3CC320CF28F6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1767B8C0-D7CA-4714-B50E-E10883B49423}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{17A868CD-C8B9-4A46-8224-85E4D81CD764}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{18575620-E41D-4204-BF6F-964069D80F45}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{189518DF-7EBA-4D31-A7E1-73B5BB60E8D5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{18A1A6BB-8AE3-47E3-B9D4-75ABFE0CAC03}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{19DACF08-A207-4271-AA22-C138F512E787}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1B845818-D6E1-4B94-B3BE-65B184165B13}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1BA582C8-6240-4DC4-BB8E-1B764134A47B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1D1E9B3D-5A4C-4C70-A9B4-5A19E0C625DC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1D3F4979-14F0-4344-95F9-D019C75ED669}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1D52BB09-465C-4AA4-9FBD-71D1690CAED3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1DEAC6D1-27B1-4804-8309-86F80E64D91F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1DF2A595-BB53-46D4-9EED-1343E066C2B0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1ECABCEE-5F00-449B-BBE3-9C35E160E832}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1EFD4366-6676-4AF7-A88A-872A49E2601D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1F2FC7B3-F2A0-4717-96B4-01D787DA9949}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1F6BD5E9-CEBD-4EB8-94B5-9C4E9C219306}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1FCC2003-C5EB-4ED6-A31A-85A7028C5F06}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{1FEB28BA-21B6-46F3-948A-D7CA11654FE9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{200BD3A6-A02B-4BAC-A364-A9D8017E3C4E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{20DC1F8E-4640-4FFF-9858-05E7B978CC71}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{210E3B48-776B-4F4B-B80A-2BB59F1A676D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{212DF34E-EAD7-4831-89D8-70CB70581D82}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{214345B8-BB69-498D-A168-29F58F15D806}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{21C40A12-3079-4A70-A715-8A44CE0DE829}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{21E5890D-B0C0-43FC-9FFA-971E53757CEC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{21EE18CF-E24C-4AD8-A279-C34EEB5F18A9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{21EFA4BF-6BAC-43E9-9465-9DDB4AC2967E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{222B2001-A14D-40AB-A97A-866C31E64B6C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{22489F95-AA2E-4DFE-A00C-4F5D0DFDAFD6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{22C0F9FE-1453-4925-A7C9-7D118611770E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{22E02478-B924-4878-B671-6C620BAC5F46}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{22F1A770-B823-48D4-8693-B953902A06EF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{230E8C2A-1317-49FD-A022-4E68AED75668}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{23BFD4B1-C4EA-453A-89BD-EC9D536891B3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{23D627FE-3F02-44CF-9EE1-7B9E44BD9E13}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{23D80835-4A3A-4572-9F5F-3F24A7A28AE5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{23F5ED0F-B621-408A-A857-B0FC38CCD6F4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{241D6A46-E756-47C2-A95D-CB63313A5FAB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{24998748-6E8A-40D1-AA97-E9952EE9ED18}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2557F3B3-37F3-45F5-B18A-985B0CD546F3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{255CDDA3-576B-44C9-B944-46EAC18D5D6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2613CF74-4FC5-4251-9F48-260496364852}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{273582F0-3C1E-4BFC-B2A4-8348AE47F717}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{27491041-2CCB-4A37-9297-FB84134ECAD4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{276D86B8-010B-4576-8444-9A670070A3F4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{27D8CD06-82E3-4E1E-8917-86A9B3AE41F6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{27ED4AC2-B6D8-4079-9831-017A100B391E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{287FFE0C-15D0-4BFD-BAA9-0582C6361BBB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2A041B9C-44AC-47FF-9399-CB8AEEF1CFE8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2A34546C-C437-460A-88AF-D4703A548EA9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2A3E745F-1EAE-441F-A5D5-E53C909CEEC1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2A7C0BB3-BAB7-4203-BF09-AE0F7187A76B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2BD02A28-2CE5-41E6-83DB-6763E671CB86}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2C15CDEA-3EF4-4405-90B0-19A1389B36ED}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2C2E34BB-2F46-4B74-9EB4-F90B378E5E51}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2C5B5226-045D-4A46-B4FC-228B0891FEEC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2CB87422-057A-4FFC-A518-6A728D6F5F65}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2D1254A1-4A1A-4339-9DE5-D05CADD5C44C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2D5B03F2-3D12-4BC2-8A89-8D40AFE15190}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2D5D65CB-D4DE-46D9-985F-F80D9F34C979}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2D652EC7-AF61-487A-B82A-0C4A6A9FF3C8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2D9CAF75-4B36-455B-ADEF-0CFD7ADF3154}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2DD8D482-8F1C-4180-AA8E-9D5819E5F2EA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2E0ED423-67B0-4C73-BADB-57D673A92E92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2E3C5BE8-3EA7-48A7-97FA-7E2AB0A88392}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2E64DCDD-94BB-4CAB-A93A-4416A3585DA0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2E699B22-FC07-4A9B-B98C-E9B965BFFE7C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2E94C834-9EFA-4C46-B032-A185C69EBC53}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2F34C08C-E0AF-4EB2-AFCF-3A13DC489FA6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2F3FF99D-E078-4968-B9C1-87A74C7736CB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{2F6A3DCF-D68F-4663-8C25-312BCDBE4D47}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3037B797-A390-4DCD-BCA6-272815FC4265}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{30686499-4F72-46E0-B4C7-0DF36BE1002F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3115A433-3FA0-483B-AB01-2A61C951FE58}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{314009BF-F3FC-4C90-82E0-2DE859FD1ED8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{314120E4-5A05-492C-9BF2-22558CF0F202}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3261F690-1CA4-4839-928B-F4F898B74EB7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{32C42863-E65F-453C-A8FF-60A8F035F57D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{33220D50-BB09-4F83-ABC2-E94011D088B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{340B5D33-4A0C-4673-94FA-B88ECC48773E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{347D361F-EC65-450D-9121-AF8E20A3F1C1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{349FB887-0A21-47FF-95AD-F311B68E1B0C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{34A0B812-915E-46F2-9F29-DF0F0CF97611}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{34D2738B-701F-454A-9198-25924CF75E92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{350C54AD-E069-454C-A613-CA8154149E7A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{35A2B3DD-3B38-4E9E-A547-6E459A6E91AA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{363FFCD3-D837-4949-BB15-9FF91D8D3D6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{36818356-5F51-47A0-BBCB-D2CF2578C009}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{376C5E0D-E8DD-4161-B74B-37E6323E538E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{37B9988B-1997-41F4-A832-DAE42CC3F7C2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{37EEB3B8-A21E-4799-9266-9EC7D945674B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3863C215-13E6-4E29-9921-78CE0A6F272A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{38CD31E1-73C2-48C0-B0DF-80BD6BA93F40}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3B3FA480-138E-47E6-B79A-9A0F7B2846D5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{38CD62AA-98AC-4B47-9CB8-8E1F108AD32F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{392D4A36-6ADF-4A99-A820-3014A53E62E3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{39D23F6A-E2DE-4F5D-9118-ECDFAAE47E9C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3A7A14FD-7FEC-48CF-A06F-210344DE6E75}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3B334543-06C2-4B5F-B7CB-8028A4570B39}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3BEE5AE6-A4D8-4FD3-B5D5-1385CEA2A22C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3BF6C840-4D12-4FB5-88A2-E2BC03461DC2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3D8286F5-9606-46C5-89D8-9B6379877732}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3D9FD47C-E0B5-4005-9ADE-552980D3761F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3DE68A1C-09C2-4724-BB80-CB5AAFB96D99}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E186CE2-1ABB-45D6-A4B9-4FCD11FBB014}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E2F7E84-20BA-45FA-A72E-9C09B3891E30}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E37C978-9E24-42FA-B021-B56CAAFDB694}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E5B0894-FE91-4063-BB41-D885C7691581}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E60160F-0ED6-4DCC-B6B6-850CDE4FD217}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E79A538-7998-4BB7-B8A7-0E12243D7A99}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3ED808D8-9119-4757-B7BE-40C463452F87}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3E8641B2-0EA7-43B4-B8B5-895F155D9A9D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3F6D6C35-FB73-45E6-9473-BB4CC25CE019}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{3F84EE83-FD4B-4223-B76E-F23F645DCCB3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{404A6E3F-1747-4D1B-8285-2C4B8A4B21D4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{411F83B1-A0EC-4155-AF99-0137F5EFB270}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4130008C-5697-4EF5-9EDE-EF8F9F10D524}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{41417555-4052-47C1-A7DF-C5A2B869F98E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{41E4ADCD-CCC2-4DA0-97C3-83051A4C35F1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{41F834DA-AF4B-4C04-BD2E-9FA131FF39E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{420EE180-CE72-40AC-83CB-B55DCB68CCF1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{42348314-FC64-4B2E-B314-3F872C321B87}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{423FA7B8-5671-41DD-9C4D-B36607F31BCE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4249D82A-882F-467B-9AA3-DCC40078EA69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4259549C-361C-471D-BBCD-90671B818338}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{42F16135-D0A4-43A2-990C-27FCABD9C19F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{434FB119-3862-46DD-A420-D8A1836549E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{43B4B286-7D63-49BF-925C-76DB02FB913C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{43CFEFBE-8AE4-400E-BBE4-A2B61BB140FB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{43DF1CEE-70B3-4E2D-A740-4AC468786207}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4470C18E-1EF2-453C-BEC1-1745D781BCAB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{453B991D-6B23-48CF-A3B0-2214F437CCB0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{45973D31-5CE3-4503-BC81-25E525119C48}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{46018FD4-1675-4020-85DC-A3A0EEB7BDA0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{464B2A01-EB39-4CF6-B6BB-6262776B79DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{46593BFA-1D7A-4A56-90EE-88E852649F3D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{468164CC-476E-47D5-9269-278D0DB22A13}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{46D4D563-1C43-4CEE-AF98-471385F2BC42}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{472B58B5-B00C-4DC5-83ED-FE8185FFBCBE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{478B7D17-F00A-4AB3-B802-46972CAB1AE9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{479B1AEA-4414-4E43-8CBF-94BFC7C69B56}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{48129B70-2F29-4DBA-A499-BEB1A1554E10}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{484E9A1B-C631-47F3-9BC0-F752CDAAFB9A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{48CE44BF-E439-46DE-8CD8-88CB5B3D6D6E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{49B0A793-F7D0-47F1-9183-16F6CDF161CB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{49D486E8-1932-492D-B1BD-B4D638BEBD84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{49E2EB9D-A5E6-450E-9708-251876BF3E7F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4A2C9DEF-83EB-4575-AD6C-2377FEFC5122}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4A2ECC12-46BA-4C52-9749-C0FAF38D507B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4A7CC1B7-3BA5-4CF6-8098-56D315EBEE11}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4AE0048E-4C88-43DE-BBCC-2530A2C24634}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4AF8E04F-0D5E-4C3F-BA67-81B685584C12}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4B860BE9-5B96-4443-9714-6ACD89989D1E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4BC6606C-7DCA-487A-89AC-5A1FDE51E721}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4CB98812-6071-4D01-BC87-7E2CECB9C248}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4D31CCA1-C42B-4796-851F-CA8ED4CD2A7E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4D6079CB-FD9E-46AF-A896-6E8582E52827}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4DBE72DB-B023-47C2-AB01-D2323AADFA5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4DFFBEAB-DB11-4602-A3E8-0454ED3F928B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4E308A8E-090D-41D4-9566-0CF5DBCE77BA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4E3645AF-7A81-4F83-9B8C-1E4F930D873F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4F4A0564-17DE-4EB2-B29E-6D2E167A3BE0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4F7FA7BF-007C-46E6-A49C-B8E7373C046E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4FBE506D-6726-42B5-ADB0-0B56AF0AEFB7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4FCD9AB0-0765-4117-A612-DB3B4FAC1EE3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{4FDBDBAD-FEFE-4C4C-9CC1-1181052AFB12}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{500B879D-86C3-4C45-943F-3FC3BF793B38}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{50CE778D-7505-4374-ABDB-99C6A5139374}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{50F91B80-0270-46CE-86B1-4C508F5CB280}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{50FE5318-DC2A-440A-AC94-B9041819EE48}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{511A9BB1-917A-414A-88FD-3128E37032A1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{51FEFA9C-1D5A-41C4-81FE-8C0FBE9254F0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{521C4C7E-D2CF-4EB1-A078-6E126269E0AD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{52B75F3F-0016-4002-9A3A-B68BC9501ED1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{52BF24CF-8378-42B4-8962-135CFB6C4F77}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5416CDA8-A459-491F-8BC3-32AAC8899F26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{544F9A30-7A37-4E83-95BF-704131C6B928}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{54D2D4FC-914C-432C-B638-599F48D77A08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{54DA8FE1-16CC-4304-921D-88DD591884EA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{54F04ACA-CC8C-4C70-A8BC-D5C53D381EE7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5596A310-2E54-4B75-ADA3-7EE0AD10E228}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{55DADDE6-2501-415A-BC5F-6F75D6E771C5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5616709E-BB23-4D9F-A9B5-2472C769F73B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{56943D7C-2283-4D73-B2B1-46173B4844B4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{576BB1E3-B26D-4BCB-A0BD-B49FF2469936}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{57859C9A-F115-4074-B7BC-AD69711EF51A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5796859D-53C4-46C1-AD6F-2A3C4D4306EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5790B963-23C5-43C1-BCF5-01C9B5A3E44E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5799265E-3E51-4B72-8420-75A71EE94E26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{57DD6CFE-ABDB-46C2-92EB-316A5F499167}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{57F88FBD-FFD2-4AF2-B138-CD644A8E62B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{580EB069-9905-4A04-A20C-AD6598D8C0A3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{58ADBAFD-D14D-49A2-94EC-4FE8165FD336}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{58BD1E88-EFEE-404E-BE17-DF639B57CB56}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{58F394DC-8F9C-41AF-99A8-0C5DBD830512}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{597892CA-A878-4A04-978F-DBA8DC2BB2FB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{59DAA331-B3F9-408E-81DF-ADE79D129600}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5A3E47AB-3FD1-4B5A-9296-BD3FC395B2D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5AC65D7D-C00C-47A4-83F7-F81073C39B25}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5B457C20-B311-47D6-8462-2A58D14444F3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5B768BE7-942B-4838-89BF-40AB729A62AB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5B861FB8-903C-4996-B1D3-E9A86ED4BBCF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5C0B132E-86CB-4B3B-9CAF-CB7F57A60C81}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5C17F7D3-8460-4488-84EB-986A38BEDD2D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5CA1A9F6-10F8-4008-B884-755B25B6848A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5CCC8D01-9F75-4F07-9ACF-DEB314176C79}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5D42DDF4-81EB-4668-9951-819A1D5BEFC8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5D89BA32-C9F8-48CC-B22A-18C808DF6D83}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5E7BF614-960B-4A1F-9236-9EC01AC4C5E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5F412259-081E-4B21-815D-93AE1E71AE95}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5F8BD6DC-6D30-4A6F-9D07-3822DFA605D7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{5FD68FB1-7D4C-4803-AB57-382E5CE342BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6036EFF9-4750-435D-BA00-2E4971A17954}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{60D3A642-0B03-46AD-B8B0-8D45989A0055}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{60DDD776-BD47-421A-9B75-C5965C1AAEB3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{60F366A1-5D3B-4D3E-ACE3-CB8C25474FF6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{61032A65-2371-4C89-B5BB-DF73090FB5EA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{612CA5DF-DDBD-4BA3-BEB6-F879CB521AE0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{61877300-54DB-4746-BA42-03E03A2B269C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{630CBF61-54CC-4AC3-97B0-D4071345807C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{63321A5C-D8FE-432C-8D2F-61C0FC264320}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{636FF82A-830A-42EA-938B-6DC78B2AC30C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{638C512D-C04A-4E06-A9A3-8127C4E5B4E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{63CA0A34-071D-4780-A5BD-28F0CFC3E512}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{64D947B2-5505-4347-80A5-E28EEBE38F2A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{655C070F-6724-45BC-BD5E-23609B6D4A3F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6570C315-8FE3-4C92-8772-B2EE963CE446}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{657D5DE0-6497-4040-B604-F38C9411F64D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{66189AF2-7726-46E8-8628-0F95AB854792}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{66F0AC1C-DED5-4965-9E31-39788DF1B264}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{673A88D4-C0E0-40D2-9B93-AE39D9A1675F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{67BFFC72-F133-4C2A-8C2C-EC9B46FFB80C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{67E054FA-0F1E-4AF8-899B-0B52660D7043}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{680FA31F-43BC-47DA-9405-A0D1B1C1151B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6876543E-DA55-4F90-9CD2-5ED380D9516C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{68C625EA-B8E3-4FC1-9F6E-8A1B50AA9C8C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{690D2910-BFD6-47D3-A96C-13E6BA2935E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{694E0F65-5EF7-40FB-9412-48AFCE704720}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{697C34C8-BBAC-418C-999A-A5525F4FF8C3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{698664FF-F50E-4BDC-B9C0-C00F96A64B84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{69F0456D-B449-4FAC-AF03-B0FBB4B39C53}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6A539D25-03B6-46E8-BDD1-889632109485}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6AFB5B8E-ACFD-4489-91B3-DAA1388A31EC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6B067ED9-4AEC-474E-B67E-85EF417D68BA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6B619BBA-1BB8-47F4-85B2-AEEE204AFE3A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6B781C5A-1A96-49C3-B1A0-F8400D46701A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6BEAC051-C197-4951-AF23-4B0522F0303D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6C2AD1F2-670F-4096-9CF5-6FBEA48D2E38}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6C6E6CB6-8156-4901-AA42-B535181D17A3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6C80C5B2-4748-411C-8120-09426F8ED212}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6D8D02FB-2877-40CF-8325-B6FFEC0811DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6DDA751B-CA62-41C6-B622-EA4B4C2E51F8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6DEEE498-08CC-43F0-BCA0-DBB5A25C9501}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6EBB57F2-B416-4F76-9384-A8F669FF60E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6F342C0C-EF49-49E2-B3F1-FE28F193B974}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6F61B413-1DFE-4C4C-8CD4-B97BE0B17504}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{6F821290-E277-4F87-B4BD-AE48564EF21D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{701E8C3A-7910-4CCD-A9F8-7B9A5F5B3947}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{707B2F9D-B855-4730-BB5D-44669B4F11E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{70FD26ED-6C79-4D3C-8B8B-0D23E9E8135B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{711C2540-AA7D-4C40-A8C0-9B1BC920378D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{71237FD0-9DF9-46B3-8F1C-6F2998543EA2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{715D709B-2B10-42FA-A069-297D25D93601}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{71C9109D-EB8D-49B9-9211-1CBE8A25A9AA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{71DF187C-DC99-4A35-BDB2-C099821A435D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{720B32BB-73D5-4551-B743-986224487121}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{72A238C6-F6A8-41D3-90FD-95F31F02FB33}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{73467269-7B9F-4F66-B381-D914A7ACECEB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{73F1B1C8-D0FF-466A-91C0-2995ECE1D7E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{74878382-B258-484B-A614-475D8DCF104B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{748C9204-6C92-485B-8BF8-3AF7ECF03CDE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{74AC67A5-CDB1-4FD2-A30B-47BD59FF28A9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{74DF3F5E-99D7-4F4D-81C3-95201D4CDA88}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{754E70B2-E0DF-45CE-9429-CCFE0DD7AEA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7583195C-5F83-4AD6-82D1-3C2F553F93E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{75F32B07-D45F-4D5B-9266-3863C65D5B29}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{764CE36A-C778-42A8-B3B2-4B09A4B10469}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{768C89B1-97D9-4153-ACB4-A03FBBFDE184}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{76C8C569-C4B8-4E0C-AE87-E1166D7FE005}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{76D06077-D5D3-40CA-B32D-6A67A7FF3F06}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{775AD947-7128-4774-8623-55FADB5F74BB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{776E27AE-419C-4529-9B18-4E71A5EA64A2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{77CAC444-50CC-4E1C-955C-55E325360864}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{77DF43A0-4CD3-4BE1-B4FC-8B9F3857CBB6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{78C9E0DA-3BB5-4156-A03C-8326322F10DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{78EA0C93-1AAA-4922-84F0-42CBA685F6BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7A2F6251-6C99-4DA5-9827-954EB45DCB82}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7A3BABC0-3D33-4B9D-B11E-EF36E1BFFFBF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{78E2412E-3C9A-4EE8-AD97-3ABD95EC49D3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{796854B1-D0B2-471A-9047-9FAABA829DDD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{79E77B74-D820-4E39-802F-084F9DDCE038}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7B519915-0E5C-429B-AF50-2B1FD12A80C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7B8A51F7-0700-4CEB-978E-E0A3C88CB4B4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7CAEFBCD-55A9-4A68-AA02-E69B12B3BE57}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7CC220DA-D962-4935-AD3A-21F7CA4962E3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7D4714BE-DA43-41F5-BCF3-5AEF3C95EC42}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7D5247D5-609B-4C07-A04B-D8EAE34A2E10}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7DAB1006-335A-4608-A596-218BB1893180}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7DF33004-9121-4FD5-93B6-6376060D2D3A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7DF4D9FC-1B6F-4093-8BC7-6A0F750B59D8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7F21289A-BB27-49E9-92C3-2BF7910B6072}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{7FB0A17F-60E7-47C6-BBF8-00A0427CF8EF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{80361051-7283-4C4F-A774-7392FC2B1703}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{80787CB9-2E40-42BA-927A-C7E09C2C3D2E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{80A2BFBD-7906-48EF-9F76-49B9F822393B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{815B01A0-BF97-41E9-ACF2-32B76F98A960}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{81CDDAE8-3B92-4F0D-86C1-8DD5DB6A8471}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8262777C-7176-4A9C-A8A6-D0C4AEB467B6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{82B8F5FA-8541-4E3E-BB71-9237B638E51C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{82C6C396-DD7B-4CE5-B668-C0087D1F3A1F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{84037416-6A70-46E5-9216-CDCC7E2513E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8407F578-6FA7-446A-8852-53E6A147472E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8458EDF5-1DFD-4BF0-95AC-1D7463031D92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{849E056A-D67A-431E-9370-2275F26D39B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{850300D6-D53B-4720-9372-6D31B85537E1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{853E0D78-F4C2-47CB-A3F5-A774DA60DFCD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{85524659-53E5-40AF-835B-2F0B8745DF0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{85953437-B661-4DC1-98A6-FC7005B710FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{85A126D1-2706-443D-9979-8841A1C5B482}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{866B2BD1-5F33-4472-80E5-3216A92373E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{86861886-7780-4650-BFED-60E07AE63ED3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{86C7E6C3-EC47-44E5-AA08-EE0D0A25895F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{872C1B1E-3CF0-4D3A-95E5-A0C662D2854C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{87172D4B-FA72-406F-996E-2C6817B8E1FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{87664F4C-697D-437E-BF90-2FD7C6C0B04C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{87A8C087-37C2-40C4-9CDF-97437A9F54BA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{87EA76C9-411E-44D0-8270-EA2DF3941133}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{87FF9647-1710-4EB6-97C9-65484F9C61E9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{886B1D08-B404-40F0-AA18-4E416682A2E9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{887D7071-FB68-49F6-A77C-E12D0A83BF91}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{88BDD61D-AC47-4D9E-A3ED-1CAA575593E6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{88C13519-616E-4A0D-B9EF-441D04891B6F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{898272CF-3ACE-4A7B-98FA-9EB8DB8B26DC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{89AE8B3E-3EE8-4068-8932-60CA9E6AC40B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8A7D5862-7B00-4270-B456-CDC6779A79DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8AFC508B-6B96-479C-A1AC-848EB3F4EFDE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8B5F65CF-0B0A-4291-8DA2-86D7F7B0A6DB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8B7AFBFD-631C-45BA-9145-F059EB58DD73}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8B7E3C69-4A2E-4F48-B690-47BEEEF16FF5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8C803228-BD61-4744-8B79-949E3F512DDC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8C88AAE2-A341-4DE8-B064-062194307E5F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8CBED98F-8DDD-4AF0-A9EA-C75E10C937BC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8CBF5BAC-E609-4863-ABC9-68A7BD13B1D0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8D3C0252-8850-440E-A386-4A0159C8A4DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8E02BA95-D9BC-4E9F-AE33-38DD988CC868}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8EB34398-737F-46DD-BC79-FFF8CDE2782A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8ED3825E-77A7-41D4-BDCB-FD8CC2B0D183}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8F71D7E5-202B-4B8D-94EB-2B30E4212C18}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8F7AFA67-ADC0-4227-B799-34F7800EBC96}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{8FF07C20-5965-476E-84E8-82374C559BE7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{900FBC20-6AEE-4E05-ABA9-AC46E309C029}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{90B449E1-A378-4DBB-BAE6-4F5492B954C4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{91251C12-212A-4847-AB34-6C0DE694F83D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{91478017-FF82-4C5D-9FFF-7801F8D99CCC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9188A88D-3D41-4EB6-A7D8-0F6A5266F685}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{91EF3AD8-9373-4B3F-AAF5-2984E3E34385}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{925B0211-A1C1-4712-8FCA-5F5B8101736D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9283DAC1-43F5-4580-BF86-841F22AF2335}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{92F553B0-3499-4E89-A25D-AB0865DD8A69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9309BDC4-952B-4146-8303-2FDA3F5B218F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{93362B42-9631-4BAE-92EF-7726E5DD747D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{940664C7-DE44-4B8F-A05D-FD70CAB75F2C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{94786C47-EB3F-4BD5-A66B-0D49E2C90541}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{94792C8E-6FE0-462C-9D20-AD560608DDA1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{94C6F9C7-CDE7-4E81-A5B0-8245E3001B23}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{94E13FCA-4BAC-4C2A-A5DF-746460090F9E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{94E14C33-2473-4185-9FA0-3D881BDB5C0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{95D963D7-86E3-434E-BFF6-FCDDEA5F9F24}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{967A494A-6AEC-4555-9CAF-FA6EB00ACF91}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9692BE2F-EB8F-49D9-A11C-C24C1EF734D5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{98198A41-C7DB-4F67-AF6C-80F90FEFE047}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{984281D2-E2E0-442D-A2DD-88638F2CE04C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{985F4791-DEF6-47B0-B4BC-94E49E03BDD2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9894863A-C28A-4D01-B3C5-E6222A789AFE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9981DDEF-81C4-4CC8-A5F2-62A7912D8037}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9989A9BC-9828-467E-AF06-E3B279E6E97B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{999E9507-216C-4A7A-B103-57D3FF617E49}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{99D26682-D444-4106-B346-A31B25B315E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{99EAEF8C-652D-407C-8319-781A2BB30FF7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9A76871A-CBEB-479C-9984-253AEF6CB3E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9A9D1422-D311-4673-8579-61FCDB76BD0D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9ADA0950-D83C-4C52-83AE-D8258A4B527E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9B11649A-0DA6-4581-9A17-9DA31AD7FD42}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9B8BE22F-B2BB-472B-8959-C0828C0ADDC7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9BA6B541-EB04-44C9-9156-9573DB5345A5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9BC72975-C801-4534-B103-476EF5D0D17D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9BF1461E-228F-4509-8C58-4EB1FBFC19F3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9CB68DF7-F336-45A2-BDE2-5DCA3998986F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9CD68722-9A43-42E4-BD01-2DE85D9CB565}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9D5ADF27-B3F9-493D-A15E-AB019B9FD18B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9DC10DE5-5104-4554-ACA0-D9F2D146CD4C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9DD57F95-DA3A-4EDA-9475-27CCF366A4FD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9DE6DA81-E460-4E25-937D-A3EE1E6FCA27}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9E0A6A56-E495-41B1-A72C-DDBFF7B1147D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9EC1C26F-0480-4BBC-BC69-7AC270388D0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9ECD20CF-AF6D-40E1-A1B8-7B6BEABB793E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9ECEF347-16E8-45B3-BB6D-AE9DDFC4EC11}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9EDF97A9-DF39-4023-A73F-53146B61805A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9EE20753-220C-4A2C-87DC-F86FB78F3774}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9EF3F6BA-1BF9-4B4E-9475-437A02DBFA8B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{9F9C8CF3-EB4A-4851-A4F6-2370F5BC79EE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A0305F7E-4BEF-49AB-9FC1-3CD0964FEE9E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A09DFAEF-BFA3-47CA-9479-D7EC79342146}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A13D839A-E2F0-4E33-B615-592F5CCA5B26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A140FE51-3136-4E0D-AFDA-1313B30ADFEF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A1886D5E-3508-4109-A8A0-F045AA86F3A3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A1B5425B-9D99-4419-B3E6-24C0944EF382}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A2817460-5C53-4B41-8D01-D3EF255DD41E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A2E56D03-930A-4BBF-8C8E-4D63D15F88EE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A392D107-AFBF-4E1B-8092-DB508BC890A5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A426E333-4E91-4995-9662-E709BBDAA549}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A44CAB15-6B7E-406B-9D9B-B1C1C6BA8CDB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A45C94F8-E114-48EB-84C9-DE1B871E1A3A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A4BB2045-C8B4-4A9F-B509-7A626797B961}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A55C3BA7-DB1E-4652-867E-055CEAFE8018}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A5A2382E-6EA1-40C9-9EEB-FCE758A7A3F1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A5E6FB36-865E-431B-AE48-6ED52E4A40E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A62C8043-EDE3-45B8-8477-FD77CB8746C6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A69107CC-BEC8-4A34-B474-211B0F46A764}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6A68CBD-6673-41B1-B997-3F83A25B45B0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A6CA4EAC-3168-4F1B-B8CF-84765E1781C8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A7152573-FA25-4BEA-8026-1EC8A5205D11}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A7308DE2-D644-488D-80D5-071710F5B840}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A7358DCF-6343-45AE-930D-5C2BB96B9116}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A829592E-08BA-4D4D-87C8-6524687D90E6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A8502478-83BC-48DB-9937-6EEB77CED41E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A8718256-70C8-4914-8F64-B8B9C1A64AAA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{A99AC77F-4DE5-4AA2-810A-35FAB5FC114B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AA4947D5-1DB9-4CD2-98A5-2746C3776285}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ABA193DF-6C52-4D02-975A-94A85B32DC3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ABAE0DAF-A6BA-481F-B3BA-0666D0D1B2EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ABAFA0B4-F78D-42E5-8C31-1A441D01C1DF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AC66E7A3-928B-4F20-B7AC-B3A86298005C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AD2AA1CD-22FF-4562-A616-1C64A42985BB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AD9BDAB2-76A9-400C-8F4D-F12733D33526}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AE90CAFC-09D4-47F0-9E11-CE621C424F08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AEEA2138-2168-449E-B995-B56612EEF65E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AEFD40BB-03E3-4C66-ABFB-B5720ACB833E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AF1B7AB6-9715-472D-B469-74DE8D030EB6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AFB40450-78FE-4F01-BE69-A76A8C396304}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{AFEB8519-0B8B-4023-8C15-FFB17D5225F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B01E37C4-5497-4D58-9FFD-D5653B8DC866}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B11E589E-9A82-40EF-9777-8E13553F83D4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B14649A3-BD2E-4483-B8D6-BF80F82F5D24}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B1B9C911-CA24-4E1E-9F56-838486218327}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B2266AD8-EAA6-4934-98E3-34CF67E08374}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B2B3702A-5425-489E-A3AF-EDCCAFEBA019}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B3250C2D-C398-4EC9-8A79-85BCF65F6608}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B41DF4F9-0191-46E6-8107-16634FBC7F3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B48F25A0-49A8-46AE-B506-A789F8E91A51}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B4BB620F-3AE7-4910-8171-F9FC8120D9EF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B4BFACA9-37BA-45BC-8EE6-6F9910651B0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B4D9C59B-A091-4D79-90CC-DD92F3BACF63}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B5B6AA2C-F0C7-44B9-A861-261958ECD0B8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B660CDE9-526E-41FE-AB41-773D78BEE31E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B6A0AA8A-7CB1-44F0-ACE7-7A69739C8674}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B6A3935F-8FE4-49A4-B987-A1C09E53589F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B6CDDF17-9F1A-47CA-8E3D-FF6BD1B05D3F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B70B489C-F0D5-4DD9-A2BA-9B6DBCF5090A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B71C7D9A-DA43-4E8B-BB98-1684AC2AF324}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B74B2B6C-9B8D-47D9-872F-E83D475AAF34}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B74B7120-D7B8-4BF7-8CC0-8B49196E1642}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B7512CD1-CFDE-4498-ADBD-14B38062A478}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B78BA1C4-A46A-4A69-88FD-27D8F6912E84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B7B6711F-40C0-49A8-9C46-EA5906F7264D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B7B84995-8B92-46BF-94AA-FA2F3DD23B84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B7C685F0-1804-4382-A8EF-17D33DF97069}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B87C48D1-28E3-48FC-9B27-EEDBB7619A17}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B889DE48-EC10-4278-B3FF-76FEB7449215}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B8EFA7B1-9614-4901-905D-698FC44926C9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B8F90F00-CF78-4431-A13F-58B979F7EE20}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{B9C7A624-88E3-4DFA-8D56-438B10BC0149}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BA397E39-F67F-423F-BC6E-65939450093A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BA9CC151-4581-438E-94AF-4C703201B7CA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BB68F4C2-01ED-48A0-A94B-C78237B73387}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BC158F0C-319D-42A9-8532-134D746D136D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BC25B50A-E1AE-4345-BB9B-0778DF760BE1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BC74C336-FF2C-40C9-AD4E-3772C208406B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BD8C66A5-617B-4ABF-B56D-F547597FE0FA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BDF00F24-A571-4392-95EC-04FDFF82A82C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BE18EBF9-4F98-4333-8DD2-AEBA2911A80B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BE1C526E-CCCC-449C-A9CB-691B8C5E2769}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BE465556-F79D-476F-9457-74E49F8F400A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BEB46F7E-CF37-4E8F-BA48-D96F1A434224}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BEC8A83D-01D4-4F15-B8A9-4B4AB24253A7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BED38B7D-66E0-47B2-A7EF-8682B62828D6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BF1A0A91-ABFB-4717-B7B9-D88647EA2529}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{BF8A0E53-F417-413A-B849-B5C0086EEF8A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C0E59B82-9A6A-4DFC-94EE-1753A82269A8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C0EE9256-C6A0-491D-B28A-48807B5572BF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C108A1D9-28AD-40E5-B257-ED9062A14244}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C1C56112-2B2E-4D3C-8CFC-7E10C77FACEF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C20782A3-B65D-41AB-8D04-BBE3122363C2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C2220318-770B-45C7-B2CF-66022CE7E073}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C24E6ABD-2409-478E-91C2-9AFF9817C10A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C254C9C5-DE04-49F1-9FC1-72EF4F7F1F6C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C2E39865-E9E9-462F-87CB-9A09CEB4795F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C27D97E9-004B-4F4F-A5B0-B7188DDAE024}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C28EB22A-6966-4E4B-8592-E84C28D38402}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C2D197C9-8570-4AC8-A121-92F9A8CCD857}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C3176A2C-3119-4F7F-B847-62B5EE6763E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C36464A1-2D2F-4804-AAF6-F5BD62536ADB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C3A42538-303B-4541-915D-C79AD9C75EB8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C48AE974-0D27-47D6-A3E9-881CF3301F72}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C492F812-B194-4C72-81EF-B17D9D973777}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C4E953E6-770E-4F59-A5E3-43E9F0D682E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C4EEDC19-992D-409A-B323-ED57D511AFA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C54890B0-B9F8-4E58-9715-8C58B52A4D5D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C5BB6E2B-6CB5-4AAD-AEF7-2484D3E04EEF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C5BF4465-5322-462F-B41F-459F649F3996}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C61736BF-F408-4475-B41D-8DDD96F86342}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C70A5BCF-0F65-4F9E-B869-119D60184E1F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C78E49C0-AB82-4C79-A189-F1E34980643B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C793C7C5-E89F-48EC-83C9-06AC097E8CB9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C7F06087-64B9-45C7-A74A-A2052B87ADF2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C8296F61-C691-498E-A509-C1C0C1A879A9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{C9CA446E-0484-4647-BBF0-3C129C42047C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CA091197-32FE-48D8-8696-AF64D8A1CA44}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CA7301E0-686C-4C7C-95B7-1B96D2ED1A61}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CA74BAFC-1F0C-49B1-8A76-5D55085E71FB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CA91A4F1-3DC6-4D10-8AE3-8545E86D9DB8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CABABC4B-5B0F-4297-9D85-72E93616ED55}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CAC16E1A-D86B-428A-BB7B-65F2D2BFC160}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CAD91BD2-75E7-4E5F-A939-4ECC2D512918}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CBCCB1D8-AB10-4B4C-9982-A8DEA99F3111}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CCA1E17E-2BEE-4D53-8D00-7ADB5B35145A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CCAA201C-C48D-48A8-A1E8-846562CBF1C1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CCBF4AEA-E9E3-4D8A-9F51-7D20C4415C2C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CDEB1FD8-0917-40A2-B915-8FB9D7FDD75C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CEBEA6DB-DAE7-4146-BABA-1FBCD1D50426}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CE5ECF63-6065-4B92-8B7E-72B5042C2F25}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CED85FB9-B4C0-4CFC-A7BE-2C73BAE15D51}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CF1D16BA-2CE6-429A-A63A-3CF44D81A950}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CF277F5A-347E-40C2-BAF0-4F09D0607041}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CF42E571-31B5-4BF6-B80A-19B83F030DB0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{CF4DDC95-8A4B-47C1-A89E-0CBF849DE042}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D01D4AAB-22C5-427F-A941-C4B65A3D8A23}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D037BE5C-7E06-4D4D-8729-FD1EE7E59C89}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D0722752-35B5-44E1-A14A-E2A44C41F509}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D0E42329-DCA9-4825-B87D-04B789BBB169}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D108017B-1769-4BFB-8A4C-0E6202FDBD08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D152938D-32E1-43A6-81C7-898502AABF9A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D21FBDCE-EF01-417C-A1A1-C1EEDB8D5DB6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D2315CDD-4F9A-4DDA-8671-252465FF0B5D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D237BD03-5808-4B64-942D-6746FE50EE66}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D2A0598F-FBC4-4721-BC85-F75C0712C100}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D2C1986A-FBEC-4472-AABF-6D42F08DBC8E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D3F81C5A-3A2D-464C-B617-289495AE52DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D483521B-D5CC-43FF-A45A-9BE4A8E6606E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D4BFBB89-4BC5-4D13-8D3A-75EDCC0CF50C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D4D2958F-EDBE-430B-AB15-793E921C3A09}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D57FD11F-52DA-42F6-B12E-2447593B402B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D5DE421A-4AA5-4FE3-AA43-7D2A87D6267F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D648067C-E5D2-4BB8-AD86-A993B8793A52}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D65BDB94-8AE3-4509-B0CA-2AC8A3B758EE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D675FD26-7200-466F-A380-182FE49AF8AA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D6BD48FC-DD6F-4242-90B0-6CBE4AD43362}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D7473324-9D79-45B6-AD7F-333EF7D1A64B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D74998BF-0AB6-4C8D-801D-EB50CB73FFDF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D753CDA9-396B-415B-8379-AAF5902814DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D7D22218-EBF0-454C-B948-11BB8FC3118B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D7DE2292-04DD-48FC-B250-5E9BFE6BB959}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D8073D3D-D957-45BE-82CA-BB44FD0E9C4B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D838D7A3-1551-4B32-BF7A-7F4F769BB885}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D87A739B-AD9A-4973-B8C5-9D55B3EC0401}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D8A82314-6634-4C62-9663-9B943C08DF6C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D8CD0D4F-47B6-4499-AF5A-48446972E058}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D8DFA789-47D3-4197-B187-23AE2D7DCF6A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D9037DA6-C9DF-4FCB-9C2E-2A1F10786FEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{D92E0D32-8D1B-4B8B-AF26-0676C5158ADA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DA02B168-8841-4248-BF22-67E2EC5958C3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DA457340-9643-476D-A41A-09496677B2A3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DB9996C3-E22F-4096-8349-C3821C08B1E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DD2D402A-DE41-47A6-AAC9-0D756776203E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DD348AC9-1D04-439A-B451-9A83BD66423B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DD369501-EDE4-4E99-8728-7C9E4BBE6BE8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DD90F677-D205-4F70-9014-659614AABCB2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DDB0D689-FAE0-4165-9F7C-877602F9DD66}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DDC17036-3DE8-4FEB-948E-D225CF5BCC95}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DEB2FC31-CCC1-4D85-869F-D288E2386DBD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DEB82BF1-47BB-4863-B85C-77363D3C37D5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DECC44F4-E972-4E5C-8F5F-238295C5ADD5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{DFD2740F-66FE-4C66-ABE7-53A599B78D1D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E0105E7C-D0C4-4DEA-AA21-B02F2960ECAF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E0277D0D-43C7-4ECA-B8C4-545A2E71485B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E082EF71-40AF-4A4E-B036-BB773F450B53}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E120C137-922C-434C-8A02-2A8D27B3E2D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E12E00DE-9BE2-486C-A9F1-19730F93807E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E1751F23-00E6-4F6C-AD78-CA7D8A96FD3E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E20C255D-E938-49DB-89BA-1A1B27ABDCF3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E3A2FFC7-5B66-4150-AA51-5D4CED1E73EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E4703CF2-7F82-4AD7-B317-8EC1CBC9B619}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E505FB9B-6CB3-44C5-9F0E-B01121076CC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E56B4B91-E548-4E89-97AC-E9630D22A2E2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E5AD5BD5-C710-45E0-ABD3-E770FE85DAE8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E6909C99-4605-4E46-A2D3-EDE6D27D8539}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E6B4AB50-F423-4EE6-9839-B35DCFCDFA49}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E6BC961E-2230-4A37-B7DC-F311773C7DBE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E2F430FD-3062-4808-B23F-4B322BFED93F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E3DF91F3-F24F-441E-9001-D61F36024322}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E6B4AB50-F423-4EE6-9839-B35DCFCDFA49}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E7137690-A900-4F77-824E-EC0177D74FD0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E7B2831E-A25A-430B-B3E3-3D414F9C4288}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E8194604-B6D1-4D63-ABC7-8C2D89E6D497}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E831429A-73A3-44D4-8935-DEEC11216093}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E849D321-F077-4946-94EF-696F864F0BE5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E86D0281-FA5A-4E36-B993-84FD87DA9DF1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E9817993-83FF-4343-B14E-6CDFB378B21D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{E9B91E0C-305A-4DD2-9987-B3B0C254C6DE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EA166DBF-EAC4-4D33-B48D-A40B8C8FDEC1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EA5973F9-1064-4393-838F-1B44CB09A1DE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EAB5EB70-E2F1-4ADA-B033-151A71B9AA3F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EAC1ACCD-7790-4991-A9D2-550806D6D9C3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EAD385C7-7B45-43FC-BF4E-EABB990337FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EAE9695A-B942-4C07-B94F-7CFBE3F35A37}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EB5CA3AF-26C1-467B-9A55-2820E0451AAB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EB94E265-AC37-40C1-A656-044F38ED31D6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EBA2671E-29BF-42D8-B17E-AB5315CC73C5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EBDD9FB9-3A6C-4DA2-B0A9-D117528D4040}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EC2A49C8-5970-4DA5-B784-32CD8617B6B8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EC6921C1-F723-49C9-B760-274DE8238ED6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ECA8F1E3-C03F-47E6-842D-7B2BCF0445CA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ED2AFF47-B7BE-4273-A203-C796E87F72D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ED33F056-D246-4FF2-8D2A-D9F3938753BF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ED39CB7C-1BF6-429B-A275-F183B4A3EFCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{ED639B1F-1B3F-473F-BD8D-6DE9C2D1972A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EDC652FF-2EA2-4E46-8849-D9041B77B88E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EDE2A2B4-B1CB-4BF8-93D1-154E49284A71}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EE2EAC90-8B01-49D4-B46C-8E02BDA1F3B4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF17C9F7-3ABD-48BA-BCD3-3ADD3C1B65E5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF215DAD-8E52-4C75-B779-5093B3855E79}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF2AA606-B72E-4A1B-B076-8B148661F3B7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF884BC1-EE64-4E8B-AE3D-84037A0D1606}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF906CF9-6EEB-4626-9A17-2E48C11D2995}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EF94A58F-599B-4602-9C34-99683C5859B1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EFC68768-18B9-4930-9643-F6DD7AA60A71}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{EFD28371-A165-4873-A158-421D208FFE5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F0091942-BEF6-447E-8F73-B844A4F62851}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F0ED2F90-DE03-46AD-97C1-709E5A49422C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F0FA7ED9-5A0A-4374-B63E-BEBAFD52192E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F105F0C9-50E2-44FA-B3EC-92CA7BFE0C0D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F198A883-6BCF-4B94-A890-D8ED007FBCF7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F1B13777-B021-41E1-BFE6-896E5C1CF163}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F23AA637-31D5-4526-B5C6-9FF89E16202C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F33B0E47-DB00-4DF3-B930-A3C558D58B33}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F3FAE2B3-0961-40A7-94C7-67A28967BE58}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F459EADB-5903-48D5-864C-2B7B46AB1424}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F51BC478-D997-4C56-988D-79D9EEAAD1EC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F5C6D1A4-502C-4EC2-A472-D14BE3311335}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F5D23930-23C6-440E-AB55-D019E1171539}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F5DEE77C-87EB-4E00-BBF9-8CBF3BDEA7AF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F5EC0F1E-A3EB-49EA-BD87-989899B6E1C9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F664EA90-9B91-4825-9B51-5635AC38CCA6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F7F932D6-A6BE-4273-9950-ECBD72170DBF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F82FD7D4-2EC8-40B3-A141-DE051C98DCE9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F8681E4A-3B1B-46C5-9A0E-E4BDCD240A92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F9476885-40EB-4405-878A-193BAF18CE9B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F9A34E6B-4C2A-4F58-B302-79CACCD62C5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{F9B659A0-6F32-4D69-A7D0-29A0B8CDDC16}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FA08D9EC-0C7B-4C37-8D7A-E7837B997E90}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FA13560C-D18C-4BE6-AE80-EBEFC6E5AD3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FA77AD79-09CF-41FB-B171-CC856F9E737F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FB5DDAB7-6AA5-4E97-9541-5A75ADDF4ABA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FB122CE1-2604-4570-9113-0536B0B99373}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FB65F713-07A1-404D-889A-5789E383AB02}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FB9A7A3B-2452-4A42-AE48-B197DEEBBDF8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FBC8307B-4BD0-46F1-8350-122585D75DB2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FC105E0D-AE24-43F2-89AA-E8AB8F96EF6E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FC4EDF66-0547-4F1A-AE96-7CFCAD711C90}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FC51DED7-D056-45E5-A4FF-A308E2DECFA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FC780A3C-EE81-47B9-97F0-4886EE215105}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FD34EB96-89FA-43CC-9C37-D1D5B099D28F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FD4DCB8B-C33A-4E70-A351-6FAB7E1071A4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FD99520A-E900-4F8D-9092-22705622D2D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FDDF521B-0EBE-4D15-838C-73E2D851161B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FE0BB4EE-ECC6-4696-BED1-A802ACFECA80}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FEA247FA-3E92-4962-BD8F-454CE943D8A8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FEB6CDEC-70F6-4D2B-BCA4-1AB3BCDCC513}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FF442B5E-B5C0-4469-85C8-4B0B2A579EE9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Interface\{FF609434-EB47-481B-BA0E-1D2B467629A5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\NLS.UrlCatcher]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\NLS.UrlCatcher.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Replace.HBO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Replace.HBO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpecSoft2.BrowserHook]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpecSoft2.BrowserHook.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpecSoft2.IExplorerHelper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpecSoft2.IExplorerHelper.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Backup]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Backup.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.EngineListener]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.EngineListener.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Log]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Log.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.LogRecord]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.LogRecord.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Paths]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Paths.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Quarantine]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Quarantine.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.RunAs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.RunAs.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Scanner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.Scanner.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.SearchItem]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.SearchItem.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.ThreatCollection]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyAxe.ThreatCollection.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyFalcon.PopupBlockerConnector]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SpyFalcon.PopupBlockerConnector.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TDS.MyBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TDS.MyBHO.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustIn.activator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustIn.activator.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustInContext.ContextualAds]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustInContext.ContextualAds.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustIn.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TrustIn.StockBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Tubby.ToolBandObj]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Tubby.ToolBandObj.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\winapi32.Intelinks]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\winapi32.MyBaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\winapi32.MyBHO]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\wow.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\wow.ToolBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\WStart.WHttpHelper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\WStart.WHttpHelper.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.activator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.activator.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.ParamWr]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.ParamWr.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.StockBar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ZToolbar.StockBar.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{00B3D2B1-1EAD-4611-A348-9ECBC4C565A7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{03F89BF1-127B-44F3-B6F4-5A18FEA674CD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{049FECE3-18C7-4023-A1BE-CFAA2C4EE387}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{04B12611-E1E1-45E3-9376-91984B957880}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{13693777-5B9D-4AFC-99F1-650F569A0EB0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{177E74D6-E1D1-4D15-9D36-85399BA00729}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{244B730E-D899-4E38-9428-03D1143242E0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{27B1DED9-7493-4204-AFCE-9AFD4B7FC662}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{283ED043-D403-4808-BF28-FCDE29DCF1FB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{2A762197-1159-441E-BE28-4160C5494A66}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{2BB3BCBF-411A-4C67-8E69-F4BB301DC333}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{2C02E5FC-7FE3-4122-911F-829314FE9BBC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{2DA226F0-FE43-4F80-A94A-1848039DE0DD}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{31E956BF-8CA9-4D75-B534-7EBC79770002}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{31EA8BF4-9F47-4A04-A33A-66D6B22A40CC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{31F9B5A7-5B94-445D-922C-E97BF52F5FD7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{32BD20FD-41FD-47FB-9BC9-28DCBD7D55D7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{3C4CCBFA-2ADA-43F3-9A40-F729DD31EC5A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{40331B9F-75E5-4E1E-B511-5AA6638B9ADE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{42FC3840-020C-4E93-A34C-4DF1A6330FBB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{50450F27-B90B-422B-A4C9-5EC5A5B78001}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{506146FD-9499-49A8-AEDE-692C173B2AA4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{547AB549-4DD8-4ea0-B070-F6EA062148FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{55149956-1A81-44F8-A00A-F9CF7CA03329}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{5A74E275-351B-4072-8F0B-CBE2B7231B37}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{5E05EA9F-1EA7-4D0B-A09B-D5E29EC758B9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{60F94D7D-563E-4942-B5EC-2DE9C135C139}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{661173EE-FA31-4769-97D4-B556B5D09BDA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{6B112EBD-0C90-4AC4-A969-F36797F00006}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{6B677F1F-F86C-4757-BF24-7D865EF20639}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{6D7F9517-F134-45E3-BF2E-73414FF15CA1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{6E9E448E-B195-4627-953C-5377FA9BBA36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{728E63B0-5165-4E98-9C83-EF987EEB66C9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{77A7D7AB-576A-4B90-B4EE-909093C3BC69}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{7885264B-8B30-46EB-8361-ECA766800258}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{795175C7-3F75-4F45-AB6C-4FFE32A85BCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{80ED1EB2-55FB-4434-BD41-E1645A370158}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{823B335C-00DE-4886-BE7A-FBDC0F69294E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{84C94803-B5EC-4491-B2BE-7B113E013B77}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{8B076501-1D1B-4B26-9492-FDB8EEE00D7F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{96467F12-0518-4E85-AC6A-4858017F1400}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{9A4EC679-4D9A-4165-8562-9584E13A9CEA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{9F99FD1A-5C53-4B82-981A-92A0F587D59B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A0181CF2-4A15-4CB5-88D7-15EAA2D08A46}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A321A998-2771-4235-B458-6B09AF6463B5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A366DE26-3628-46F9-9ABA-0BD450247999}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A48995B0-2BB5-4246-B0EA-55B2FFCF9129}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A538B417-2054-4F1D-9843-0BC8F94B9889}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A569F6C9-29F0-43BC-80CF-6BA138C66108}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{A8954909-1F0F-41A5-A7FA-3B376D69E226}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{ACF3DAB0-D308-4B7A-BFE3-E6C0FAFEB1E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{AE68E48B-1A55-49D7-BF9F-A8DFDA47A91F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{B1C54189-72F0-4353-987B-18FA221BEF09}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{B4E17829-DACB-4320-9ABF-DCB382221FC2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{B73CD73D-026D-43A5-97D4-D175A5DEC129}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{B82C3D8C-F764-4B4E-8272-DC1185CE12FC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{B8CE2641-0F08-43A1-8F28-3AE65B395CB3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{BE9DD753-BB1A-4B56-9A06-5BD5E02C90AE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{c094876d-1b0e-46fa-b6a6-7ffc0f970c27}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{C13F6A43-3C5A-429A-87D5-3BBF60099CF0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{C17EB50A-667E-43B4-A53E-5B73F46AA009}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{C1A4C0C9-DBD0-493A-93F8-0B05EDC96224}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{C97C3B7C-E022-4FA8-B1A7-1C28270FFAFF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{CD3A8ECE-6016-469E-9964-C479F9157BCC}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{CDC0999C-999C-4EE1-875B-5C3542641768}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{DFCDA823-80C5-4F55-B328-7EFD4AFBD9A0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{E6CD430B-4CDF-4D5E-9071-16085471B882}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{EFA1EC0F-8359-41B7-A178-7DD6805A0C79}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{F83E8F99-AE49-45D6-92B4-59854BF0A759}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{F863FC64-E607-453D-A69B-03911B71707E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{FC33C950-7B73-4882-AAB2-0D4611796A27}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{FEBB9141-2FF9-4FC8-BA91-1CE79DDE25CF}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft]>>cleanup.reg
echo "ATI_VER"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Active Setup\Installed Components\{Y479C6D0-OTRW-U5GH-S1EE-E0AC10B4E666}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\drsmartload]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Desktop\General]>>cleanup.reg
echo "WallpaperFileTime"=->>cleanup.reg
echo "WallpaperLocalFileTime"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main]>>cleanup.reg
echo "Default_Page_URL"="http://www.microsoft.com/isapi/redir.dll?prd=ie&pver=6&ar=msnhome">>cleanup.reg
echo "Default_Search_URL"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo "HomeOldSP"=->>cleanup.reg
echo "Local Page"="%SystemDrive%\\windows\\system32\\blank.htm">>cleanup.reg
echo "Search Bar"=->>cleanup.reg
echo "Search Page"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo "Start Page"="http://www.microsoft.com/isapi/redir.dll?prd={SUB_PRD}&clcid={SUB_CLSID}&pver={SUB_PVER}&ar=home">>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Search]>>cleanup.reg
echo "SearchAssistant"="http://ie.search.msn.com/{SUB_RFC1766}/srchasst/srchasst.htm">>cleanup.reg
echo "CustomizeSearch"="http://ie.search.msn.com/{SUB_RFC1766}/srchasst/srchcust.htm">>cleanup.reg
echo "Default_Search_URL"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Toolbar]>>cleanup.reg
echo "{052b12f7-86fa-4921-8482-26c42316b522}"=->>cleanup.reg
echo "{0D045BAA-4BD3-4C94-BE8B-21536BD6BD9F}"=->>cleanup.reg
echo "{18668683-731c-48fa-b1b9-ad013748fb00}"=->>cleanup.reg
echo "{1a29a79a-b9c8-44a9-bedf-7fadde3cf33f}"=->>cleanup.reg
echo "{29C5A3B6-9A8D-4FA0-B5AD-3E20F4AA5C00}"=->>cleanup.reg
echo "{31615D5C-5126-448A-818A-A7CDFEE85A9B}"=->>cleanup.reg
echo "{44d22a64-2399-4edf-8b32-f2c729c1e8a7}"=->>cleanup.reg
echo "{479fd0cf-5be9-4c63-8cda-b6d371c67bd5}"=->>cleanup.reg
echo "{5d4831e0-5a7c-4a46-afd5-a79ab8ce36c2}"=->>cleanup.reg
echo "{736B5468-BDAD-41BE-92D0-22AE2DDF7BCB}"=->>cleanup.reg
echo "{74a49269-9779-48b4-a0e6-3a5af2a3ade6}"=->>cleanup.reg
echo "{84938242-5C5B-4A55-B6B9-A1507543B418}"=->>cleanup.reg
echo "{860c2f6b-ca82-4282-9187-beccbb66f0af}"=->>cleanup.reg
echo "{8aed5df3-6e0b-4930-b1a5-f8aa8d757497}"=->>cleanup.reg
echo "{96ebbe6a-2864-4345-b32b-26ee9be524b5}"=->>cleanup.reg
echo "{9EAC0102-5E61-2312-BC2D-4D54434D5443}"=->>cleanup.reg
echo "{a19ef336-01d4-48e6-926a-fe7e1c747aed}"=->>cleanup.reg
echo "{a2595f37-48d0-46a1-9b51-478591a97764}"=->>cleanup.reg
echo "{A6790AA5-C6C7-4BCF-A46D-0FDAC4EA90EB}"=->>cleanup.reg
echo "{bf1ced2c-4b3f-4079-a330-864eda5a4cff}"=->>cleanup.reg
echo "{CC18AE76-7E65-4258-A193-9EA0C52DA6B8}"=->>cleanup.reg
echo "{d1ac752e-883f-4ed8-8828-b618c3a72152}"=->>cleanup.reg
echo "{DF4E7A0C-E233-4906-B4C1-A404356541FF}"=->>cleanup.reg
echo "{E99D4D0C-EB54-46AF-B62A-3AA1F31D53E5}"=->>cleanup.reg
echo "{EA038DDD-0FE0-41f5-BA60-FC3660529E71}"=->>cleanup.reg
echo "{F06E2ABE-3A50-4079-BE25-FC100D9EAA25}"=->>cleanup.reg
echo "{F0993251-2512-4710-AF6E-0A13EA199D02}"=->>cleanup.reg
echo "{fbea0445-4c4a-4136-864a-c72a4a182a84}"=->>cleanup.reg
echo "{fe2d25c1-c1db-4b5e-9390-af1cb5302f32}"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\URLSearchHooks]>>cleanup.reg
echo "{66BD9D4C-FAF3-38B9-F43F-169E15DB1A3C}"=->>cleanup.reg
echo "{9114249C-F5E5-36A3-4480-169B869E0556}"=->>cleanup.reg
echo "{FEFEC367-0557-50DA-92D8-EFF9A710070B}"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VideoPlugin]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VideoExtension]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\curre]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion]>>cleanup.reg
echo "ProgramVersion"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\AntiVermeans.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\AntiVermins.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\AntiVerminser.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\antivirusgold.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\AntivirusGolden.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\app paths\ContraVirus.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwareWipe.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwareWiped.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwareWiped 6.1.exe 6.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwaresWipeds.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwareWipePro.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\MalwareWiper.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Malware-Wipe.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\spyaxe.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyCrush.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyCrush 3.1.exe 3.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyDawn.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyFalcon.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Spy-Heal.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyHeal.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyHeals.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 3.6.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 3.7.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 3.9.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 4.0.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 4.1.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpyLocked 4.3.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Spy-Locked.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Spy-Quake2.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Spyware-Quake.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpywareLock.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpywareLocked.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpywareLocked 3.5.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpywareQuake.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\SpywareStrike.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vb.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusBlast.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\Virus-Burst.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusBurst.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\virusburster.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\virusbursters.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\virus-bursters.exe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusProtectPro 3.3.exe 3.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusProtectPro 3.4.exe 3.4]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusProtectPro 3.5.exe 3.5]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusProtectPro 3.6.exe 3.6]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\VirusProtectPro 3.7.exe 3.7]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{1ca480cd-c0e5-4548-874e-b85b17905b3a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{3e9b951e-6f72-431b-82cf-4a9fbf2f53bc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{4da4616d-7e6e-4fd9-a2d5-b6c535733e22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{724510C3-F3C8-4FB7-879A-D99F29008A2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{7288C0BD-7F2F-4229-A0C4-3C90A6E2A881}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{7A932ED2-1737-4AB8-B84D-C71779958551}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{7caf96a2-c556-460a-988e-76fc7895d284}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{893fad3a-931e-4e53-b515-b1426d63799b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{8d83b16e-0de1-452b-ac52-96ec0b34aa4b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{b0398eca-0bcd-4645-8261-5e9dc70248d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{e0103cd4-d1ce-411a-b75b-4fec072867f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{edbf1bc8-39ab-48eb-a0a9-c75078eb7c8e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{f79fd28e-36ee-4989-aa61-9dd8e30a82fa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objecta\{f7d40011-29bb-43eb-9c97-875ce89e9e36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{00000000-59D4-4008-9058-080011001200}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{00000000-C1EC-0345-6EC2-4D0300000000}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{00000000-F09C-02B4-6EC2-AD0300000000}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{00110011-4b0b-44d5-9718-90c88817369b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{07A78AEA-4A54-4967-9A60-4B68592D30C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{086ae192-23a6-48d6-96ec-715f53797e85}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{0976BE78-EA53-4DD6-91E6-E6175940032B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{0B9B7B2E-30E3-4C5D-AD2C-C38724979B4B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{0CB66BA8-5E1F-4963-93D1-E1D6B78FE9A2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{0D4C7057-EAD2-44C6-AD18-9092905F28F1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{0F7E55FC-6D46-491C-922B-4EBC6636B561}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{100B21CD-3B97-44FB-B1C0-EA6249E482E8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{11904ce8-632a-4856-a7cc-00b33fe71bd8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{150fa160-130d-451f-b863-b655061432ba}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{15ACE85C-0BB1-42d1-9E32-07EB0506675A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{16789285-C094-4aa6-88B9-2BB9DC13A485}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{16875E09-927B-4494-82BD-158A1CD46BA0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{17da0c9e-4a27-4ac5-bb75-5d24b8cdb972}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{184746EC-9E9D-4C7D-B9E7-9039EBD801A9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{192c5b4a-3efd-40c7-9f99-c472deb8efc0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{196B9CB5-4C83-46F7-9B06-9672ECD9D99B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1a1ddc19-5893-43ab-a73f-f41a0f34d115}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1B68470C-2DEF-493B-8A4A-8E2D81BE4EA5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1b68470c-2def-493b-8a4a-8e2d81be4ea5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1c4da27d-4d52-4465-a089-98e01bb725ca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1ca480cd-c0e5-4548-874e-b85b17905b3a}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1CBC7F79-C21A-4468-8116-38E8AD875816}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1da7dbe8-c51b-4ae4-bc6e-21863349b0b4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1f48aa48-c53a-4e21-85e7-ac7cc6b5ffb1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1f48aa48-c53a-4e21-85e7-ac7cc6b5ffb2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1F6FE2C2-6040-4645-9053-7F689AFFE176}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{1FC80E00-41B0-4F74-BC16-2C83ED49CAC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{202a961f-23ae-42b1-9505-ffe3c818d717}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{208D7BCC-9857-4C9E-823B-D04E72490A67}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2513A321-CB50-4C5F-91C5-80342AFACFB1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{27150f81-0877-42e9-af13-55e5a3439a26}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2724E072-19D0-486d-A819-9D914191AE92}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{274c0420-ebe0-4f1d-b473-edd1aa9b85dd}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{27A7FB75-FB40-4f94-BCF6-4945BCC8BAAF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2810fba5-55ec-4bee-8263-0e2fa5883768}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{283A0EE3-2CC1-45AB-8207-B1D7B69C7F83}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2C014816-5BD4-4166-85EA-62FE05E517C3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2d38a51a-23c9-48a1-a33c-48675aa2b494}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2e246fae-8420-11d9-870d-000c2917de7f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{2e9caff6-30c7-4208-8807-e79d4ec6f806}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{34E6F97C-34E0-4CE5-B92B-F83634BEDC01}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{366B2151-E1C7-44a3-86A3-E5686C2A3D2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{36ADA89D-2440-4DC4-820A-3A05E8630935}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{39f25b12-74ff-4079-a51f-1d70f5b08b84}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{3ceff6cd-6f08-4e4d-bccd-ff7415288c3b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{3e9b951e-6f72-431b-82cf-4a9fbf2f53bc}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{405132A4-5DD1-4BA8-A181-95C8D435093A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{4118A625-1B64-4ED1-A2E9-76DEC529D2D2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{4734044c-7427-43d8-adbe-df942e52bef2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{479fd0cf-5be9-4c63-8cda-b6d371c67bd5}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{47C54F02-1B28-45F1-AE46-B5CDFB6E7926}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{49CF52D7-8D58-4E22-A874-AAD721F5B523}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{4da4616d-7e6e-4fd9-a2d5-b6c535733e22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5321E378-FFAD-4999-8C62-03CA8155F0B3}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5574E139-F59C-4bee-9A61-150B0D3A16C7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5753791b-f607-48ca-814e-91c14d081f9e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{590FFB84-6A29-4797-9C0E-B15DF2C4CDCB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5DDE5591-A8AB-4897-93EF-1E4E943F85A7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5E8FA924-DEF0-4E71-8A82-A11CA0C1413B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{5f4c3d09-b3b9-4f88-aa82-31332fee1c08}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{62E2E094-F989-48C6-B947-6E79DA2294F9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{66BD9D4C-FAF3-38B9-F43F-169E15DB1A3C}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{67270207-b9ee-4d26-9270-860fdb060ca1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{67982BB7-0F95-44C5-92DC-E3AF3DC19D6D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{686a161d-5bd1-4999-8832-6393f41e564c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{6AB7158B-4BFF-4160-AD7D-4D622DF548CF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{6AC3806F-8B39-4746-9C38-6B01CB7331FF}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{6F4DB301-0698-4AF4-A8A2-473996DF425A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7070a8f9-08a4-ca47-0ab0-1eb9e4ee1f3b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{724510C3-F3C8-4FB7-879A-D99F29008A2F}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7288C0BD-7F2F-4229-A0C4-3C90A6E2A881}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{746455fe-d059-47e7-af0e-140e03f5a447}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7507739F-BC2E-4DC3-B233-816783C25DC9}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{755bbd1a-aa59-456c-afeb-b4c42c4dcb6f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{77701e16-9bfe-4b63-a5b4-7bd156758a37}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{78364D99-A640-4ddf-B91A-67EFF8373045}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{784aa380-13f2-422e-8540-f2280f1dd4f1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7A7E6D97-B492-4884-9ABB-C31281DCC4F2}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7A8F5B7A-A74F-495E-8A33-DF6226D2BAD8}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7A932ED2-1737-4AB8-B84D-C71779958551}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7AF59C20-A1D8-4C1C-927A-99DD9F2A9E0B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7b4d79df-9ef0-429d-a0e9-d9b138c6a53b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7b55bb05-0b4d-44fd-81a6-b136188f5deb}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7caf96a2-c556-460a-988e-76fc7895d284}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{7fcf04b6-6354-47ef-b45e-a48268e92757}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{826B2228-BC09-49F2-B5F8-42CE26B1B711}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{826B2228-BC09-49F2-B5F8-42CE26B1B712}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{8333c319-0669-4893-a418-f56d9249fca6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{85E659D3-E110-4CE7-9D99-416FD61A1720}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{860c2f6b-ca82-4282-9187-beccbb66f0af}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{87185e78-a61b-4db3-965a-3235bbd7a622}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{873eb32d-ae1a-4183-89bd-45a77f761be4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Browser Helper Objects\{88418AA3-16F5-4FC2-A9D8-90B1266DF841}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Browser Helper Objects\{893fad3a-931e-4e53-b515-b1426d63799b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Browser Helper Objects\{8bf5b8fc-11cb-409f-8c91-4d4ca04a1b6d}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{8D82BB89-B58C-4F21-9C5D-377F65947806}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{8d83b16e-0de1-452b-ac52-96ec0b34aa4b}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{8dc8f96d-34f7-1501-a2a4-631341aa3ac1}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{8E6CFDFE-79A8-421C-B854-04081690CE6B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9114249C-F5E5-36A3-4480-169B869E0556}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9896231A-C487-43A5-8369-6EC9B0A96CC0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9C5875B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9c691a33-7dda-4c2f-be4c-c176083f35cf}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9EAC0102-5E61-2312-BC2D-4D54434D5443}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{9FA1AA9E-7ECF-4f3b-AC23-7F09E01298E4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A1770FD6-A7CB-44DA-AD2C-692D2A2B521B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{a2595f37-48d0-46a1-9b51-478591a97764}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A40D9D65-5C09-421A-AFF8-2160D7ABD4E7}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{a43385f0-7113-496d-96d7-b9b550e3fcca}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A5845A98-EBDA-4670-9DE6-5201C506E741}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A646CE7E-951E-44d1-B93C-F7136DA41E58}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A6ACAE64-F798-4930-AD86-BD3FB32038DB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{a6f42cad-2559-48df-af30-89e480af5dfa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{A717DBE3-D78D-4aa7-BDCF-2CC06B36371B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{ABCDECF0-4B15-11D1-ABED-709549C10000}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{ae18da4e-be15-4925-81bb-890c04af0200}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{AEECBFDA-12FA-4881-BDCE-8C3E1CE4B344}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{b0398eca-0bcd-4645-8261-5e9dc70248d0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B212D577-05B7-4963-911E-4A8588160DFA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B53455DB-5527-4041-AC41-F86E6947AA47}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B72549CE-5644-4116-B8A4-A2B042321EC4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B75F75B8-93F3-429D-FF34-660B206D897A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{B8C5186E-EC37-4889-9C2E-F73649FFB7BB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{BA12780E-B91E-41A7-A51A-528CBD64284E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{C0E5FF11-4AE0-4699-A6A7-2FB7118F2081}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{c3703265-4671-4858-92a4-cba6a7b3bb45}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{C3E7E8D3-0B97-4FF3-B1BD-DAB4B04CD697}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{C7CF1142-0785-4B12-A280-B64681E4D45E}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{CA0E28FA-1AFD-4C21-A8DC-70EB5BE2F076}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{CDE8EAB9-CEF3-4885-B12F-26960A25C800}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{cf021f40-3e14-23a5-cba2-717765721306}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{d1ac752e-883f-4ed8-8828-b618c3a72152}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D34F5D71-99E4-4D96-91CA-F4104F69B8AE}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D5EFDB0E-4F51-414F-B740-54A5C87A8957}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D61D7E1A-6613-49CA-B6F9-51DB248E209D}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{D76F06D4-1659-482d-BCB2-3F731BFE0941}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{d869742a-e5d2-4624-96c7-aae26170665e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{da7ff3f8-08be-4cac-bc00-94d91c6ae7f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{DBE5BEE8-F032-11DB-826A-C4BB56D89593}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e0103cd4-d1ce-411a-b75b-4fec072867f4}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{E26CEADA-67B0-4543-BE8B-307F00265118}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e2b2b5a1-b48c-4886-a318-723916a01024}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e2ddf680-9905-4dee-8c64-0a5de7fe133c}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e3eebbe8-9cab-4c76-b26a-747e25ebb4c6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e52dedbb-d168-4bdb-b229-c48160800e81}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e6d5237d-a6c7-4c83-a67f-f9f15586fa62}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{e7afff2a-1b57-49c7-bf6b-e5123394c970}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{edbf1bc8-39ab-48eb-a0a9-c75078eb7c8e}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{EEE7178C-BBC3-4153-9DDE-CD0E9AB1B5B6}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{F4CF814F-970F-405D-A42C-0CE06EB97373}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{f4d74aaa-a178-4463-846b-b4bc87a024e0}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{F4E04583-354E-4076-BE7D-ED6A80FD66DA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{F5BDC469-1EC5-4193-824B-2E209993D183}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{f79fd28e-36ee-4989-aa61-9dd8e30a82fa}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{f7d40011-29bb-43eb-9c97-875ce89e9e36}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FCADDC14-BD46-408A-9842-CDBE1C6D37EB}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{fd9bc004-8331-4457-b830-4759ff704c22}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{fe2d25c1-c1db-4b5e-9390-af1cb5302f32}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FEFEC367-0557-50DA-92D8-EFF9A710070B}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FE6C16C4-16AD-47B6-B250-26AD1829E49A}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{ff1bf4c7-4e08-4a28-a43f-9d60a9f7a880}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{ffd2825e-0785-40c5-9a41-518f53a8261f}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Browser Helper Objects\{FFF5092F-7172-4018-827B-FA5868FB0478}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Browser Helper Objects\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFA}]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Currentversion\Explorer\Browser Helper Objects\{FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SharedTaskScheduler]>>cleanup.reg
echo "incestuously"=->>cleanup.reg
echo "{01b55afa-f451-474b-9e91-c35b24d02641}"=->>cleanup.reg
echo "{01d8d081-0f76-4ab5-b5e4-9b23a709670e}"=->>cleanup.reg
echo "{05a91164-3c96-47d6-aa74-2c855791b2d0}"=->>cleanup.reg
echo "{06fe8138-6c67-484f-ab1f-42abddd2cbb6}"=->>cleanup.reg
echo "{07a582e8-bae3-457d-9d29-2048de45a369}"=->>cleanup.reg
echo "{0bad5052-665d-40d4-a9bd-a2891eaafb42}"=->>cleanup.reg
echo "{0BC9BC01-54D4-4CCE-2B7D-955164314CD4}"=->>cleanup.reg
echo "{0c5a0fff-9164-493b-93e0-17446374e0a0}"=->>cleanup.reg
echo "{0c7416f0-dd23-420f-97f5-aae352ea2bf1}"=->>cleanup.reg
echo "{0d9eb558-0666-479e-868a-21b1d1a53bd1}"=->>cleanup.reg
echo "{0e4e5110-a772-4c4a-a7dc-137fe10abd6e}"=->>cleanup.reg
echo "{0ffdaffc-d80d-47bf-b9b0-895ea240f4de}"=->>cleanup.reg
echo "{11853d5f-f894-4cc7-bbc3-fc7a9dcfd896}"=->>cleanup.reg
echo "{1559e6c1-7e5e-4461-9457-6a2dea85eb9f}"=->>cleanup.reg
echo "{16875E09-927B-4494-82BD-158A1CD46BA0}"=->>cleanup.reg
echo "{168cf174-6dab-461c-a761-a7adfa5a5719}"=->>cleanup.reg
echo "{18a8f76b-804b-4981-b87c-460699971a4b}"=->>cleanup.reg
echo "{18c3fa26-192e-4c17-9c0f-76dc9b56c0c2}"=->>cleanup.reg
echo "{1a01a98c-4f25-42e1-971a-185cf63569b2}"=->>cleanup.reg
echo "{1b17f1db-790e-4d42-8e0c-d4d19123ee5b}"=->>cleanup.reg
echo "{1B68470C-2DEF-493B-8A4A-8E2D81BE4EA5}"=->>cleanup.reg
echo "{1C3B31AE-FD16-D2CE-43FF-DC4CD5C1BC5E}"=->>cleanup.reg
echo "{1c6fd4e6-49ce-4178-875b-df70eac260c5}"=->>cleanup.reg
echo "{1cb82d6d-f9a3-40c4-8ad5-6d7ea00ed6ad}"=->>cleanup.reg
echo "{2be26361-58a2-4836-be57-b838f02fec3f}"=->>cleanup.reg
echo "{2016a466-91a2-43c6-97d8-2fd380f065ef}"=->>cleanup.reg
echo "{203B1C4D9-BC71-8916-38AD-9DEA5D213614}"=->>cleanup.reg
echo "altmannsberger"=->>cleanup.reg
echo "anatolian"=->>cleanup.reg
echo "{23f9d371-0bd6-41ab-a00b-a1f9342d6390}"=->>cleanup.reg
echo "{24c60b9b-26b5-4201-9f7a-fb9219356ae9}"=->>cleanup.reg
echo "{24E27EA9-FCF3-444F-BD80-20543BA5D946}"=->>cleanup.reg
echo "{25b7d2fd-4f71-46d1-801a-7de323e4ec82}"=->>cleanup.reg
echo "{27321538-5739-4aa1-b84c-7d18e4383f1f}"=->>cleanup.reg
echo "{2acf3add-34a1-4f2f-99cf-cc69785d1e90}"=->>cleanup.reg
echo "{2bb2b2d6-8b86-412e-acca-d656a8979b3e}"=->>cleanup.reg
echo "{2C1CD3D7-86AC-4068-93BC-A02304BB8C34}"=->>cleanup.reg
echo "{2fdde73c-273e-4e55-84dc-455de06e4866}"=->>cleanup.reg
echo "{315f73fc-a7b1-49e6-a3c4-cc00cf8a3fdb}"=->>cleanup.reg
echo "{31EE3286-D785-4E3F-95FC-51D00FDABC01}"=->>cleanup.reg
echo "{336ec37f-54bf-4f13-8237-03f64fa591e7}"=->>cleanup.reg
echo "{33b8d257-07f6-4c06-8605-94bc21728635}"=->>cleanup.reg
echo "{35a88e51-b53d-43e9-b8a7-75d4c31b4676}"=->>cleanup.reg
echo "ecgfb"=->>cleanup.reg
echo "chrysenic"=->>cleanup.reg
echo "contraposition"=->>cleanup.reg
echo "{3afa7405-68e8-4bdb-920e-0d506f552826}"=->>cleanup.reg
echo "{3baa1ad8-ee49-4772-bf0b-f55083e0f7aa}"=->>cleanup.reg
echo "{3c767c6b-602d-4b9b-829d-a3dc5b2d89dd}"=->>cleanup.reg
echo "{3e4155b8-5a4a-4e95-83b2-ab032da9acbc}"=->>cleanup.reg
echo "{3F245C2A-1558-3CCA-04A8-7AA23B60E40F}"=->>cleanup.reg
echo "{40dcff6e-af8d-4183-8ebe-a82270ac449e}"=->>cleanup.reg
echo "{41eaa909-24be-4d24-877f-076a0576a6fd}"=->>cleanup.reg
echo "{4233ac08-a2c4-4742-a0b4-83719613d62c}"=->>cleanup.reg
echo "{429F4BB8-7BF7-4152-8011-3C6F9EB7E892}"=->>cleanup.reg
echo "{44e670f2-d57b-4815-a576-955d17dbbf2d}"=->>cleanup.reg
echo "{4688f900-0d0c-4788-b297-59cc10e70ccc}"=->>cleanup.reg
echo "{46f5a8b0-0b73-48c5-9e40-3c443a43c161}"=->>cleanup.reg
echo "{49f29a27-2451-4314-a480-8d2481ce6c81}"=->>cleanup.reg
echo "{4a9e875b-d032-45e4-8294-789fe3be5b19}"=->>cleanup.reg
echo "{4d993022-0899-4599-b4b6-0f887d0802e6}"=->>cleanup.reg
echo "{4eb548e5-1fb1-4f83-b49f-a3101fe5fc97}"=->>cleanup.reg
echo "{4F141CBA-1457-6CCA-03A7-7AA21B61EA0F}"=->>cleanup.reg
echo "{4f5f16ef-af9d-4fe6-8410-f0670b58979d}"=->>cleanup.reg
echo "{4fbbdfd6-2ca9-4bba-93e4-aadf75321bca}"=->>cleanup.reg
echo "{4fc003c3-87a0-489c-85cd-878246eb2d18}"=->>cleanup.reg
echo "{547aaa89-7e6b-42b4-b112-a64955f86a2a}"=->>cleanup.reg
echo "{55059d4f-a1ac-4837-ae07-4859101f598d}"=->>cleanup.reg
echo "{588599f4-de26-4c28-ba14-f4eb17e33481}"=->>cleanup.reg
echo "{5889f7b0-3277-4266-b4bd-1bf2d394aee6}"=->>cleanup.reg
echo "{596e4935-4d3b-4a3c-842d-2efd1b3de598}"=->>cleanup.reg
echo "hinnible"=->>cleanup.reg
echo "fairydom"=->>cleanup.reg
echo "{5aaf6542-f4ba-4df4-873d-4902ecbe794c}"=->>cleanup.reg
echo "{5bc82bdb-bc03-4671-9a78-3ef2b68449de}"=->>cleanup.reg
echo "{5bf53d50-b1ec-47b6-a00a-0bd32baeb7ef}"=->>cleanup.reg
echo "{5c4f2cbc-f32d-4a03-9812-86f39379811b}"=->>cleanup.reg
echo "{5f938c17-fbc7-4a3c-8526-85e5b1a1f762}"=->>cleanup.reg
echo "{6076d2b1-634c-4685-843b-f826045ea5dc}"=->>cleanup.reg
echo "{62eb0924-19d2-4226-b4b9-8ad1f70904c1}"=->>cleanup.reg
echo "{634be415-da12-496b-b89e-329b73c4807f}"=->>cleanup.reg
echo "{64ba30a2-811a-4597-b0af-d551128be340}"=->>cleanup.reg
echo "{6570b782-1a41-4053-b2c9-12c7fcf0d84d}"=->>cleanup.reg
echo "{6625fc6c-731c-443a-b3f0-2c8c520a1766}"=->>cleanup.reg
echo "{68c7f143-f9ea-4ee0-a06a-ad4ff3dbe8c3}"=->>cleanup.reg
echo "{6AC3806F-8B39-4746-9C38-6B01CB7331FF}"=->>cleanup.reg
echo "{6ad686b9-ab56-4ebc-a804-9f70b55b4577}"=->>cleanup.reg
echo "{6af69c4d-420a-4c95-b34f-e4635f84f53b}"=->>cleanup.reg
echo "{6c69e319-0d03-47da-997a-36586cbc53b3}"=->>cleanup.reg
echo "{6e886df7-914d-48f0-86b3-a5cf24385361}"=->>cleanup.reg
echo "{6f396a67-f473-48c9-9950-636ce17e584e}"=->>cleanup.reg
echo "deterioraton"=->>cleanup.reg
echo "{70305bc2-b289-4209-a344-be21f22bc930}"=->>cleanup.reg
echo "{70d17a5f-ef27-4295-90f5-20ad6f24834f}"=->>cleanup.reg
echo "{70fbd528-2d3c-4a00-9b8c-bbf441e534be}"=->>cleanup.reg
echo "{716002db-288c-4bf0-80cd-a467e78d8b55}"=->>cleanup.reg
echo "{735e980d-45d2-4777-af82-9923d3c8d3ae}"=->>cleanup.reg
echo "{7916f057-223f-4612-ac84-e882cbe043d4}"=->>cleanup.reg
echo "{7A7E6D97-B492-4884-9ABB-C31281DCC4F2}"=->>cleanup.reg
echo "{7be183d2-a42d-4915-bf60-ec86fbf002cf}"=->>cleanup.reg
echo "{7fa55359-7223-410f-bc82-efb3e3ded07f}"=->>cleanup.reg
echo "hubbsi"=->>cleanup.reg
echo "bestreak"=->>cleanup.reg
echo "{8068bf35-3711-4dce-a2f3-f008cecfe894}"=->>cleanup.reg
echo "{80ced3d6-ece9-48ba-8df8-2503d8d87c2b}"=->>cleanup.reg
echo "{8329660f-e248-4872-98cc-fb9c4fec7ba8}"=->>cleanup.reg
echo "{8670ee50-01f9-47da-ac1e-cf8549e9e521}"=->>cleanup.reg
echo "{89aef01d-d237-49c7-84dc-4e1904c1fd31}"=->>cleanup.reg
echo "{8aa7a4d2-73c7-4fca-bef7-7923e38a3b1c}"=->>cleanup.reg
echo "{8bbe40fd-0416-4c3f-80ea-0c7ad5fb1aab}"=->>cleanup.reg
echo "furnariidae"=->>cleanup.reg
echo "{8dc1f789-e073-4363-b40d-07376bc5ecc5}"=->>cleanup.reg
echo "{8d8c2387-7f80-4022-9be6-43630a969558}"=->>cleanup.reg
echo "{8e99f990-b75a-4568-b3c8-24cbc8cbbfc1}"=->>cleanup.reg
echo "cinnamomum"=->>cleanup.reg
echo "{94524218-9af3-4643-9687-cbc2880e54da}"=->>cleanup.reg
echo "{951a98d0-dad6-4a77-8280-a494279a884b}"=->>cleanup.reg
echo "{98ca7898-6029-41ab-8f67-ea4f5e1afc22}"=->>cleanup.reg
echo "{9952355f-fefb-4764-bcd7-a993d03dd7e2}"=->>cleanup.reg
echo "{9a4b860b-b18e-4afe-9b26-2a19268eb6be}"=->>cleanup.reg
echo "{9ae613a2-a13b-4379-8d0e-86a1a78476ec}"=->>cleanup.reg
echo "{9af8f31b-b778-4413-b8ed-ae63a62e1f7d}"=->>cleanup.reg
echo "{9c0c879c-9091-45d1-807f-2adc37d7d6d6}"=->>cleanup.reg
echo "{9cc1c589-4b22-4dae-8e12-4c3b5fa12b3f}"=->>cleanup.reg
echo "{9d635a36-6b3c-4146-8625-f3aaf507bbf8}"=->>cleanup.reg
echo "{9d6fac42-a7be-4702-87ef-75d8dc14249e}"=->>cleanup.reg
echo "{9ff419a8-1748-4ca7-99df-d269465b0e8b}"=->>cleanup.reg
echo "{a0aa3e4b-31cb-4ea2-9049-22b7f5b65edb}"=->>cleanup.reg
echo "{a0c51615-738a-4542-801a-5af61614e182}"=->>cleanup.reg
echo "{A2C8F6B1-7C2A-3D1C-A3C6-A1FDA113B43F}"=->>cleanup.reg
echo "{a2cd90b5-e5a2-4aac-a504-c964a6d499df}"=->>cleanup.reg
echo "{a1c16871-b797-4ec7-bbee-83852379c390}"=->>cleanup.reg
echo "{A1D9D3F0-8C2A-9A1D-A376-2CACFB10AB72}"=->>cleanup.reg
echo "{A2D9D3F0-8C2A-2A1D-A376-1BECFB10AB72}"=->>cleanup.reg
echo "{a4029063-4fe3-422c-ac72-12905c09642a}"=->>cleanup.reg
echo "{a566f298-05a6-4b3d-b672-da7c27316430}"=->>cleanup.reg
echo "{aa6d4f53-4c8d-4549-84d2-02d584acc4e9}"=->>cleanup.reg
echo "{ab340860-fd81-4a65-b345-82eb77a66b5e}"=->>cleanup.reg
echo "{abef791f-947e-4cdf-83c3-e72a240afb67}"=->>cleanup.reg
echo "{AC1B4DA2-12FA-31F2-1A7D-CD2B14E6AD4E}"=->>cleanup.reg
echo "{af3fd9a8-1287-4159-9212-9a5b4494af70}"=->>cleanup.reg
echo "{af4fd984-a939-4c32-82b2-8bae7abe9aec}"=->>cleanup.reg
echo "{af8bca8b-a9f1-471d-bdcd-caa14be2bdd9}"=->>cleanup.reg
echo "{aea3d2df-2b2c-4d7b-81a0-d975c6dc088e}"=->>cleanup.reg
echo "{aeabe83d-672b-4717-9154-45bd6283c610}"=->>cleanup.reg
echo "{aed6f6a3-183c-488d-9f90-23db99f56e7f}"=->>cleanup.reg
echo "{b0ded443-5e68-4001-a81b-0a0001621ab8}"=->>cleanup.reg
echo "{b166be07-30a4-4d38-b781-44528a630706}"=->>cleanup.reg
echo "{B212D577-05B7-4963-911E-4A8588160DFA}"=->>cleanup.reg
echo "{b23dc537-3e13-44c7-bf67-d8405eb377f7}"=->>cleanup.reg
echo "{b292ec9f-a074-4115-8342-1f459702d8d2}"=->>cleanup.reg
echo "{b59f3ba4-98da-4b5f-8a2d-7b56fb11140b}"=->>cleanup.reg
echo "{b8b3850e-a22e-43ab-a15e-63f6e47db7e6}"=->>cleanup.reg
echo "{bb720bab-2f75-456b-a850-04d77b20f6b8}"=->>cleanup.reg
echo "{bd0fc212-0a36-4232-83cc-2063fb9282e0}"=->>cleanup.reg
echo "{bd1299cd-b98a-4ee1-9ae3-d3cb3da41d0d}"=->>cleanup.reg
echo "{bd2948f8-c949-464f-824a-6272608c739e}"=->>cleanup.reg
echo "{C1A2FDA2-1A5B-2A8F-F3A2-B22DA1A3C41D}"=->>cleanup.reg
echo "{C1A2FDA2-2A5B-2C8A-F2A2-BA2DB3A2C31C}"=->>cleanup.reg
echo "{C1A8B6A1-2C81-1C3D-A3C6-A1CCDB10B47F}"=->>cleanup.reg
echo "{c3786a8d-6426-4c29-a23f-f36e47b31e0c}"=->>cleanup.reg
echo "{c4da240e-7525-404a-b366-f50a422376d8}"=->>cleanup.reg
echo "{c704547b-26c0-4222-a034-81653c07b494}"=->>cleanup.reg
echo "{C7CF1142-0785-4B12-A280-B64681E4D45E}"=->>cleanup.reg
echo "{c82e1789-207a-4b8a-806f-76b62dfac2a2}"=->>cleanup.reg
echo "{C9FA1DC9-1FB3-C2A8-2F1A-DC1A33E7AF9D}"=->>cleanup.reg
echo "{CA14EE13-ED15-C4A2-17FF-DA4D15C1BC5E}"=->>cleanup.reg
echo "{cbb430e6-5b1b-474a-9d7e-160d4fe74bea}"=->>cleanup.reg
echo "{cc824bb2-d4b3-41f1-bba0-f8240e4cc495}"=->>cleanup.reg
echo "{ccf982af-f3aa-48c4-97c4-ecdea4bd3fc3}"=->>cleanup.reg
echo "{cd0e4a1a-dbc2-48f7-9a6a-a41cac20bddc}"=->>cleanup.reg
echo "{CD5E2AC9-25CE-A1C5-D1E2-DC6B28A6ED5A}"=->>cleanup.reg
echo "{cea2e5cd-e849-427b-80f0-59298caef1c4}"=->>cleanup.reg
echo "{ceca6f2b-247b-4ece-9b7a-d0135c8036fc}"=->>cleanup.reg
echo "{ced7d5f3-74cc-4c2f-8d60-62ebcdda0a22}"=->>cleanup.reg
echo "{cfda6372-043c-48d2-ba3c-7bfe1cf71854}"=->>cleanup.reg
echo "{D1A2E7CD-F5C1-21A8-CA2C-13D0AC72D19D}"=->>cleanup.reg
echo "{d1e5ca97-235e-4ff0-9b92-7543c9d61ff4}"=->>cleanup.reg
echo "{D56A1203-1452-EBA1-7294-EE3377770000}"=->>cleanup.reg
echo "{d7058baa-49a4-40b7-95c2-eec95cdf51f3}"=->>cleanup.reg
echo "{d7bdd42a-7e69-4bb8-aac3-d76ff65a3aa3}"=->>cleanup.reg
echo "{D81E2FC4-B0A2-11D3-21AC-07C04C21A18A}"=->>cleanup.reg
echo "{da3b49f6-8c54-4429-a275-21a86dcca413}"=->>cleanup.reg
echo "{df8c3aed-b58e-4bcb-96b3-aa1b7bbdbbd4}"=->>cleanup.reg
echo "{dfa61db1-388e-4c87-8d56-540fa229bcb4}"=->>cleanup.reg
echo "{e04408db-4812-4478-8d4d-e46edcffd3b6}"=->>cleanup.reg
echo "buys"=->>cleanup.reg
echo "{e1d3b05d-4dd9-468d-982e-c342f05436e5}"=->>cleanup.reg
echo "{e5b1e382-817e-4b74-8a96-ec78751e6acf}"=->>cleanup.reg
echo "{e71aba09-d81a-4876-baa3-df133c1dfc48}"=->>cleanup.reg
echo "{EA26CE12-DE64-A1C5-9A4F-FC1A64E6AC2E}"=->>cleanup.reg
echo "{E2CA7CD1-1AD9-F1C4-3D2A-DC1A33E7AF9D}"=->>cleanup.reg
echo "{e4c46558-da01-4637-a85e-f1ccb1c7436a}"=->>cleanup.reg
echo "{e6adaaf0-79b2-4cf1-a660-50a0b33991a1}"=->>cleanup.reg
echo "{e758745e-b8aa-47ac-a652-6307ff5f3ebf}"=->>cleanup.reg
echo "{e7aff349-39e1-4a96-a13d-24983440b44a}"=->>cleanup.reg
echo "{E802FFFF-8E58-4d2c-A435-8BEEFB10AB77}"=->>cleanup.reg
echo "{e944d14a-03aa-43e3-9d0e-4f50c4d1b005}"=->>cleanup.reg
echo "{eb86b46a-d6db-4478-8f5f-06cb2ebc1b35}"=->>cleanup.reg
echo "{ed39ecef-902e-4ed1-8434-71e8db89e5ca}"=->>cleanup.reg
echo "{ede8bed5-92cf-4482-8f51-a01cd9b3ea37}"=->>cleanup.reg
echo "cholecyst"=->>cleanup.reg
echo "{f2efa195-4785-4db1-9316-b48c64bb71da}"=->>cleanup.reg
echo "{f31aee4a-1530-4fef-8537-79c6973bff9a}"=->>cleanup.reg
echo "{F33812FB-F35C-4674-90F6-FD757C419C51}"=->>cleanup.reg
echo "{f38b1b2b-4976-46dd-9fe5-60fde72f0b4d}"=->>cleanup.reg
echo "{f5947202-e9cb-4a72-88e7-22f2cbd2b124}"=->>cleanup.reg
echo "{f85e05f5-667e-41b0-ab8a-147337a99e65}"=->>cleanup.reg
echo "coursings"=->>cleanup.reg
echo "{fa19bd7e-50bc-4203-80ac-c4edc81ca9a3}"=->>cleanup.reg
echo "{fa4fbf53-c766-4622-8011-a87a805eebf0}"=->>cleanup.reg
echo "{fa55d551-9698-48ac-b639-9b00cf1a6ea0}"=->>cleanup.reg
echo "{FCADDC14-BD46-408A-9842-CDBE1C6D37EB}"=->>cleanup.reg
echo "{fc7cbb1b-2da6-4e7d-a1ea-bf6705dd0f8c}"=->>cleanup.reg
echo "{fde1bd72-ca80-443f-9526-595337b73878}"=->>cleanup.reg
echo "{fe288882-f661-4522-88f3-20cfb7866fa4}"=->>cleanup.reg
echo "{feac45db-84dc-4123-8b0d-4d9408fcf9ea}"=->>cleanup.reg
echo "{fedff4ae-1302-4b8a-bda9-43b9f67b9749}"=->>cleanup.reg
echo "{ff170564-36c8-43f7-9100-559e166405cf}"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]>>cleanup.reg
echo "NoActiveDesktopChanges"=->>cleanup.reg
echo "NoActiveDesktop"=->>cleanup.reg
echo "NoViewContextMenu"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\explorer\run]>>cleanup.reg
echo "dcomcfg.exe"=->>cleanup.reg
echo "homepage.monitor.exe"=->>cleanup.reg
echo "iedrvctrl"=->>cleanup.reg
echo "ielogger"=->>cleanup.reg
echo "IExplorer"=->>cleanup.reg
echo "ipmon"=->>cleanup.reg
echo "isamini.exe"=->>cleanup.reg
echo "isamonitor.exe"=->>cleanup.reg
echo "ishost.exe"=->>cleanup.reg
echo "issearch.exe"=->>cleanup.reg
echo "kernel32.dll"=->>cleanup.reg
echo "msdrvctrl"=->>cleanup.reg
echo "msmsgs.exe"=->>cleanup.reg
echo "none"=->>cleanup.reg
echo "notepad.exe"=->>cleanup.reg
echo "notepad2.exe"=->>cleanup.reg
echo "nvctrl.exe"=->>cleanup.reg
echo "paint.exe"=->>cleanup.reg
echo "pmsngr.exe"=->>cleanup.reg
echo "PolicyVerifier"=->>cleanup.reg
echo "popuper.exe"=->>cleanup.reg
echo "rare"=->>cleanup.reg
echo "shnlog.exe"=->>cleanup.reg
echo "user32.dll"=->>cleanup.reg
echo "wininet.dll"=->>cleanup.reg
echo "winlogon.exe"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system]>>cleanup.reg
echo "DisableRegistryTools"=->>cleanup.reg
echo "DisableTaskMgr"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]>>cleanup.reg
echo "0mcamcap"=->>cleanup.reg
echo "977efcdb.exe"=->>cleanup.reg
echo "3.tmp"=->>cleanup.reg
echo "4.tmp"=->>cleanup.reg
echo "3.tmp.exe"=->>cleanup.reg
echo "4.tmp.exe"=->>cleanup.reg
echo "A.tmp"=->>cleanup.reg
echo "A.tmp.exe"=->>cleanup.reg
echo "AdService"=->>cleanup.reg
echo "adtech2005"=->>cleanup.reg
echo "adtech2006"=->>cleanup.reg
echo "Adware.Srv32"=->>cleanup.reg
echo "AlfaCleaner"=->>cleanup.reg
echo "AntiVermeans"=->>cleanup.reg
echo "AntiVermins"=->>cleanup.reg
echo "AntiVerminser"=->>cleanup.reg
echo "Antivirus-Golden"=->>cleanup.reg
echo "AntivirusGolden"=->>cleanup.reg
echo "AutoSys"=->>cleanup.reg
echo "avp"=->>cleanup.reg
echo "B.tmp"=->>cleanup.reg
echo "B.tmp.exe"=->>cleanup.reg
echo "bal"=->>cleanup.reg
echo "BatSrv"=->>cleanup.reg
echo "bikini"=->>cleanup.reg
echo "bxproxy"=->>cleanup.reg
echo "C.tmp"=->>cleanup.reg
echo "C.tmp.exe"=->>cleanup.reg
echo "combo.exe"=->>cleanup.reg
echo "ContraVirus"=->>cleanup.reg
echo "ControlPanel"=->>cleanup.reg
echo "ctpmon"=->>cleanup.reg
echo "CsRss"=->>cleanup.reg
echo "CTDrive"=->>cleanup.reg
echo "D.tmp"=->>cleanup.reg
echo "D.tmp.exe"=->>cleanup.reg
echo "d3dn32.exe"=->>cleanup.reg
echo "d3pb.exe"=->>cleanup.reg
echo "Daily Weather Forecast"=->>cleanup.reg
echo "defender"=->>cleanup.reg
echo "drsmartloadb"=->>cleanup.reg
echo "ecsiin"=->>cleanup.reg
echo "Explorer32"=->>cleanup.reg
echo "Fast Start"=->>cleanup.reg
echo "FH"=->>cleanup.reg
echo "FHPage"=->>cleanup.reg
echo "FHStart"=->>cleanup.reg
echo "FSH"=->>cleanup.reg
echo "gimmysmileys"=->>cleanup.reg
echo "HostSrv"=->>cleanup.reg
echo "ieyi.exe"=->>cleanup.reg
echo "intel32.exe"=->>cleanup.reg
echo "intell321.exe"=->>cleanup.reg
echo "intell32.exe"=->>cleanup.reg
echo "Intel system tool"=->>cleanup.reg
echo "keyboard"=->>cleanup.reg
echo "load32"=->>cleanup.reg
echo "lich"=->>cleanup.reg
echo "links"=->>cleanup.reg
echo "MalwareWipe"=->>cleanup.reg
echo "MalwareWiped"=->>cleanup.reg
echo "MalwareWiped 6.1"=->>cleanup.reg
echo "MalwaresWipeds"=->>cleanup.reg
echo "MalwareWipePro"=->>cleanup.reg
echo "MalwareWiper"=->>cleanup.reg
echo "Malware-Wipe"=->>cleanup.reg
echo "Microsoft Office"=->>cleanup.reg
echo "Microsoft standard protector"=->>cleanup.reg
echo "mousepad"=->>cleanup.reg
echo "MSN Messenger"=->>cleanup.reg
echo "mstss"=->>cleanup.reg
echo "multitran"=->>cleanup.reg
echo "netfilt4"=->>cleanup.reg
echo "newname"=->>cleanup.reg
echo "nvchost"=->>cleanup.reg
echo "NTCommLib3"=->>cleanup.reg
echo "Paytime"=->>cleanup.reg
echo "pigglett"=->>cleanup.reg
echo "pop06ap"=->>cleanup.reg
echo "Printer"=->>cleanup.reg
echo "P.S.Guard"=->>cleanup.reg
echo "PSGuard"=->>cleanup.reg
echo "PSGuard spyware remover"=->>cleanup.reg
echo "RegSvr32"=->>cleanup.reg
echo "sdkqq.exe"=->>cleanup.reg
echo "smgr"=->>cleanup.reg
echo "SpyAxe"=->>cleanup.reg
echo "SpyCrush"=->>cleanup.reg
echo "SpyCrush 3.1"=->>cleanup.reg
echo "SpyDawn"=->>cleanup.reg
echo "SpyFalcon"=->>cleanup.reg
echo "Spy-Heal"=->>cleanup.reg
echo "SpyHeal"=->>cleanup.reg
echo "SpyHeals"=->>cleanup.reg
echo "SpyLocked"=->>cleanup.reg
echo "SpyLocked 3.6"=->>cleanup.reg
echo "SpyLocked 3.7"=->>cleanup.reg
echo "SpyLocked 3.9"=->>cleanup.reg
echo "SpyLocked 4.0"=->>cleanup.reg
echo "SpyLocked 4.1"=->>cleanup.reg
echo "SpyLocked 4.3"=->>cleanup.reg
echo "SpyQuake2.com"=->>cleanup.reg
echo "SpywareLocked"=->>cleanup.reg
echo "SpywareLocked 3.3"=->>cleanup.reg
echo "SpywareLocked 3.4"=->>cleanup.reg
echo "SpywareLocked 3.5"=->>cleanup.reg
echo "SpywareQuake"=->>cleanup.reg
echo "SpywareQuake.com"=->>cleanup.reg
echo "SpywareStrike"=->>cleanup.reg
echo "Software Soft Stop"=->>cleanup.reg
echo "Start Page"=->>cleanup.reg
echo "sysjv32.exe"=->>cleanup.reg
echo "sysen.exe"=->>cleanup.reg
echo "sysvx"=->>cleanup.reg
echo "System"=->>cleanup.reg
echo "System Redirect"=->>cleanup.reg
echo "SystemLoader"=->>cleanup.reg
echo "SysTray"=->>cleanup.reg
echo "tcpipmon"=->>cleanup.reg
echo "tetriz3"=->>cleanup.reg
echo "timessquare"=->>cleanup.reg
echo "Transponder"=->>cleanup.reg
echo "truetype"=->>cleanup.reg
echo "value"=->>cleanup.reg
echo "vb"=->>cleanup.reg
echo "VirusBlast"=->>cleanup.reg
echo "Virus-Burst"=->>cleanup.reg
echo "VirusBurst"=->>cleanup.reg
echo "VirusBurster"=->>cleanup.reg
echo "VirusBursters"=->>cleanup.reg
echo "Virus-Bursters"=->>cleanup.reg
echo "VirusProtectPro 3.3"=->>cleanup.reg
echo "VirusProtectPro 3.4"=->>cleanup.reg
echo "VirusProtectPro 3.5"=->>cleanup.reg
echo "VirusProtectPro 3.6"=->>cleanup.reg
echo "VirusProtectPro 3.7"=->>cleanup.reg
echo "Win32.Virus.Smart32"=->>cleanup.reg
echo "Win32.Exploit.A"=->>cleanup.reg
echo "WinAVX"=->>cleanup.reg
echo "windesktop"=->>cleanup.reg
echo "Windows Critical Alert"=->>cleanup.reg
echo "WindowsFZ"=->>cleanup.reg
echo "WindowsUpdate"=->>cleanup.reg
echo "WindowsUpdateNT"=->>cleanup.reg
echo "Windows Updater Servc"=->>cleanup.reg
echo "WinHound"=->>cleanup.reg
echo "winsysban"=->>cleanup.reg
echo "winsysupd"=->>cleanup.reg
echo "xp_system"=->>cleanup.reg
echo "yaemu.exe"=->>cleanup.reg
echo "ZPoint"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]>>cleanup.reg
echo "Srv32 spool service"=->>cleanup.reg
echo "Svr32 spool service"=->>cleanup.reg
echo "tlc"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce\Srv32 spool service]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunServices]>>cleanup.reg
echo "0mcamcap"=->>cleanup.reg
echo "Explorer64"=->>cleanup.reg
echo "multitran"=->>cleanup.reg
echo "pigglett"=->>cleanup.reg
echo "SystemTools"=->>cleanup.reg
echo "tetriz3"=->>cleanup.reg
echo "truetype"=->>cleanup.reg
echo "value"=->>cleanup.reg
echo "windesktop"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ShellServiceObjectDelayLoad]>>cleanup.reg
echo "altmannsberger"=->>cleanup.reg
echo "amaranthaceous"=->>cleanup.reg
echo "anatolian"=->>cleanup.reg
echo "archenteric"=->>cleanup.reg
echo "astrogeology"=->>cleanup.reg
echo "beeper"=->>cleanup.reg
echo "benumbment"=->>cleanup.reg
echo "bestreak"=->>cleanup.reg
echo "blippers"=->>cleanup.reg
echo "bonspells"=->>cleanup.reg
echo "boucicault"=->>cleanup.reg
echo "breadthes"=->>cleanup.reg
echo "breakneck"=->>cleanup.reg
echo "buprestidae"=->>cleanup.reg
echo "buys"=->>cleanup.reg
echo "campy"=->>cleanup.reg
echo "carbinyl"=->>cleanup.reg
echo "cecropia"=->>cleanup.reg
echo "cholecyst"=->>cleanup.reg
echo "chrysenic"=->>cleanup.reg
echo "considerateness"=->>cleanup.reg
echo "contrabandists"=->>cleanup.reg
echo "contraposition"=->>cleanup.reg
echo "cinnamomum"=->>cleanup.reg
echo "clamoring"=->>cleanup.reg
echo "coursings"=->>cleanup.reg
echo "cussers"=->>cleanup.reg
echo "DCOM Server"=->>cleanup.reg
echo "detachments"=->>cleanup.reg
echo "deterioraton"=->>cleanup.reg
echo "didymiums"=->>cleanup.reg
echo "didynamia"=->>cleanup.reg
echo "died"=->>cleanup.reg
echo "ecgfb"=->>cleanup.reg
echo "eeler"=->>cleanup.reg
echo "eitheror"=->>cleanup.reg
echo "equestre"=->>cleanup.reg
echo "emptins"=->>cleanup.reg
echo "eupeptic"=->>cleanup.reg
echo "exemplars"=->>cleanup.reg
echo "expatriates"=->>cleanup.reg
echo "expro"=->>cleanup.reg
echo "fairydom"=->>cleanup.reg
echo "featherweed"=->>cleanup.reg
echo "ferrateen"=->>cleanup.reg
echo "flammei"=->>cleanup.reg
echo "furnariidae"=->>cleanup.reg
echo "gaonic"=->>cleanup.reg
echo "gimmicks"=->>cleanup.reg
echo "gloomily"=->>cleanup.reg
echo "gorgonian"=->>cleanup.reg
echo "grindelwald"=->>cleanup.reg
echo "hemadynamometer"=->>cleanup.reg
echo "heteropodous"=->>cleanup.reg
echo "hinnible"=->>cleanup.reg
echo "hirtellous"=->>cleanup.reg
echo "horologium"=->>cleanup.reg
echo "hubbsi"=->>cleanup.reg
echo "hydrodictyon"=->>cleanup.reg
echo "iebrowser"=->>cleanup.reg
echo "iecontext"=->>cleanup.reg
echo "iesupport"=->>cleanup.reg
echo "iedebug"=->>cleanup.reg
echo "iedns"=->>cleanup.reg
echo "ieproxy"=->>cleanup.reg
echo "iereport"=->>cleanup.reg
echo "imputable"=->>cleanup.reg
echo "incestuously"=->>cleanup.reg
echo "msddx"=->>cleanup.reg
echo "msdns"=->>cleanup.reg
echo "msie"=->>cleanup.reg
echo "msole"=->>cleanup.reg
echo "msdde"=->>cleanup.reg
echo "msmdev"=->>cleanup.reg
echo "msmhost"=->>cleanup.reg
echo "msqnx"=->>cleanup.reg
echo "mssmart"=->>cleanup.reg
echo "ossmart"=->>cleanup.reg
echo "sounddrv"=->>cleanup.reg
echo "tlhelp"=->>cleanup.reg
echo "vpnconfig"=->>cleanup.reg
echo "vpssup"=->>cleanup.reg
echo "vsmart"=->>cleanup.reg
echo "wmpconf"=->>cleanup.reg
echo "wmpdev"=->>cleanup.reg
echo "wmpenv"=->>cleanup.reg
echo "wmphost"=->>cleanup.reg
echo "wmplayer"=->>cleanup.reg
echo "wmsound"=->>cleanup.reg
echo "xvideo"=->>cleanup.reg
echo "SysRun"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AdwareSheriff_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\Alexa Toolbar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AlfaCleaner.com_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\Antispyware Soldier_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AntiVermeans]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AntiVermins]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AntiVerminser]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\antivirusgold]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\AntivirusGolden]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\BlueScreen W@rning]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Brain Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\Brave-Sentry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\BraveSentry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\bridge]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\Contextual Ads]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\ContraVirus]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\microsoft\windows\currentversion\uninstall\Daily Weather Forecast]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Desktop Uninstall]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\EliteCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\eMedia Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DirectVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\FreeVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Gold Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\HQVideoCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\iCodecPack]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\IE SecPlugin_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\IExplorer Security Plug-in]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Image ActiveX Access]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Image ActiveX Object]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\iMediaCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\IntCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Internet update]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Internet Connection Update and HomeP KB234087]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Internet Explorer Secure Bar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Internet Explorer Security Plugin 2006]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\Internet Security Add-On]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\iVideoCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\JPEG Encoder]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Key Generator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwareWipe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwareWiped]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwareWiped 6.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwaresWipeds]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwareWipePro]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MalwareWiper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Malware-Wipe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Media-Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MediaCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Messenger Service]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MMediaCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MovieBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MovieCommander]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MPVIDEOCODEC]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\MSDNS]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\My Pass Generator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PCODEC]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Perfect Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PornPass Manager]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PornMag Pass]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PowerCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PestCapture]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PestTrap]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Public Messenger ver 2.03]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\PSGuard]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\QualityCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\RegistryCleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Safety Alerter 2006]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Safety Bar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Security Toolbar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Silver Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SiteEntry]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SiteTicket]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SoftCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyAxe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyCrush]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyCrush 3.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyDawn]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\The Spy Guard]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyKiller]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyFalcon]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Spy-Heal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyHeal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyHeals]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked 3.6]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked 3.9]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked 4.0]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked 4.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyLocked 4.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyMarshal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpySheriff]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpySoldier_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Spy Sheriff]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareLocked]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareLocked 3.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareLocked 3.4]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareLocked 3.5]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpyQuake2.com]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareKnight_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareQuake]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareQuake.com]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareSheriff_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\SpywareStrike]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Spyware Soft Stop_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\strCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Super Codec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TitanShield Antispyware_is1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TrueCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Trust Cleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Trust Cleaner Promo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TrustIn Bar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TrustIn Popups]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\vb]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoAccessCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoBox]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VidCodecs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Video Access ActiveX Object]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Video ActiveX Access]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Video ActiveX Object]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Video AX Object]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Video iCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoCompressionCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideoKeyCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VideosCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusBlast]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Virus-Burst]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusBurst]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusBurster]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusBursters]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Virus-Bursters]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusProtectPro 3.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusProtectPro 3.4]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusProtectPro 3.5]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusProtectPro 3.6]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\VirusProtectPro 3.7]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WebVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Windows Safety Alert]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinHound spyware remover]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinMediaCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WINSP]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\X Password Generator]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\X Password Manager]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\XVideo]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\XXXAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\ZipCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Alexa Internet]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Alexa Toolbar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\DailyToolbar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\muwq]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\NIX Solutions]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Licenses]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AdwareDelete]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AntiVermeans]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AntiVermins]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AntiVerminser]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AntivirusGold]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\AntivirusGolden]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\ContraVirus]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwareWipe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwareWiped]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwareWiped 6.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwaresWipeds]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwareWipePro]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\MalwareWiper]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Malware-Wipe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\RegistryCleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\RespondMiter]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\ShudderLTD\PSGuard]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Software\TPS108]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyAxe]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyCrush]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyCrush 3.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyDawn]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyFalcon]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Spy-Heal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyHeal]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyHeals]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 3.6]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 3.7]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 3.9]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 4.0]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 4.1]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyLocked 4.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpyQuake2.com]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareLocked]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareLocked 3.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareLocked 3.4]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareLocked 3.5]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareQuake]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareQuake.com]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\SpywareStrike]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\TDS]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Transponder]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\TrustIn Bar]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\TrustIn Popups]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\vb]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Video iCodec]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VideoAccess]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusBlast]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Virus-Burst]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusBurst]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusBurster]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusBursters]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Virus-Bursters]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusProtectPro 3.3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusProtectPro 3.4]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusProtectPro 3.5]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusProtectPro 3.6]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\VirusProtectPro 3.7]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\WMuse]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\WSoft]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\ZEROSOFT]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\ZSearchCo\ZSearch]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_USERS\.DEFAULT\Software\Microsoft\Internet Explorer\Main]>>cleanup.reg
echo "Search Page"="http://www.microsoft.com/isapi/redir.dll?prd=ie&ar=iesearch">>cleanup.reg
echo "Search Bar"="Search Bar"="http://search.msn.com/intl/searchpane/en-au/prov2.htm">>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\browsela]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\gg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\ggg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\gggg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\ggggg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\gs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\nuclabdll]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\msupdate]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\s_reg]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\style2]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\style32]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\st3]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify\st3i]>>cleanup.reg
echo.>>cleanup.reg

echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List]>>cleanup.reg
echo "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE"=->>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications\List]>>cleanup.reg
echo "C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE"=->>cleanup.reg
echo.>>cleanup.reg

echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_ALFACLEANER]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_ALFACLEANERSERVICE]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NPF\0000\Control]>>cleanup.reg
echo "ActiveService"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_RPCXSS]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\System\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\alfacleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\RpcxSs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Winnotify]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_ALFACLEANERSERVICE]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\alfacleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\System\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\HTTP\Parameters\S]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\SharedAccess\Parameters\r]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_ALFACLEANER]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_ALFACLEANERSERVICE]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NPF\0000\Control]>>cleanup.reg
echo "ActiveService"=->>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_RPCXSS]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\alfacleaner]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RpcxSs]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Winnotify]>>cleanup.reg
echo.>>cleanup.reg
echo [-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\System\AlfaCleanerService]>>cleanup.reg
echo.>>cleanup.reg

echo [-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Code Store Database\Distribution Units\{10003000-1000-0000-1000-000000000000}]>>cleanup.reg
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager]>>cleanup.reg
echo "AllowProtectedRenames"=->>cleanup.reg
echo "PendingFileRenameOperations"=->>cleanup.reg



if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "sysmain.dll">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "AppInit_DLLs"="">>cleanup.reg
del shell2.txt
)
if exist shell.txt del shell.txt



if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hadjajr.ini">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "AppInit_DLLs"="">>cleanup.reg
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hanonvt.ini">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "AppInit_DLLs"="">>cleanup.reg
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hrum.txt">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "AppInit_DLLs"="">>cleanup.reg
del shell2.txt
)
if exist shell.txt del shell.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows"
type shell.txt | find /i "AppInit_DLLs">shell2.txt
type shell2.txt | find /i "hrum323.txt">shell.txt
if exist shell2.txt del shell2.txt
for /f "tokens=* delims=" %%a in (shell.txt) do echo %%a>shell2.txt
if exist shell2.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows]>>cleanup.reg
echo "AppInit_DLLs"="">>cleanup.reg
del shell2.txt
)
if exist shell.txt del shell.txt




if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "shell.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "Explorer.exe, msmsgs.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "kernels32.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "kernels64.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "printer.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "sysinit32z.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

if exist shell.txt del shell.txt
if exist shell2.txt del shell2.txt
regedit.exe /E shell.txt "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"
type shell.txt | find /i "Shell">shell2.txt
type shell2.txt | find /i "Explorer.exe">shell.txt
type shell.txt | find /i "vxgame3.exe">shell2.txt
if exist shell.txt del shell.txt
for /f "tokens=* delims=" %%a in (shell2.txt) do echo %%a>shell.txt
if exist shell.txt (
echo.>>cleanup.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]>>cleanup.reg
echo "Shell"="Explorer.exe">>cleanup.reg
del shell.txt
)
if exist shell2.txt del shell2.txt

goto SrchDsktp0



:SrchDsktp0
IF EXIST desktop.txt del desktop.txt
IF EXIST desktop2.txt del desktop2.txt
regedit.exe /e desktop.txt "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\0"
IF EXIST desktop.txt goto DelDsktp0
goto SrchDsktp1

:DelDsktp0
type desktop.txt | find /i "desktop.html">desktop2.txt
if exist desktop2.txt (
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\0]>>cleanup.reg
)
IF EXIST desktop.txt del desktop.txt
IF EXIST desktop2.txt del desktop2.txt

goto SrchDsktp1

:SrchDsktp1
IF EXIST desktop.txt del desktop.txt
IF EXIST desktop2.txt del desktop2.txt
regedit.exe /e desktop.txt "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\1"
IF EXIST desktop.txt goto DelDsktp1
goto DoCleanUp

:DelDsktp1
type desktop.txt | find /i "warnhp.html">desktop2.txt
if exist desktop2.txt (
echo.>>cleanup.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\Components\1]>>cleanup.reg
)
IF EXIST desktop.txt del desktop.txt
IF EXIST desktop2.txt del desktop2.txt

goto DoCleanUp






:DoCleanUp
if exist cleanup.reg (
regedit.exe /s cleanup.reg
del cleanup.reg
echo.
goto CleanUpDone
) ELSE ( 
goto CleanUpError
)
goto AfterSFF


:CleanUpDone
if %lang%==fra (
echo Nettoyage termin^‚.
echo Nettoyage terminé.>>%systemdrive%\rapport.txt 
) else (
echo Registry Cleaning done.
echo Registry Cleaning done.>>%systemdrive%\rapport.txt 
)
goto AfterSFF


:CleanUpError
if %lang%==fra (
echo *** Erreur : cleanup.reg non trouv^‚ ***
echo *** Erreur : cleanup.reg non trouvé ***>>%systemdrive%\rapport.txt
) else (
echo *** Error : cleanup.reg not found ***
echo *** Error : cleanup.reg not found ***>>%systemdrive%\rapport.txt
)
goto AfterSFF


:nonet
echo.
echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo Nettoyage du registre non souhait^‚.
echo Nettoyage du registre non souhaité.>>%systemdrive%\rapport.txt
) else (
echo Registry Cleaning not selected.
echo Registry Cleaning not selected.>>%systemdrive%\rapport.txt
)
goto AfterSFF





:AfterSFF
echo.>>%systemdrive%\rapport.txt 
if %lang%==fra (
echo »»»»»»»»»»»»»»»»»»»»»»»» SharedTaskScheduler Après SmitFraudFix>>%systemdrive%\rapport.txt
echo !!!Attention, les clés qui suivent ne sont pas forcément infectées!!!>>%systemdrive%\rapport.txt
) else (
echo »»»»»»»»»»»»»»»»»»»»»»»» SharedTaskScheduler After SmitFraudFix>>%systemdrive%\rapport.txt
echo !!!Attention, following keys are not inevitably infected!!!>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt
SrchSTS -w>>%systemdrive%\rapport.txt
goto scanwininet




:scanwininet
findstr /m /I "OLEADM" %syspath%\wininet.dll>result.txt
for /F "TOKENS=* DELIMS=" %%A IN (result.txt) do echo wininet.dll %sInfect%>infected.txt
findstr /m /I "OLEEXT" %syspath%\wininet.dll>result.txt
for /F "TOKENS=* DELIMS=" %%A IN (result.txt) do echo wininet.dll %sInfect%>infected.txt
del result.txt
if exist infected.txt goto search
if NOT exist infected.txt goto fin


:search
echo.>>%systemdrive%\rapport.txt 
echo »»»»»»»»»»»»»»»»»»»»»»»» %sSearch% wininet.dll>>%systemdrive%\rapport.txt 
echo.
echo.>>%systemdrive%\rapport.txt 
echo %syspath%\wininet.dll %sInfect2%
echo %syspath%\wininet.dll %sInfect%>>%systemdrive%\rapport.txt
del infected.txt


echo.
echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo Recherche d'une copie de secours de wininet.dll...
echo Recherche d'une copie de secours de wininet.dll...>>%systemdrive%\rapport.txt
) else (
echo Searching wininet.dll backup file...
echo Searching wininet.dll backup file...>>%systemdrive%\rapport.txt
)
if exist result.txt del result.txt
if exist result2.txt del result2.txt
dir %systemroot%\wininet.dll /a h /b /s>result.txt
type result.txt>>%systemdrive%\rapport.txt
type result.txt | find /i "%windir%">result2.txt
type result2.txt | find /i /V "system">result.txt
type result2.txt | find /i "dllcache">>result.txt
type result.txt | find /i /V "Uninstall">result2.txt
type result2.txt | find /i /V "Software">result.txt
if exist result2.txt del result2.txt
for /f "tokens=*" %%a in (result.txt) do echo %%~dpa>>result2.txt
if exist result.txt del result.txt
if not exist result2.txt goto notfound

echo Set objFSO = CreateObject("Scripting.FileSystemObject")>CheckVersion.vbs
echo Wscript.Echo objFSO.GetFileVersion(wscript.arguments(0))>>CheckVersion.vbs
for /F "delims=" %%G in ('cscript //I //nologo CheckVersion.vbs %syspath%\wininet.dll') do set InfectVerNo=%%G
goto do_count

:do_count
set count=0
for /f "tokens=*" %%a in (result2.txt) do (call :do_add %%a)
goto get_vers

:do_add
set /a count+=1
set wininetpath=%1
goto :eof

:get_vers
set /a count2=0
for /F "delims=" %%G in ('cscript //I //nologo CheckVersion.vbs %wininetpath%\wininet.dll') do set VerNo=%%G
if %InfectVerNo%==%VerNo% goto QuestionWininet
if exist result.txt del result.txt
for /f "tokens=*" %%a in (result2.txt) do (call :do_add2 %%a)
goto compare

:do_add2
set /a count2+=1
if NOT %count2%==%count% echo %1>>result.txt
goto :eof

:compare
type result.txt>result2.txt
if not exist result.txt goto notfound
del result.txt
goto do_count

:QuestionWininet
echo.>>%systemdrive%\rapport.txt
if %lang%==fra (
echo Fichier de remplacement trouv^‚:
echo Fichier trouv^‚ : %wininetpath%\wininet.dll
echo Version System : %InfectVerNo%
echo Version BackUp : %VerNo%
echo Fichier trouvé : %wininetpath%\wininet.dll>>%systemdrive%\rapport.txt
echo Version System : %InfectVerNo%>>%systemdrive%\rapport.txt
echo Version BackUp : %VerNo%>>%systemdrive%\rapport.txt
) else (
echo Replacement file found:
echo File Found : %wininetpath%\wininet.dll
echo System Version : %InfectVerNo%
echo BackUp Version : %VerNo%
echo File Found : %wininetpath%\wininet.dll>>%systemdrive%\rapport.txt
echo System Version : %InfectVerNo%>>%systemdrive%\rapport.txt
echo BackUp Version : %VerNo%>>%systemdrive%\rapport.txt
)
echo.
echo.>>%systemdrive%\rapport.txt
set ChoixWininet=''
set /p ChoixWininet=%sWininetQ%
if '%ChoixWininet%'=='n' GOTO noreplace
if '%ChoixWininet%'=='N' GOTO noreplace
if '%ChoixWininet%'=='o' GOTO replace
if '%ChoixWininet%'=='O' GOTO replace
if '%ChoixWininet%'=='y' GOTO replace
if '%ChoixWininet%'=='Y' GOTO replace

goto QuestionWininet

:noreplace
echo.
if %lang%==fra (
echo Correction du fichier non souhait^‚e.
echo Correction du fichier non souhaitée.>>%systemdrive%\rapport.txt
) else (
echo Replacement Not Selected.
echo Replacement Not Selected.>>%systemdrive%\rapport.txt
)
goto fin

:replace
echo.
if %lang%==fra (
echo Remplacement wininet.dll ^(reboot necessaire^)
echo Remplacement wininet.dll ^(reboot necessaire^)>>%systemdrive%\rapport.txt
) else (
echo Wininet.dll Remplacement ^(reboot necessary^)
echo Wininet.dll Remplacement ^(reboot necessary^)>>%systemdrive%\rapport.txt
)
attrib -r -h -s %syspath%\wininet.dll
ren %syspath%\wininet.dll wininet.old
attrib -r -h -s %wininetpath%\wininet.dll
copy %wininetpath%\wininet.dll %syspath%
attrib +s %syspath%\wininet.dll
attrib +s %wininetpath%\wininet.dll
goto reboot

:notfound
if %lang%==fra (
echo Fichier de remplacement wininet.dll non trouv^‚.
echo Fichier de remplacement wininet.dll non trouvé.>>%systemdrive%\rapport.txt
) else (
echo Wininet.dll BackUp File not found.
echo Wininet.dll BackUp File not found.>>%systemdrive%\rapport.txt
)
goto fin


:reboot
if exist smitfraudfix1.reg del smitfraudfix1.reg
echo REGEDIT4>>smitfraudfix1.reg
echo.>>smitfraudfix1.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]>>smitfraudfix1.reg
echo "smitfraudfix"="%systemdrive%\\fixclean.cmd">>smitfraudfix1.reg
regedit.exe /s smitfraudfix1.reg
if exist smitfraudfix1.reg del smitfraudfix1.reg

if exist %systemdrive%\fixclean.cmd del %systemdrive%\fixclean.cmd
if exist %systemdrive%\smitfraudfix2.reg del %systemdrive%\smitfraudfix2.reg

echo @echo off>>%systemdrive%\fixclean.cmd
echo.>>%systemdrive%\fixclean.cmd
echo attrib -r -h -s %systemroot%\system32\wininet.old>>%systemdrive%\fixclean.cmd
echo del /q %systemroot%\system32\wininet.old>>%systemdrive%\fixclean.cmd
echo if exist "%systemroot%\system32\oleadm.dll" (>>%systemdrive%\fixclean.cmd
echo attrib -r -h -s %systemroot%\system32\oleadm.dll>>%systemdrive%\fixclean.cmd
echo del /q %systemroot%\system32\oleadm.dll>>%systemdrive%\fixclean.cmd
echo )>>%systemdrive%\fixclean.cmd
echo if exist "%systemroot%\system32\oleext.dll" (>>%systemdrive%\fixclean.cmd
echo attrib -r -h -s %systemroot%\system32\oleext.dll>>%systemdrive%\fixclean.cmd
echo del /q %systemroot%\system32\oleext.dll>>%systemdrive%\fixclean.cmd
echo )>>%systemdrive%\fixclean.cmd
echo.>>%systemdrive%\fixclean.cmd
echo regedit.exe /s %systemdrive%\smitfraudfix2.reg>>%systemdrive%\fixclean.cmd
echo.>>%systemdrive%\fixclean.cmd
echo if exist %systemdrive%\smitfraudfix2.reg del %systemdrive%\smitfraudfix2.reg>>%systemdrive%\fixclean.cmd
echo if exist %systemdrive%\fixclean.cmd del %systemdrive%\fixclean.cmd>>%systemdrive%\fixclean.cmd

echo REGEDIT4>>%systemdrive%\smitfraudfix2.reg
echo.>>%systemdrive%\smitfraudfix2.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce]>>%systemdrive%\smitfraudfix2.reg
echo "smitfraudfix"=->>%systemdrive%\smitfraudfix2.reg

goto fin




:zonefix
cls
set Choix_Zone=''
echo %fixname% %fixvers%
echo.
set /p Choix_Zone=%sTrustQ%
if '%Choix_Zone%'=='n' GOTO menu
if '%Choix_Zone%'=='N' GOTO menu
if '%Choix_Zone%'=='o' GOTO zonefix2
if '%Choix_Zone%'=='O' GOTO zonefix2
if '%Choix_Zone%'=='y' GOTO zonefix2
if '%Choix_Zone%'=='Y' GOTO zonefix2
goto zonefix



:zonefix2
echo %sTrustBackUp%...
if not exist backups mkdir backups
regedit.exe /e backups\HKCU_Domains.reg "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains"
regedit.exe /e backups\HKCU_Ranges.reg "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges"
regedit.exe /e backups\HKCU_Ranges.reg "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains"
regedit.exe /e backups\HKLM_Domains.reg "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains"
regedit.exe /e backups\HKLM_Ranges.reg "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges"
echo REGEDIT4>zone.reg
echo.>>zone.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains]>>zone.reg
echo.>>zone.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains]>>zone.reg
echo.>>zone.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges]>>zone.reg
echo.>>zone.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges]>>zone.reg
echo.>>zone.reg
echo [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains]>>zone.reg
echo.>>zone.reg
echo [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains]>>zone.reg
echo.>>zone.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains]>>zone.reg
echo.>>zone.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains]>>zone.reg
echo.>>zone.reg
echo [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges]>>zone.reg
echo.>>zone.reg
echo [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Ranges]>>zone.reg
echo.>>zone.reg
echo.
if exist zone.reg (
regedit.exe /s zone.reg
del zone.reg
echo %sTrustDone%
) ELSE ( 
echo %sTrustError%
)
echo.
pause
goto menu










:update
cls
echo %fixname% %fixvers%
echo.
if %lang%==fra (
echo V^‚rification des mises ^… jour.
echo Si vous avez un pare-feu, autorisez SmiUpdate.exe ^… se connecter.
) else (
echo Check for Updates.
echo If you have a firewall, allow SmiUpdate.exe to connect.
)
echo.
pause

IF EXIST Version.txt del Version.txt
SmiUpdate.exe http://siri.urz.free.fr/Fix/Version.txt;;Version.txt
if NOT EXIST Version.txt SmiUpdate.exe http://siri.geekstogo.com/Version.txt;;Version.txt
if NOT EXIST Version.txt SmiUpdate.exe http://72.232.135.12/siri/Version.txt;;Version.txt

if NOT EXIST Version.txt (
color 47
cls
echo %fixname% %fixvers%
echo.
if %lang%==fra (
echo Une erreur est survenue pendant la mise ^… jour.
) else (
echo An error occured while updating.
)
echo.
pause
goto menu
)

findstr /m %fixvers% Version.txt
If ERRORLEVEL 1 (
IF EXIST Version.txt del Version.txt
IF EXIST SmitfraudFix.zip del SmitfraudFix.zip
echo @echo off >Update.cmd
echo cls >>Update.cmd
echo goto update>>Update.cmd

echo. >>Update.cmd
echo :updateerror >>Update.cmd
echo color 47 >>Update.cmd
echo cls >>Update.cmd
echo echo %fixname% %fixvers% >>Update.cmd
echo echo. >>Update.cmd
if %lang%==fra (
echo echo Une erreur est survenue pendant la mise ^… jour. >>Update.cmd
) else (
echo echo An error occured while updating. >>Update.cmd
)
echo echo. >>Update.cmd
echo pause >>Update.cmd
echo SmitfraudFix.cmd >>Update.cmd
echo exit >>Update.cmd
echo. >>Update.cmd

echo :update >>Update.cmd
echo cls >>Update.cmd
echo echo %fixname% %fixvers% >>Update.cmd
echo echo. >>Update.cmd
if %lang%==fra (
echo echo Veuillez patienter pendant le t^‚l^‚chargement des mises ^… jour. >>Update.cmd
) else (
echo echo Please Wait while downloading update files. >>Update.cmd
)

echo SmiUpdate.exe http://siri.urz.free.fr/Fix/SmitfraudFix.zip;;SmitfraudFix.zip >>Update.cmd
echo if NOT EXIST SmitfraudFix.zip SmiUpdate.exe http://siri.geekstogo.com/SmitfraudFix.zip;;SmitfraudFix.zip >>Update.cmd
echo if NOT EXIST SmitfraudFix.zip SmiUpdate.exe http://72.232.135.12/siri/SmitfraudFix.zip;;SmitfraudFix.zip >>Update.cmd
echo if NOT EXIST SmitfraudFix.zip goto updateerror >>Update.cmd
if %lang%==fra (
echo echo Installation des mises ^… jour. >>Update.cmd
) else (
echo echo Installing update files. >>Update.cmd
)
echo unzip.exe -o -j -qq SmitfraudFix.zip -x SmitfraudFix\unzip.exe >>Update.cmd
if %lang%==fra (
echo echo Mises ^… jour install^‚es. >>Update.cmd
) else (
echo echo Updates installed. >>Update.cmd
)
echo echo. >>Update.cmd
echo pause >>Update.cmd
echo SmitfraudFix.cmd >>Update.cmd
Update.cmd
exit
) else (
IF EXIST Version.txt del Version.txt
cls
echo %fixname% %fixvers%
echo.
if %lang%==fra (
echo Aucune mise ^… jour n'est disponible pour le moment
) else (
echo No new update files are available for the moment.
)
)
echo.
pause
goto menu



:DNSSearchFix

if defined safeboot_option (
cls
echo %fixname% %fixvers%
echo.
echo Mode normal seulement - Normal mode only
pause
goto menu
)

cls
echo %fixname% %fixvers%
echo %fixname% %fixvers%>%systemdrive%\rapport.txt
echo.
echo.>>%systemdrive%\rapport.txt
echo %sScanDate% %time%, %date%>>%systemdrive%\rapport.txt
for /f "Tokens=*" %%i in ('cd') do set CurDir=%%i
echo %sRunFrom% %CurDir%>>%systemdrive%\rapport.txt
IF ERRORLEVEL 1 (
echo %sRunFrom% >>%systemdrive%\rapport.txt
cd >>%systemdrive%\rapport.txt
)
for /f "Tokens=*" %%i in ('ver') do set Version=%%i
echo OS: %Version% - %OS%>>%systemdrive%\rapport.txt
echo %sFSType% %FSType%>>%systemdrive%\rapport.txt
if not defined safeboot_option echo %SafeMWarn%>>%systemdrive%\rapport.txt
if defined safeboot_option echo %SafeMDisp%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt

echo %sSearch% DNS

if %lang%==fra (
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS Avant Fix>>%systemdrive%\rapport.txt
) else (
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS Before Fix>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

Call :ScanDNS

Call :fixDNS

if %lang%==fra (
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS Après Fix>>%systemdrive%\rapport.txt
) else (
echo »»»»»»»»»»»»»»»»»»»»»»»» DNS After Fix>>%systemdrive%\rapport.txt
)
echo.>>%systemdrive%\rapport.txt

Call :ScanDNS

start %windir%\notepad.exe %systemdrive%\rapport.txt

goto menu




:ScanDNS
echo Option Explicit>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo const HKEY_LOCAL_MACHINE = ^&H80000002>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim strComputer>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim ObjWMIService>>ScanDNS.vbs
echo Dim ObjNicConfig>>ScanDNS.vbs
echo Dim colNicConfigs>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim ObjReg>>ScanDNS.vbs
echo Dim ObjFileSystem>>ScanDNS.vbs
echo Dim ObjOutputFile>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim strDNSServer>>ScanDNS.vbs
echo Dim strKeyPath>>ScanDNS.vbs
echo Dim arrSubKeys>>ScanDNS.vbs
echo Dim subkey>>ScanDNS.vbs
echo Dim strValue>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim intReturn>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Dim arrBlkList>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo arrBlkList = Array("85.255", "69.50", "195.95", "194.54")>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Function SearchIp(Byval strIP)>>ScanDNS.vbs
echo 	Dim arrIP, strIP0, strIP1, strIP2, arrIPBuf, strBlkIP>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo 	SearchIp = FALSE>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo 	If IsArray(strIP)=TRUE Then>>ScanDNS.vbs
echo 		For Each strIP0 in strIP>>ScanDNS.vbs
echo 			arrIP=Split(strIP0,",")>>ScanDNS.vbs
echo 			For Each strIP1 in arrIP>>ScanDNS.vbs
echo 				Trim strIP1>>ScanDNS.vbs
echo 				arrIPBuf = Split(strIP1,".")>>ScanDNS.vbs
echo 				If UBound(arrIPBuf)^>0 Then>>ScanDNS.vbs
echo 					strIP2 = Trim(arrIPBuf(0)) ^& "." ^& Trim(arrIPBuf(1))>>ScanDNS.vbs
echo 					For Each strBlkIP in arrBlkList>>ScanDNS.vbs
echo 						If strIP2=strBlkIP Then>>ScanDNS.vbs
echo 							SearchIp = TRUE>>ScanDNS.vbs
echo 						End If>>ScanDNS.vbs
echo 					Next>>ScanDNS.vbs
echo 				End If>>ScanDNS.vbs
echo 			Next>>ScanDNS.vbs
echo 		Next>>ScanDNS.vbs
echo 	Else>>ScanDNS.vbs
echo 		arrIP=Split(strIP,",")>>ScanDNS.vbs
echo 		For Each strIP1 in arrIP>>ScanDNS.vbs
echo 			Trim strIP1>>ScanDNS.vbs
echo 			arrIPBuf = Split(strIP1,".")>>ScanDNS.vbs
echo 			If UBound(arrIPBuf)^>0 Then>>ScanDNS.vbs
echo 				strIP2 = Trim(arrIPBuf(0)) ^& "." ^& Trim(arrIPBuf(1))>>ScanDNS.vbs
echo 				For Each strBlkIP in arrBlkList>>ScanDNS.vbs
echo 					If strIP2=strBlkIP Then>>ScanDNS.vbs
echo 						SearchIp = TRUE>>ScanDNS.vbs
echo 					End If>>ScanDNS.vbs
echo 				Next>>ScanDNS.vbs
echo 			End If>>ScanDNS.vbs
echo 		Next>>ScanDNS.vbs
echo 	End If>>ScanDNS.vbs
echo End Function>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strComputer = ".">>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Set ObjWMIService = GetObject("winmgmts:" ^& "{impersonationLevel=impersonate}!\\" ^& strComputer ^& "\root\cimv2")>>ScanDNS.vbs
echo Set ObjReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" ^& strComputer ^& "\root\default:StdRegProv")>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo Set colNicConfigs = objWMIService.ExecQuery ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = TRUE")>>ScanDNS.vbs
echo Set ObjFileSystem = CreateObject("Scripting.fileSystemObject")>>ScanDNS.vbs
echo Set ObjOutputFile = ObjFileSystem.CreateTextFile("dnslog.txt", TRUE)>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo For Each ObjNicConfig in colNicConfigs>>ScanDNS.vbs
echo 	If Not IsNull(ObjNicConfig.DNSServerSearchOrder) Then>>ScanDNS.vbs
echo 		If SearchIp(ObjNicConfig.DNSServerSearchOrder)=TRUE Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("%DNSHJ%: " ^& left(ObjNicConfig.DNSServerSearchOrder(0),6) ^& ".x.x %KDMess%" ^& VbCrLf)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo 		ObjOutputFile.WriteLine("Description: " ^& objNicConfig.Description)>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo 		For Each strDNSServer In ObjNicConfig.DNSServerSearchOrder>>ScanDNS.vbs
echo 			If(strDNSServer ^<^> "") Then>>ScanDNS.vbs
echo 				ObjOutputFile.WriteLine("DNS Server Search Order: " ^& strDNSServer)>>ScanDNS.vbs
echo 			End If>>ScanDNS.vbs
echo 		Next>>ScanDNS.vbs
echo 		ObjOutputFile.WriteLine("")>>ScanDNS.vbs
echo 	End If>>ScanDNS.vbs
echo Next>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces">>ScanDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys)>>ScanDNS.vbs
echo If intReturn=0 Then>>ScanDNS.vbs
echo 	For Each subkey In arrSubKeys>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"DhcpNameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CCS\Services\Tcpip\..\" ^& subkey ^& ": DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"NameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CCS\Services\Tcpip\..\" ^& subkey ^& ": NameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 	Next>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces">>ScanDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys)>>ScanDNS.vbs
echo If intReturn=0 Then>>ScanDNS.vbs
echo 	For Each subkey In arrSubKeys>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"DhcpNameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS1\Services\Tcpip\..\" ^& subkey ^& ": DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"NameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS1\Services\Tcpip\..\" ^& subkey ^& ": NameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 	Next>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces">>ScanDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys)>>ScanDNS.vbs
echo If intReturn=0 Then>>ScanDNS.vbs
echo 	For Each subkey In arrSubKeys>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"DhcpNameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS2\Services\Tcpip\..\" ^& subkey ^& ": DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"NameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS2\Services\Tcpip\..\" ^& subkey ^& ": NameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 	Next>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces">>ScanDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys)>>ScanDNS.vbs
echo If intReturn=0 Then>>ScanDNS.vbs
echo 	For Each subkey In arrSubKeys>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"DhcpNameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS3\Services\Tcpip\..\" ^& subkey ^& ": DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath ^& "\" ^& subkey,"NameServer", strValue)>>ScanDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 			ObjOutputFile.WriteLine("HKLM\SYSTEM\CS3\Services\Tcpip\..\" ^& subkey ^& ": NameServer=" ^& strValue)>>ScanDNS.vbs
echo 		End If>>ScanDNS.vbs
echo 	Next>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters">>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "DhcpNameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CCS\Services\Tcpip\Parameters: DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "NameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CCS\Services\Tcpip\Parameters: NameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet001\Services\Tcpip\Parameters">>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "DhcpNameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS1\Services\Tcpip\Parameters: DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "NameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS1\Services\Tcpip\Parameters: NameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet002\Services\Tcpip\Parameters">>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "DhcpNameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS2\Services\Tcpip\Parameters: DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "NameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS2\Services\Tcpip\Parameters: NameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo strKeyPath = "SYSTEM\ControlSet003\Services\Tcpip\Parameters">>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "DhcpNameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS3\Services\Tcpip\Parameters: DhcpNameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, strKeyPath, "NameServer", strValue)>>ScanDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>ScanDNS.vbs
echo 	ObjOutputFile.WriteLine("HKLM\SYSTEM\CS3\Services\Tcpip\Parameters: NameServer=" ^& strValue)>>ScanDNS.vbs
echo End If>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo.>>ScanDNS.vbs
echo ObjOutputFile.Close>>ScanDNS.vbs
echo Set ObjFileSystem = Nothing>>ScanDNS.vbs
echo Set ObjOutputFile = Nothing>>ScanDNS.vbs
echo Set colNicConfigs = Nothing>>ScanDNS.vbs
echo Set ObjWMIService = Nothing>>ScanDNS.vbs
echo Set ObjReg = Nothing>>ScanDNS.vbs
echo.>>ScanDNS.vbs

cscript //I //nologo ScanDNS.vbs
if EXIST ScanDNS.vbs del ScanDNS.vbs
type dnslog.txt>>%systemdrive%\rapport.txt
if EXIST dnslog.txt del dnslog.txt

echo.>>%systemdrive%\rapport.txt

GOTO :eof









:FixDNS

echo Option Explicit>>FixDNS.vbs
echo.>>FixDNS.vbs
echo const HKEY_LOCAL_MACHINE = ^&H80000002>>FixDNS.vbs
echo.>>FixDNS.vbs
echo Dim ObjWMIService>>FixDNS.vbs
echo Dim ObjNicConfig>>FixDNS.vbs
echo Dim colNicConfigs>>FixDNS.vbs
echo Dim ObjReg>>FixDNS.vbs
echo.>>FixDNS.vbs
echo Dim strComputer>>FixDNS.vbs
echo Dim arrIPAddresses>>FixDNS.vbs
echo Dim arrSubnetMasks>>FixDNS.vbs
echo Dim arrDNSServers>>FixDNS.vbs
echo Dim blnFullDNSRegistrationEnabled>>FixDNS.vbs
echo Dim blnDomainDNSRegistrationEnabled>>FixDNS.vbs
echo Dim strEnableDHCP>>FixDNS.vbs
echo Dim blnRegHJDNSFound>>FixDNS.vbs
echo Dim strRegClean>>FixDNS.vbs
echo Dim arrSubKeys>>FixDNS.vbs
echo Dim subkey>>FixDNS.vbs
echo.>>FixDNS.vbs
echo Dim intReturn>>FixDNS.vbs
echo Dim strValue>>FixDNS.vbs
echo Dim arrBlkList>>FixDNS.vbs
echo.>>FixDNS.vbs
echo.>>FixDNS.vbs
echo arrBlkList = Array("85.255", "69.50", "195.95", "194.54")>>FixDNS.vbs
echo.>>FixDNS.vbs
echo arrIPAddresses = Array("192.168.1.12") 'Have to set Static IP First>>FixDNS.vbs
echo arrSubnetMasks = Array("255.255.255.0")>>FixDNS.vbs
echo arrDNSServers = Array()>>FixDNS.vbs
echo blnFullDNSRegistrationEnabled = TRUE>>FixDNS.vbs
echo blnDomainDNSRegistrationEnabled = TRUE>>FixDNS.vbs
echo blnRegHJDNSFound = FALSE>>FixDNS.vbs
echo strEnableDHCP = "FALSE" 'FALSE = Never found anyHJDNS , TRUE = HJDNS Found and DoClean, CANCEL HJDNS Found and cancel>>FixDNS.vbs
echo strRegClean = "FALSE">>FixDNS.vbs
echo.>>FixDNS.vbs
echo Function SearchIp(Byval strIP)>>FixDNS.vbs
echo 	Dim arrIP, strIP0, strIP1, strIP2, arrIPBuf, strBlkIP>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	SearchIp = FALSE>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	If IsArray(strIP)=TRUE Then>>FixDNS.vbs
echo 		For Each strIP0 in strIP>>FixDNS.vbs
echo 			arrIP=Split(strIP0,",")>>FixDNS.vbs
echo 			For Each strIP1 in arrIP>>FixDNS.vbs
echo 				Trim strIP1>>FixDNS.vbs
echo 				arrIPBuf = Split(strIP1,".")>>FixDNS.vbs
echo 				If UBound(arrIPBuf)^>0 Then>>FixDNS.vbs
echo 					strIP2 = Trim(arrIPBuf(0)) ^& "." ^& Trim(arrIPBuf(1))>>FixDNS.vbs
echo 					For Each strBlkIP in arrBlkList>>FixDNS.vbs
echo 						If strIP2=strBlkIP Then>>FixDNS.vbs
echo 							SearchIp = TRUE>>FixDNS.vbs
echo 						End If>>FixDNS.vbs
echo 					Next>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			Next>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	Else>>FixDNS.vbs
echo 		arrIP=Split(strIP,",")>>FixDNS.vbs
echo 		For Each strIP1 in arrIP>>FixDNS.vbs
echo 			Trim strIP1>>FixDNS.vbs
echo 			arrIPBuf = Split(strIP1,".")>>FixDNS.vbs
echo 			If UBound(arrIPBuf)^>0 Then>>FixDNS.vbs
echo 				strIP2 = Trim(arrIPBuf(0)) ^& "." ^& Trim(arrIPBuf(1))>>FixDNS.vbs
echo 				For Each strBlkIP in arrBlkList>>FixDNS.vbs
echo 					If strIP2=strBlkIP Then>>FixDNS.vbs
echo 						SearchIp = TRUE>>FixDNS.vbs
echo 					End If>>FixDNS.vbs
echo 				Next>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End Function>>FixDNS.vbs
echo.>>FixDNS.vbs
echo strComputer = ".">>FixDNS.vbs
echo Set objWMIService = GetObject("winmgmts:" ^& "{impersonationLevel=impersonate}!\\" ^& strComputer ^& "\root\cimv2")>>FixDNS.vbs
echo Set colNicConfigs = objWMIService.ExecQuery ("SELECT * FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = TRUE")>>FixDNS.vbs
echo.>>FixDNS.vbs
echo For Each objNicConfig in colNicConfigs>>FixDNS.vbs
echo 	If Not IsNull(ObjNicConfig.DNSServerSearchOrder) Then>>FixDNS.vbs
echo 		If SearchIp(ObjNicConfig.DNSServerSearchOrder)=TRUE Then>>FixDNS.vbs
echo 			If strEnableDHCP = "FALSE" Then>>FixDNS.vbs
echo 				intReturn=msgbox("%DNSHJ%: " ^& left(objNicConfig.DNSServerSearchOrder(0),6) ^& ".x.x" ^& VbCrLf ^& VbCrLf ^& objNicConfig.Description ^& VbCrLf ^& VbCrLf ^& "%CleanDNS%" ^& VbCrLf ^& VbCrLf, vbExclamation+vbYesNo, "SmitfraudFix Alert")>>FixDNS.vbs
echo 				If intReturn=6 Then>>FixDNS.vbs
echo 					strEnableDHCP = "TRUE">>FixDNS.vbs
echo 				Else>>FixDNS.vbs
echo 					strEnableDHCP = "CANCEL">>FixDNS.vbs
echo 					MsgBox"%CancelDNS%",vbInformation, "SmitfraudFix Information">>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo Next>>FixDNS.vbs
echo.>>FixDNS.vbs
echo If strEnableDHCP = "TRUE" Then>>FixDNS.vbs
echo 	For Each objNicConfig in colNicConfigs>>FixDNS.vbs
echo 		If Not IsNull(ObjNicConfig.DNSServerSearchOrder) Then>>FixDNS.vbs
echo 			If SearchIp(ObjNicConfig.DNSServerSearchOrder)=TRUE Then>>FixDNS.vbs
echo 				intReturn = objNicConfig.EnableStatic(arrIPAddresses, arrSubnetMasks)>>FixDNS.vbs
echo 				intReturn = objNicConfig.SetDNSServerSearchOrder(arrDNSServers)>>FixDNS.vbs
echo 				intReturn = objNicConfig.EnableDHCP()>>FixDNS.vbs
echo 				intReturn = objNicConfig.SetDynamicDNSRegistration (blnFullDNSRegistrationEnabled, blnDomainDNSRegistrationEnabled)>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	Next>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo Set ObjReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" ^& strComputer ^& "\root\default:StdRegProv")>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo If intReturn=0 Then>>FixDNS.vbs
echo 	For Each subkey In arrSubKeys>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	Next>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo If intReturn=0 Then>>FixDNS.vbs
echo 	For Each subkey In arrSubKeys>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	Next>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo If intReturn=0 Then>>FixDNS.vbs
echo 	For Each subkey In arrSubKeys>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	Next>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo If intReturn=0 Then>>FixDNS.vbs
echo 	For Each subkey In arrSubKeys>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 		intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 		If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 			If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 				blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	Next>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 	If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 		blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 	If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 		blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 	If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 		blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 	If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 		blnRegHJDNSFound=TRUE>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 'Reg Clean Question>>FixDNS.vbs
echo If blnRegHJDNSFound=TRUE Then>>FixDNS.vbs
echo 	If strEnableDHCP = "FALSE" Then>>FixDNS.vbs
echo 		intReturn=msgbox("%DNSHJ%: " ^& left(objNicConfig.DNSServerSearchOrder(0),6) ^& ".x.x" ^& VbCrLf ^& VbCrLf ^& objNicConfig.Description ^& VbCrLf ^& VbCrLf ^& "%CleanDNS%" ^& VbCrLf ^& VbCrLf, vbExclamation+vbYesNo, "SmitfraudFix Alert")>>FixDNS.vbs
echo 		If intReturn=6 Then>>FixDNS.vbs
echo 			strRegClean = "TRUE">>FixDNS.vbs
echo 		Else>>FixDNS.vbs
echo 			strRegClean = "CANCEL">>FixDNS.vbs
echo 			MsgBox"%CancelDNS%",vbInformation, "SmitfraudFix Information">>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	ElseIf strEnableDHCP = "TRUE" Then>>FixDNS.vbs
echo 		strRegClean = "TRUE">>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 'Clean Reg>>FixDNS.vbs
echo If strRegClean = "TRUE" Then>>FixDNS.vbs
echo 	intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo 	If intReturn=0 Then>>FixDNS.vbs
echo 		For Each subkey In arrSubKeys>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo 	If intReturn=0 Then>>FixDNS.vbs
echo 		For Each subkey In arrSubKeys>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo 	If intReturn=0 Then>>FixDNS.vbs
echo 		For Each subkey In arrSubKeys>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.EnumKey(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces", arrSubKeys)>>FixDNS.vbs
echo 	If intReturn=0 Then>>FixDNS.vbs
echo 		For Each subkey In arrSubKeys>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"DhcpNameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 			intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer", strValue)>>FixDNS.vbs
echo 			If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 				If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 					intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters\Interfaces\" ^& subkey,"NameServer","")>>FixDNS.vbs
echo 				End If>>FixDNS.vbs
echo 			End If>>FixDNS.vbs
echo 		Next>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo 	If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 		If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 			intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\CurrentControlSet\Services\TCPIP\Parameters","NameServer","")>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo 	If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 		If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 			intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet001\Services\TCPIP\Parameters","NameServer","")>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo 	If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 		If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 			intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet002\Services\TCPIP\Parameters","NameServer","")>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo 	intReturn = ObjReg.GetStringValue(HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\Tcpip\Parameters", "NameServer", strValue)>>FixDNS.vbs
echo 	If intReturn=0 and strValue ^<^> "" Then>>FixDNS.vbs
echo 		If SearchIp(strValue)=TRUE Then>>FixDNS.vbs
echo 			intReturn=ObjReg.SetStringValue (HKEY_LOCAL_MACHINE, "SYSTEM\ControlSet003\Services\TCPIP\Parameters","NameServer","")>>FixDNS.vbs
echo 		End If>>FixDNS.vbs
echo 	End If>>FixDNS.vbs
echo End If>>FixDNS.vbs
echo.>>FixDNS.vbs
echo Set colNicConfigs = Nothing>>FixDNS.vbs
echo Set ObjWMIService = Nothing>>FixDNS.vbs
echo Set ObjReg = Nothing>>FixDNS.vbs
echo.>>FixDNS.vbs

cscript //I //nologo FixDNS.vbs
if exist FixDNS.vbs del FixDNS.vbs

GOTO :eof













:fin
echo.
echo %sEnd%
if exist CheckVersion.vbs del CheckVersion.vbs
if exist result2.txt del result2.txt
if exist clean.reg del clean.reg
if '%DoRestart%'=='1' goto AutoRestart
if '%DoReboot%'=='1' goto AutoReboot
echo.>>%systemdrive%\rapport.txt
echo »»»»»»»»»»»»»»»»»»»»»»»» %sEnd%>>%systemdrive%\rapport.txt
echo.>>%systemdrive%\rapport.txt
start %syspath%\winlogon.exe
start %windir%\explorer.exe
start %windir%\notepad.exe %systemdrive%\rapport.txt
goto menu


:AutoReboot
color 47
cls
echo.
echo.
echo               %fixname%                               %fixvers%
echo.
echo.
if %lang%==fra (
echo                    L'ordinateur va maintenant red^‚marrer
echo                          Fermez tous les programmes
) else (
echo                           Computer will reboot now
echo                            Close all applications
)
echo.
echo.
echo.
pause
REM if exist %syspath%\process.exe del %syspath%\process.exe
REM if exist %syspath%\swreg.exe del %syspath%\swreg.exe
REM if exist %syspath%\swsc.exe del %syspath%\swsc.exe
REM if exist %syspath%\SrchSTS.exe del %syspath%\SrchSTS.exe
REM if exist %syspath%\dumphive.exe del %syspath%\dumphive.exe
REM if exist %syspath%\swxcacls.exe del %syspath%\swxcacls.exe
Reboot.exe
exit


:AutoRestart
color 47
cls
echo.
echo.
echo               %fixname%                               %fixvers%
echo.
echo.
if %lang%==fra (
echo                    L'ordinateur va maintenant red^‚marrer
echo                          Fermez tous les programmes
) else (
echo                           Computer will reboot now
echo                            Close all applications
)
echo.
echo.
echo.
pause
REM if exist %syspath%\process.exe del %syspath%\process.exe
REM if exist %syspath%\swreg.exe del %syspath%\swreg.exe
REM if exist %syspath%\swsc.exe del %syspath%\swsc.exe
REM if exist %syspath%\SrchSTS.exe del %syspath%\SrchSTS.exe
REM if exist %syspath%\dumphive.exe del %syspath%\dumphive.exe
REM if exist %syspath%\swxcacls.exe del %syspath%\swxcacls.exe
start %syspath%\winlogon.exe
Restart.exe
exit
 



:exit
if exist %syspath%\process.exe del %syspath%\process.exe
if exist %syspath%\swreg.exe del %syspath%\swreg.exe
if exist %syspath%\swsc.exe del %syspath%\swsc.exe
if exist %syspath%\SrchSTS.exe del %syspath%\SrchSTS.exe
if exist %syspath%\dumphive.exe del %syspath%\dumphive.exe
if exist %syspath%\swxcacls.exe del %syspath%\swxcacls.exe
if exist %syspath%\VCCLSID.exe del %syspath%\VCCLSID.exe
cls
exit