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
  • @StewartMoss

    Nice script!

    One suggestion.

    Instead of querying the registry to find the architecture.

    Check for the environment variable %ProgramFiles(x86)%


    Only 64 bit systems will have this variable, and you avoid having to query the registry.

    You could do something like this:

    IF EXIST "%ProgramFiles(x86)%" (
     SET arch=64
    ) ELSE (
    SET arch=32
    )

    :31417
Reply
  • @StewartMoss

    Nice script!

    One suggestion.

    Instead of querying the registry to find the architecture.

    Check for the environment variable %ProgramFiles(x86)%


    Only 64 bit systems will have this variable, and you avoid having to query the registry.

    You could do something like this:

    IF EXIST "%ProgramFiles(x86)%" (
     SET arch=64
    ) ELSE (
    SET arch=32
    )

    :31417
Children
No Data