RE: MSN Content Plus...help
I also could not stop the processes msnlogs.exe & msnlogm.exe.
I think that one process checks if the other process is still running and if not it starts it again. For that reason it is impossible to delete both processes.
I found a method to delete the processes nevertheless:
Copy the following batch file "delmsnlog.bat" to c:\
@echo off
:again
if exist %WINDIR%\msnlogm.exe del %WINDIR%\msnlogm.exe
if exist %WINDIR%\msnlogs.exe del %WINDIR%\msnlogs.exe
if exist %WINDIR%\msnlogm.exe goto again
if exist %WINDIR%\msnlogs.exe goto again
@echo msnlogs.exe and msnlogm.exe deleted.
@pause
Goto "Start" then "run" and type "c:\delmsnlog.bat" followed by ENTER.
While the batch file is running, you can stop the processes. You need several attempts, because the process is stopped for a very short time only and exactly in this moment delete batch should delete the file. I needed about 10 attempts for the first process.
This post was edited on 10-02-2006 at 07:03 AM by Klaus.
|