This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Is any one else seing this alert - Shh/Updater-B False positives

Virus/spyware 'Shh/Updater-B' has been detected in "C:\Program Files\Sophos\Sophos Anti-Virus\Web Intelligence\swi_update.exe". Cleanup unavailable. This is trickling in as alerts but at an alarming rate.

:29723


This thread was automatically locked due to age.
Parents
  • HI,

    I would do as follows:

    1. under the line "Option Explict" at the top add:

    Dim objFSO: Set objFSO = CreateObject("Scripting.FileSystemObject")
    Dim objLogFile: Set objLogFile = objFSO.CreateTextFile("log.txt")

    2. Then find the function: LogMsg (around line 1000) and change it to:

    Function LogMsg( strMsg )
       objLogFile.Writeline strMsg
    End Function

    That should do it.  Change log.txt to any location/file/

    Should really add:

    objLogFile.close

    at the end of the "Main" function as well

    Regards,

    Jak

    :33173
Reply
  • HI,

    I would do as follows:

    1. under the line "Option Explict" at the top add:

    Dim objFSO: Set objFSO = CreateObject("Scripting.FileSystemObject")
    Dim objLogFile: Set objLogFile = objFSO.CreateTextFile("log.txt")

    2. Then find the function: LogMsg (around line 1000) and change it to:

    Function LogMsg( strMsg )
       objLogFile.Writeline strMsg
    End Function

    That should do it.  Change log.txt to any location/file/

    Should really add:

    objLogFile.close

    at the end of the "Main" function as well

    Regards,

    Jak

    :33173
Children
No Data