This query will verify if the Sophos Endpoint Agent is on the new SDDS3 update mechanism.
https://support.sophos.com/support/s/article/KB-000043550?language=en_US
SDDSStatus will indicate if the endpoint is on SDDS2 or SDDS3.
An SDDS3Ready status when the endpoint is still on SDDS2 means either controlled or scheduled updates are configured, and the endpoint is ready to update once automatic updating is resumed.
SELECT (SELECT CASE WHEN data = "RECOMMENDED" THEN 'GA' WHEN data = "BETA" THEN 'EAP' END FROM registry WHERE key = "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Sophos\AutoUpdate\Service\CloudSubscriptions\Base\" AND name='Tag') as UpdateStream, (SELECT CASE WHEN data = 2 THEN 'SDDS2 ❌' WHEN data = 3 THEN 'SDDS3 ✅' END FROM registry WHERE key = "HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Sophos\AutoUpdate\UpdateStatus\" AND name LIKE '%Version') as SDDSStatus, (SELECT CASE WHEN data = 0 THEN 'NO' WHEN data = 1 THEN 'YES' END FROM registry WHERE key = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Sophos Endpoint Defense\EndpointFlags\" AND name='sdds3.ready') as SDDS3Ready
Top Comments