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

Sophos Endpoint API or Command that Triggers to run the full scan and updating anti virus

 Hello Everyone,

 

Can someone provide the API or a Command that triggers to run the full scan and updating the anti virus? Your help will be much appreciated.

 

Thank you,

Alfie



This thread was automatically locked due to age.
Parents
  • You can trigger a scan from any of the Management Consoles (SEC or Cloud) on demand.

    As for a client side initiation of an update.

    Function CallUpdate()
      dim objALC : set objALC = CreateObject("ActiveLinkClient.ClientUpdate.1")
      objALC.UpdateNow 1,1
      set objALC = nothing
    End Function 

    ==

    When in doubt, Script it out.

Reply
  • You can trigger a scan from any of the Management Consoles (SEC or Cloud) on demand.

    As for a client side initiation of an update.

    Function CallUpdate()
      dim objALC : set objALC = CreateObject("ActiveLinkClient.ClientUpdate.1")
      objALC.UpdateNow 1,1
      set objALC = nothing
    End Function 

    ==

    When in doubt, Script it out.

Children