Guest User!

You are not Sophos Staff.

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 is possible to schedule a custom scan?

I would like to schedule a scan with the for Mac Home product.  Is this possible?  If so, what are the steps?

:1002401


This thread was automatically locked due to age.
  • The feature is not included in our free product; however, you can easily create such a scan using AppleScript to start the scan and launching the script from iCal as a repeated event.

    :1002403
  • Hi,

    Trying to use AppleScript as recommended.

    I have the  following:

    tell application "Sophos Anti-Virus"

     scan local volumes

    scan finder items "diskstation/homes"

    scan finder items "diskstation/music"

    scan finder items "diskstation/NetBackup"

    scan finder items "diskstation/photo"

    scan finder items "diskstation/usbshare2"

    scan finder items "diskstation/web"

    end tell

    The 'scan local volumes" seems to work fine.. The others are volumes on a NAT - these don't work at all.  Am I missing something?

    Cheers!

    Mike

    :1002609
  • If the other volumes are on a NAT, shouldn't you be referring to "/Volumes/<volumename>/homes" etc?  I'm guessing for you that'd be "/Volumes/diskstation/homes".  The paths you have are not front anchored, and so will be referencing wherever the AppleScript is running from as their path root -- which is not what you're wanting to do, I presume.

    :1002615