|
You'll should also check the following directories:
%windir%\system32\zipfldr.dll
%windir%\system32\dllcache\zipfldr.dll
%windir%\I386\zipfldr.dll (may or may not exist)
Do a scan on zipfldr.dll. You might have another copy above the windows directory. Do a search for zipfldr.dll to see if another DLL exists.
I use this BATCH file when someone asks me to remove this feature from their system.
UNZIPFLDR.BAT
------------------------------------------------------
regsvr32 /U ZIPFLDR.DLL
ren C:\WINDOWS\system32\zipfldr.dll ZIPFLDR.OLD
ren C:\WINDOWS\system32\dllcache\zipfldr.dll ZIPFLDR.OLD
ren C:\WINDOWS\I386\ZIPFLDR.DL_ ZIPFLDR.OLD_
--------------------------------------------------------
|