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

Sophos Safeguard Management Centre ver 8.30.0.78

Hi, 

How to find the file encryption status using sql query ?



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

    I would suggest you check this article and see if you are able to fetch reports for file encryption status. 

    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 where IVT_INST_FEATURES.IIF_FEATURE like 'File%'

    order by SAFE_GUARD_DIR.SGD_name

Reply
  • Hi 

    I would suggest you check this article and see if you are able to fetch reports for file encryption status. 

    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 where IVT_INST_FEATURES.IIF_FEATURE like 'File%'

    order by SAFE_GUARD_DIR.SGD_name

Children