Problem caused by NetworkAgent .1710 cleanapi.dll. Try replacing with attached one.
Furthermore after applying new dll it is possible to enable or disable logging:
HKEY_LOCAL_MACHINE\SOFTWARE\KasperskyLab\Kleaner
''TraceEnable'' 0 = off 1 = on
__
kurgan2
provided a vbs script with copies the required dll from network share. script should be used with gpo/loginscript/...
<snip>Const OverwriteExisting = TRUE
Set objFSO = CreateObject("Scripting.FileSystemObject")
rem local path and filename to copy to
Set objLocalFile = objFSO.GetFile("c:\path\filename")
dtmLocalDate = objLocalFile.DateLastModified
rem remote path and filename to copy from
Set objServerFile = objFSO.GetFile("\\servername\path\filename")
dtmServerDate = objServerFile.DateLastModified
rem check if file is newer
If dtmLocalDate < dtmServerDate Then
objFSO.CopyFile objServerFile.Path, objLocalFile.Path, OverwriteExisting
End If
</snip>