echo off
REM Autor: Dave (31/05/2007)
REM
REM
REM Remotely Cleanup MCafee software:
REM
REM Connect to Remote PC
REM
REM Stops Mcafee Processes
REM
REM Deletes followinf Mcafee Soft:
REM
REM Mcafee Frameworkservice
REM Mcafee VSE8.0 & VSE8.5
REM Mcafee System Compliance Profiler
REM
REM Removes leftovers (Files, Dirs & RegKeys)
REM
REM Disconnect from remotePC
REM
REM
REM
REM Requires:
REM - pskill.exe (sysinternal tools)
REM - psexec.exe (sysinternal tools)
REM - VSESetup.exe (= VSE8.5i setup.exe)
REM - NAI_CLEANUP_REG.reg (list of regkeys & values to delete)
REM
REM
REM NOTE: After executing this batch you have to reboot the client.
REM
REM
REM Usage
REM
REM x.bat \\RemotePC <Username> <Password>
REM
rem echo 1=%1
SETLOCAL
set logfile=_MCAFEE_CLEANUP.CSV
set FAILED=0
set destinationPC=%1
net use %destinationPC% /user:%2 %3
if [%1]==[] goto :nopc
echo .
echo Kill processes
echo °°°°°°°°°°°°°°°
echo .
pskill.exe %destinationPC% FrameworkService
pskill.exe %destinationPC% Mcshield
pskill.exe %destinationPC% VsTskMgr
pskill.exe %destinationPC% UpdaterUI
pskill.exe %destinationPC% UdaterUI
pskill.exe %destinationPC% McScript_InUse
pskill.exe %destinationPC% McTray
pskill.exe %destinationPC% shstat
pskill.exe %destinationPC% naPrdMgr
pskill.exe %destinationPC% tbmon
echo wait 5 seconds
TYPE NUL | choice /c:delay /td,5 > NUL
echo .
echo Remove old Frameworkservice
echo °°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
if exist "%destinationPC%\c$\Program Files\Network Associates\Common Framework\FrmInst.exe" (
psexec.exe %destinationPC% /s "c:\Program Files\Network Associates\Common Framework\frminst.exe" /silent /forceuninstall
echo .
echo SUB-RESULT
echo °°°°°°°°°°
echo .
echo wait 10 seconds
TYPE NUL | choice /c:delay /td,10 > NUL
) else (
if exist "%destinationPC%\c$\Program Files\MCafee\Common Framework\FrmInst.exe" (
psexec.exe %destinationPC% /s "c:\Program Files\McAfee\Common Framework\frminst.exe" /silent /forceuninstall
echo .
echo SUB-RESULT
echo °°°°°°°°°°
echo .
echo wait 10 seconds
TYPE NUL | choice /c:delay /td,10 > NUL
) else (
Echo SKIPPED uninstallation - %destinationPC% [No old version Found]
Echo SKIPPED;%destinationPC%;%date%;%date%;%time%;uninstallation [No old version Found]
)
)
if exist "%destinationPC%\c$\Program Files\Network Associates\Common Framework" (
rmdir "%destinationPC%\c$\Program Files\Network Associates\Common Framework" /S /Q
)
if exist "%destinationPC%\c$\Program Files\MCafee\Common Framework" (
rmdir "%destinationPC%\c$\Program Files\MCafee\Common Framework" /S /Q
)
if NOT exist "%destinationPC%\c$\Program Files\MCafee\Common Framework" (
Echo SUCCESSFULLY removed previous version
Echo SUCCESS;%destinationPC%;%date%;%date%;%time%;removed old version
) else (
Echo FAILED - [old path still exist]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;uninstallation [previous path still exist]
Goto :Step2
)
if NOT exist "%destinationPC%\c$\Program Files\Network Associates\Common Framework" (
Echo SUCCESSFULLY removed old version
Echo SUCCESS;%destinationPC%;%date%;%date%;%time%;removed old version
) else (
Echo FAILED - [old path still exist]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;uninstallation [old path still exist]
Goto :Step2
)
:Step2
echo .
echo Remove old VSE
echo °°°°°°°°°°°°°°
echo .
if exist "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise" (
echo Remove "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise"
psexec.exe %destinationPC% /s /c "VSESetup.exe" REMOVE=ALL REBOOT=R /q
rmdir "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise" /S /Q
Goto :Step3
)
if exist "%destinationPC%\c$\Program Files\Network Associates\VirusScan" (
echo Remove "%destinationPC%\c$\Program Files\Network Associates\VirusScan"
psexec.exe %destinationPC% /s /c "VSESetup.exe" REMOVE=ALL REBOOT=R /q
rmdir "%destinationPC%\c$\Program Files\Network Associates\VirusScan" /S /Q
Goto :Step3
)
if exist "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise" (
echo Remove "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise"
psexec.exe %destinationPC% /s /c "VSESetup.exe" REMOVE=ALL REBOOT=R /q
rmdir "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise" /S /Q
Goto :Step3
)
Echo No VSE Found
:Step3
echo .
echo Remove System Compliance Profiler
echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
if exist "%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler\PatchScanInstaller.exe" (
echo Remove "%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler"
psexec.exe %destinationPC% /s "c:\Program Files\Network Associates\System Compliance Profiler\PatchScanInstaller.exe" /u
rmdir "%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler" /S /Q
Goto :Step4
)
if exist "%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler\PatchScanInstaller.exe" (
echo Remove "%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler"
psexec.exe %destinationPC% /s "c:\Program Files\McAfee\System Compliance Profiler\PatchScanInstaller.exe" /u
rmdir "%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler" /S /Q
Goto :Step4
)
Echo No System Compliance Profiler Found
echo wait 5 seconds
TYPE NUL | choice /c:delay /td,5 > NUL
:Step4
echo .
Echo Remove RegKeys
Echo °°°°°°°°°°°°°°
echo .
echo Copy "NAI_CLEANUP_REG.reg" to "%destinationPC%\c$\NAI_CLEANUP_REG.reg"
copy "NAI_CLEANUP_REG.reg" "%destinationPC%\c$\NAI_CLEANUP_REG.reg" /Y
echo delete Regkeys
psexec.exe %destinationPC% /s "regedit.exe" /s %destinationPC%\c$\NAI_CLEANUP_REG.reg
echo Delete "%destinationPC%\c$\NAI_CLEANUP_REG.reg"
del %destinationPC%\c$\NAI_CLEANUP_REG.reg /Q
echo wait 5 seconds
TYPE NUL | choice /c:delay /td,5 > NUL
:Step5
echo .
Echo Remove Files
Echo °°°°°°°°°°°°°°°°°°
echo .
echo .
echo Remove MFE driver files
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Delete "%destinationPC%\c$\windows\system32\drivers\MFE???K.sys"
del %destinationPC%\c$\windows\system32\drivers\MFE???K.sys /Q
echo .
Echo Remove Directories
Echo °°°°°°°°°°°°°°°°°°
echo .
echo .
echo Remove Frameworkservice Directories
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\Network Associates\Common Framework\"
rmdir "%destinationPC%\c$\Program Files\Network Associates\Common Framework\" /Q /S
echo .
echo Remove "%destinationPC%\c$\Program Files\MCafee\Common Framework\"
rmdir "%destinationPC%\c$\Program Files\MCafee\Common Framework\" /Q /S
echo .
echo Remove VSE Directories
Echo °°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise\"
rmdir "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise\" /Q /S
echo .
echo Remove "%destinationPC%\c$\Program Files\Network Associates\VirusScan\"
rmdir "%destinationPC%\c$\Program Files\Network Associates\VirusScan\" /Q /S
echo .
echo Remove "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise\"
rmdir "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise\" /Q /S
echo .
echo Remove System Compliantce Profiler Directories
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\Network Associates\System Compliantce Profiles"
rmdir "%destinationPC%\c$\Program Files\Network Associates\System Compliantce Profiles" /S /Q
echo .
echo Remove "%destinationPC%\c$\Program Files\McAfee\System Compliantce Profiles"
rmdir "%destinationPC%\c$\Program Files\McAfee\System Compliantce Profiles" /S /Q
echo .
echo Remove Network Associates Directory (If empty)
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\Network Associates"
rmdir "%destinationPC%\c$\Program Files\Network Associates" /Q
echo .
echo Remove Mcafee Directory (If empty)
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\McAfee"
rmdir "%destinationPC%\c$\Program Files\McAfee" /Q
echo .
echo Remove Common Files Directories
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Program Files\Common Files\McAfee"
rmdir "%destinationPC%\c$\Program Files\Common Files\McAfee" /S /Q
echo Remove "%destinationPC%\c$\Program Files\Common Files\McAfee Inc"
rmdir "%destinationPC%\c$\Program Files\Common Files\McAfee Inc" /S /Q
echo Remove "%destinationPC%\c$\Program Files\Common Files\Network Associates"
rmdir "%destinationPC%\c$\Program Files\Common Files\Network Associates" /S /Q
echo .
echo Remove Temporary and Log Directories
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\c$\Windows\Temp\McAfeeLogs"
rmdir "%destinationPC%\c$\Windows\Temp\McAfeeLogs" /S /Q
echo .
echo Remove "%destinationPC%\c$\Windows\Temp\NAILogs"
rmdir "%destinationPC%\c$\Windows\Temp\NAILogs" /S /Q
echo .
echo Remove Log Directories (D$\Documents and Settings)
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan" /S /Q
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates\BOPDATA"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates\BOPDATA" /S /Q
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\Network Associates" /S /Q
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee\Common Framework"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" /S /Q
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" /S /Q
echo .
echo Remove "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee"
rmdir "%destinationPC%\D$\Documents and Settings\All Users\Application Data\McAfee" /Q
echo .
echo Remove Log Directories (C$\Documents and Settings)
Echo °°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°°
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan" /S /Q
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\BOPDATA"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\BOPDATA" /S /Q
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates" /S /Q
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" /S /Q
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" /S /Q
echo .
echo Remove "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee"
rmdir "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee" /Q
:Step6
echo .
echo .
echo .
echo .
echo .
echo .
Echo Check Routines
Echo °°°°°°°°°°°°°°
echo .
Echo ################################################=##=#===-=--- - -
Echo #
rem Echo #
rem Echo # Check "C:\Program Files\Network Associates" dirs
rem Echo #
if exist "%destinationPC%\c$\Program Files\Network Associates\VirusScan" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Network Associates\VirusScan Enterprise" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Network Associates\Common Framework" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\Common Framework] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\Common Framework] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Network Associates\System Compliance Profiler] [REBOOT CLIENT and cleanup again] >> %logfile%
)
rem Echo #
rem Echo # Check "C:\Program Files\McAfee" dirs
rem Echo #
if exist "%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\VirusScan Enterprise] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\McAfee\Common Framework" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\McAfee\System Compliance Profiler] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\windows\system32\drivers\MFE???K.sys" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing files [%destinationPC%\c$\windows\system32\drivers\MFE???K.sys] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing files [%destinationPC%\c$\windows\system32\drivers\MFE???K.sys] [REBOOT CLIENT and cleanup again] >> %logfile%
)
rem Echo #
rem Echo # Check "C:\Program Files\Common Files" dirs
rem Echo #
if exist "%destinationPC%\c$\Program Files\Common Files\McAfee" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\McAfee] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\McAfee] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Common Files\McAfee Inc" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\McAfee Inc] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\McAfee Inc] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Common Files\Network Associates" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\Network Associates] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\Network Associates] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\c$\Program Files\Common Files\Network Associates\Engine\McScan32.dll" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\Network Associates\Engine\McScan32.dll] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\c$\Program Files\Common Files\Network Associates\Engine\McScan32.dll] [REBOOT CLIENT and cleanup again] >> %logfile%
)
rem Echo #
rem Echo # Check Log Directories (D$\Documents and Settings)
rem Echo #
if exist "%destinationPC%\d$\Documents and Settings\All Users\Application Data\Network Associates" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\d$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db] [REBOOT CLIENT and cleanup again] >> %logfile%
)
rem Echo #
rem Echo #Check Log Directories (C$\Documents and Settings)
rem Echo #
if exist "%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\Network Associates\VirusScan] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\DesktopProtection] [REBOOT CLIENT and cleanup again] >> %logfile%
)
if exist "%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db" (
set FAILED=1
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db] [REBOOT CLIENT and cleanup again] [check logfile %logfile%]
Echo FAILED;%destinationPC%;%date%;%date%;%time%;Still existing dir [%destinationPC%\C$\Documents and Settings\All Users\Application Data\McAfee\Common Framework\Db] [REBOOT CLIENT and cleanup again] >> %logfile%
)
rem Echo #
rem Echo # If successfully cleaned LOG
rem Echo #
if %FAILED%==0 (
Echo SUCCEEDED;%destinationPC%;%date%;%date%;%time%;MCAFEE products are removed [check logfile %logfile%]
Echo SUCCEEDED;%destinationPC%;%date%;%date%;%time%;MCAFEE products are removed [NEXT STEP install latest epoframework] >> %logfile%
)
Echo #
Echo ################################################=##=#===-=--- - -
Goto :END
:nopc
echo parameter missing (%%1 - destinationPC)
goto :END
:END
net use %destinationPC% /delete
rem pause
ENDLOCAL
REGEDIT4
;
; ATTENTION YOU NEED SYSTEM RIGHTS TO SUCCESSFULLY DELETE ALL THE UNDERLYING KEYS
;
; This regfile will delete all following mcafee software keys (I know) from the registry
;
; MCafee Frameworks Service
; VSE8.0i
; VSE8.5i
;
; Delete "HKLM\SOFTWARE\McAfee" keys (Except HIPS)
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\AVEngine]
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\DesktopProtection]
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\ePolicy Orchestrator]
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\McTray]
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\VSCore]
[-HKEY_LOCAL_MACHINE\SOFTWARE\McAfee\VirusScan]
; Delete "HKLM\SOFTWARE\Network Associates" keys (Except HIPS)
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Agent]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\CMNUPD__3000]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\EPOAGENT3000]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\EPOAGENT3000META]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\PATCH___1100]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\PCR_____1000]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\SYSPROPS1000]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\VIRUSCAN8000]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Application Plugins\VIRUSCAN8600]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\NaiLite]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\ePolicy Orchestrator\Site Manager]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\Patch Scanner]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\TalkBack]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\TVD]
; Delete "Uninstall" keys (Except HIPS)
;
; McAfee VirusScan Enterprise 8.6.0 (VSE8.5i)
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{35C03C04-3F1F-42C2-A989-A757EE691F65}]
; "DO NOT REMOVE: Created by McAfee ePolicy Orchestrator 3.6.1ÀíB installer for backward compatibility."
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{66C69D80-C95C-11d3-8A0B-006008C7D0F2}]
;
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{87AEFD84-BC0D-11D4-B885-00508B022A51}]
;
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5DF3D1BB-894E-4DCD-8275-159AC9829B43}]
; HIPS 6.0.0
;[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{FEF2C100-2CA4-4A6A-A535-07B46117B323}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\BB1D3FD5E498DCD4285751A99C28B934]
; McAfeeFramework
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AppID\{2A6D72F1-6E7E-4702-B99C-E40D3DED33C3}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0104BA4A-D33C-40AF-8FD3-C42512D43468}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{04D18721-749F-4140-AEB0-CAC099CA4741}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0507F657-016D-4DD2-BA86-3F0847403A95}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{056ADD67-DDB0-47BE-9F7D-DC652206F766}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{08815891-3400-4CD8-B644-23BE617ED6D6}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0AA5BF4A-88BD-4E61-9968-BBF04701B5C6}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0C0E6B96-D948-4611-85F1-BE9BFCAD7B79}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{0D7C69CB-CF5F-4594-8FEE-0B6DDA9F75D6}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1161A96C-CBA5-4CA7-BB39-BC9280348E73}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{11D6CF01-F8BA-4e8f-8BC4-9A2B63908AA1}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{13E018B0-6A81-4F04-B8F7-81D63B1476D4}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1411927E-EF03-4E9B-85E6-32253FEB78A7}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{156C5A53-D993-11D3-863E-00B0D0213D48}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{156C5A54-D993-11D3-863E-00B0D0213D48}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{16517279-F17F-425C-B99A-F32374664763}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1A13B2E0-805B-44F7-94A8-8D3A2258D6A2}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{1FE25B89-B3E7-4FF8-B67A-300286F51E5F}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{221F3B81-CAD5-4EE1-82FE-65CAA21623DF}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{2D417134-0D48-4856-B6F5-04E63171E24C}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{2D4842EA-9F7B-4B6A-B157-41C6250DA148}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{3153E8D7-C724-47CC-A7FE-5C90EB4093A0}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{3AEC7772-2766-4C67-8487-4189C55DDE4E}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{3BF43200-BA9B-4730-8172-760C23ACA789}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{3C9654E8-E7F6-491D-A674-85CB53573FEE}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{4124FDF6-B540-44C5-96B4-A380CEE9826A}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{4EF17F94-3975-4ACF-B228-29485BDE5860}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{4F1078B1-41CB-4743-996B-ACD1913A239B}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{4F13CE9C-D753-422E-B897-BD70CC8CEA46}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{50CCECAC-7286-4CA0-9AD0-E309A2318482}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{5284E46B-63F2-4D12-9434-88B7899EA7DD}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{528F66A7-7891-4F6B-8F1E-5132CC80650C}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{55D57588-75EF-11d3-AC63-00105A25E4EA}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{451D30D1-C1EB-4891-BD3A-5FD7E3001784}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{B54F3741-5B07-11cf-A4B0-00AA004A55E8}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{f414c260-6ac0-11cf-b6d1-00aa00bbbb58}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Patches\18EF1369A583E2E4C877CEE0CCD8192A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Patches\502E235C3FBD13943A9773627EB8C29F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\BB1D3FD5E498DCD4285751A99C28B934]
[-]
; VSE
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{cda2863e-2497-4c49-9b89-06840e070a87}]
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\Folders]
"C:\Program Files\Common Files\McAfee"=-
"C:\Program Files\Common Files\Network Associates\TalkBack\"=-
"C:\Program Files\Common Files\Network Associates\TalkBack\Data\"=-
"C:\Documents and Settings\All Users\Start Menu\Programs\Network Associates\"=-
"D:\Documents and Settings\All Users\Start Menu\Programs\Network Associates\"=-
"C:\Program Files\Network Associates\VirusScan\Res09\"=-
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\07E8A486E0A627C42BADE2CB1894B161]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\08EC3E06EDEDB4849A8D6A4E3A03B0CC]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\096B765B6F2812042BD50C9AF9046C7A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\0E01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\0F2333DC1CCD6D545BB4C172DD414CBC]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\0F83788799820444EBAD62F24D95A075]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\10FFB9FEB6C2FB44F9CC0C018D7C883F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\133AC76E62F04194585A78C224E0663E]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\14572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1471C5E83329D8B4FBB5E7E3D959B0F8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\168EB765EF6D73B44B05AA7EB7DC2524]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1B2288D7EDBFCE24DBEB8AE61097AC8B]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1C1B420A73415984E999483C8AF118B5]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1C381B0BDEE13D64C94CE1C02D33680F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1E01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\1ECD1E150C353714EB0224D4DB921DE1]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\2B62C824E61A2964BBB8B881187D2AB8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\2C4BAACEE3FF058449CFE4DABB1FD9A4]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\2CF872CD0471D8E46AC86CBEDDFB2281]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\2E01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\2F80004200B81DA4C8C1FFEEB76F45D8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\31312F733FF0564478C4C1F5C44EF9BB]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\31AF7E3C4C65F5D4D86D07A6E4908F52]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\34A3A25BC60FE6E49A8B623A8B7F0733]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\35E44A8E44710554CACF67BE3E94463B]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\35F0E650937A58E4DBD5BD2565824AAC]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\38E33DE298C2BD04C90AAFD6B23D9105]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\3A03CA06999ECA14CA111621671BB823]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\3B764E26A5D3A4D41994CC25E186E66B]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\3D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\3FDC71D658953D1198BB0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\428FCD8E6FC857C49ACE8A297AA09757]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\42BC52741053D2843A4475CFE4541AE5]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\43572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\446DD3B3BCCDB9944BBC0FBEBC3D57FE]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\49C7DFA9451919B4A9CED1290A8D9EE5]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\4A15917A81CA3D113AF8000056912350]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\4C5BD1E1F25D3D11D938000CF4563664]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\4C6636EA8AE9CCC429D88A20689E4FF4]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\5C5823B378DB3D11D9E7000CF4563664]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\5CBA826D1960CD2409B9D8EA6ABAD62F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\5D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\5D2F4ACEC8E68DE49A4E368ED3E1F6D3]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\5FA0CAD0D8E018E408CF153F8A5A8C51]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\62907C0D30257C248B3C057E455FC093]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\63572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\672B05B48C4B472429137407ACE6CD8A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6791D7D4D69ACDF469811FE093633A76]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\68B947AD678292A4C89CCECF2A58B547]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6A3D6F771F153D14D9F3A92A69FFCEFE]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6A47E57345883224F88B137463C21812]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6C01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6C945186A13920642BBFD921809128F2]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6E6265B6655912B45872F6CA43FC6FA5]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\6F2AE7D7C8B5AF542B5EEA877B8D7EA8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\711365DB3DF4EAC43B1D10B31BAF2ECA]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\733BF5D3841696149BEC86AE21382718]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\740D226919AC99A4D8AF086184A02D7E]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\746D1EFCC3BE4D746A3DB3349F1F4471]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\74ADE507E1D028D48A6C39E417E5418C]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\7575B534064B7D9449FEBBA765A5CC5F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\75990324BC9E32B48BA174EA53FEFED9]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\7D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\80FAA8ADF1FA3FB4AAA29D828E94C2ED]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\869E0559394201F4282C6794F6E988F4]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\8851457106C10324FBE60EFC16245559]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\89A17F5604B9791439E29142AFA2DFB8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\89BCED396B09CD54EA7FDD1A9A6EDB41]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\8B4BDA7408A6EF144A3823A5ECADA8C6]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\8BB39EF132BE55F408174431C473E472]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\8D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\8EB244EF98665E04298DE723571454DD]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\9097BB89F717EC44BB5CEB21AFC16567]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\929FD1A3CAC6F474BBB9ADF8995BA8EC]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\93572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\936796DB66A782544901D8618B598A23]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\9AAB7DB004388A84FA05B7B333DF91E8]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\9B6FC109DB586194680C5F3FE739678C]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\9D01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A195FBB43AC82EF489B63FD218B03E88]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A2A1FE78DCF5CC643883334517A5CA83]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A41085DCE73BBD746898192B6E24D804]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A44D09D375C817E47BEF8FB39C7DA2D4]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A4572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\A764E57800158674594E085732B3C744]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\ACFD93BED1731B946848898CDC77B513]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\AD60BCB0E2B9AAC43A8F1C64D3EA2496]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\AEB40C3C799E1904EA400A06F3D8F50C]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B1E25EE2A53FF084AB4D2180418F8892]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B2CC48CC0CB70314DAA4837079C780C1]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B4572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B553F572CB35B5441B350F0FFE933ED0]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B5720E0A990F8F146B0CCEDD2CB861F3]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B78A405C3A6932A44A723D3E78183FCD]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B8C31413477FD644399B96C565093801]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\B988D7107FBFAE447945B5F40BA94861]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\BA9C0C455AFD3DC45824BD37924142C6]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\BC7499FEA96930246B3A393632229B80]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\BF4722F6585DA4D499B31E258A8AC427]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\C23A2350632B37A46BE19C01ABAA5B1F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\C4572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\C5BAD53D7AE899E4FB42069A061147BF]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\C747BF361FBD41542A8FDF6314A0A869]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\C8364EAF471CED1418833910D37784D6]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\CA5144F04733A18468D51952B27E909C]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\CA9F10997E9746A499C59030EE0E8806]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\D002600A631392045AF0686538F7FA4A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\D32D6BCD637C3394EB877634C8AC4D9E]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\D4572F63D7653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\DA4BEA1BD0EE99242896B1ED862DDB1A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\DAD3EF0BB0183DC499FD529DE6BFFAB3]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\DD01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\E191D568885A6854E885EACBECAA3466]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\E2FFB3348AC34FE4D8F6999163E20594]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\E54425866CC930149B50F6555224FE9C]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\E639AB6964BE08D47956EB03A8D1777A]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\EADCEB9346EA2E641A7430CCC765EC7E]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\ED01393277653D11989B0006807C0D2F]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\F013BDB27D338274EB8598DE7F693F43]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\F46066D35FEA6D74BB8BAB8C676D5763]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\F4DB7C89DA9918947957EF25DFFC6060]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\F580114DBBDB10141A293432296F10AA]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\F8E614438615C9E46BAC4E643A62C2A4]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\FCBE89FEDDABB3542A7EE62C9DFDE2EC]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Components\FD01393277653D11989B0006807C0D2F]
;You need system rights to delete following keys
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\McAfeeFramework]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NAIMAGENT32]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NaiAvFilter1]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NaiAvFilter101]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NaiAvTdi1]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\McShield]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\McTaskManager]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\NaiFsRec]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MFERKDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MCAFEEFRAMEWORK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MCSHIELD]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MCTASKMANAGER]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFERKDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIFILTR]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIFSREV]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIAVFILTER1]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIAVFILTER101]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIAVFILTER102]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIAVFILTER103]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIAVTDI1]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\Root\LEGACY_NAIFSREC]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\McAfeeFramework]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\NAIMAGENT32]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\NaiAvFilter1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\NaiAvFilter101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\NaiAvTdi1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\McShield]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\McTaskManager]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\NaiFsRec]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MCAFEEFRAMEWORK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MCSHIELD]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MCTASKMANAGER]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFERKDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIFILTR]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIFSREV]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIAVFILTER1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIAVFILTER101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIAVFILTER102]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIAVFILTER103]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\Root\LEGACY_NAIAVTDI1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\McAfeeFramework]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\NAIMAGENT32]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\NaiAvFilter1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\NaiAvFilter101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\NaiAvTdi1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\McShield]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\McTaskManager]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\NaiFsRec]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MCAFEEFRAMEWORK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MCSHIELD]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MCTASKMANAGER]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFERKDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIFILTR]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIFSREV]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIAVFILTER1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIAVFILTER101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIAVFILTER102]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIAVFILTER103]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Enum\Root\LEGACY_NAIAVTDI1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\McAfeeFramework]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\NAIMAGENT32]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\NaiAvFilter1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\NaiAvFilter101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\NaiAvTdi1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\McShield]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\McTaskManager]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\NaiFsRec]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MCAFEEFRAMEWORK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MCSHIELD]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MCTASKMANAGER]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFEAPFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFEAVFK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFEBOPK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFEHIDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFERKDK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_MFETDIK]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIFILTR]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIFSREV]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIAVFILTER1]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIAVFILTER101]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIAVFILTER102]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIAVFILTER103]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Enum\Root\LEGACY_NAIAVTDI1]
; Delete "other" keys
;
; Checkpoint
[-HKEY_LOCAL_MACHINE\SOFTWARE\CheckPoint\SecuRemote\SCV\Plugins\mcavscv]
; Outlook plugin
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Exchange\Client\Extensions]
"Exchange Scan"=-
; Run key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"ShStatEXE"=-
"McAfeeUpdaterUI"=-
"Network Associates Error Reporting Service"=-
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\Alert Manager Event Interface]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Eventlog\Application\McLogEvent]
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SNMP\Parameters\ExtensionAgents]
"MCVSSNMP"=-
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\Alert Manager Event Interface]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\Eventlog\Application\McLogEvent]
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\SNMP\Parameters\ExtensionAgents]
"MCVSSNMP"=-
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\Eventlog\Application\Alert Manager Event Interface]
[-HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\Eventlog\Application\McLogEvent]
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet003\Services\SNMP\Parameters\ExtensionAgents]
"MCVSSNMP"=-
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\Alert Manager Event Interface]
[-HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog\Application\McLogEvent]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SNMP\Parameters\ExtensionAgents]
"MCVSSNMP"=-
[HKEY_USERS\.DEFAULT\Software\Microsoft\Windows\ShellNoRoam\MUICache]
"C:\WINDOWS\TEMP\McAfee VirusScan Enterprise 80\setupvse.exe"=-
"C:\WINDOWS\TEMP\McAfee VirusScan Enterprise 85\SetupVSE.Exe"=-
[-HKEY_USERS\.DEFAULT\Software\McAfee]
[-HKEY_USERS\.DEFAULT\Software\Network Associates]
[/code][/quote]
VSE8.5_Setup.exe REMOVE=ALL
New to the forums or need help finding your way around the forums? There's a whole hub of community resources to help you.
Thousands of customers use our Community for peer-to-peer and expert product support. Enjoy these benefits with a free membership: