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 there a way to find out all of the computer in the domain that have Sophos installed?

Hey all,

I have been tasked with finding out all of the computers on our network that have Sophos installed. We are moving away from Sophos and using the built in Win10 Bitlocker for encryption.

We have done the refreshes from Win7 to Win10 and for these machines, sophos wasnt installed, but before we decided to move away from Sophos, we had used it to encrypt a number of our Win10 machines.

So, I am looking for a script or some way within the Sophos Management Center to find out which machines we still need to remove it from. When I look in the Management Center, it shows all of the machines in our AD domain.

Any help in this matter would be appreciated.



This thread was automatically locked due to age.
Parents
  • Hi there,

    run this SQL Query against the SafeGuard database,

     use SafeGuard

     SELECT

     SAFE_GUARD_DIR.SGD_name as 'Machine name',

     IVT_INST_FEATURES.IIF_FEATURE as 'Feature Installed',

     convert (VARCHAR,IVT_INST_FEATURES.IIF_MODIFY_DATE,3) as 'Last modified'

     FROM IVT_INST_FEATURES INNER JOIN

     SAFE_GUARD_DIR ON IVT_INST_FEATURES.IIF_MACHINE_ID = SAFE_GUARD_DIR.SGD_ID

     order by SAFE_GUARD_DIR.SGD_name

    Se here for more queries, https://community.sophos.com/kb/en-us/109925

    Note, these queries will not work for standalone devices.

Reply
  • Hi there,

    run this SQL Query against the SafeGuard database,

     use SafeGuard

     SELECT

     SAFE_GUARD_DIR.SGD_name as 'Machine name',

     IVT_INST_FEATURES.IIF_FEATURE as 'Feature Installed',

     convert (VARCHAR,IVT_INST_FEATURES.IIF_MODIFY_DATE,3) as 'Last modified'

     FROM IVT_INST_FEATURES INNER JOIN

     SAFE_GUARD_DIR ON IVT_INST_FEATURES.IIF_MACHINE_ID = SAFE_GUARD_DIR.SGD_ID

     order by SAFE_GUARD_DIR.SGD_name

    Se here for more queries, https://community.sophos.com/kb/en-us/109925

    Note, these queries will not work for standalone devices.

Children
No Data