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.
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
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.