Hi Community, i have created a small script as a workaround. The script exports the exempted device list directly from the Sophos database to csv. Instructions: - save the script on Sophos Server - edit the SophosDB - have fun :-) ---- Script ----- ECHO ON REM Scriptname: SOPHOS_create_devc_exemptionlist set SophosDB=SOPHOS521 set sqlcmdfile=temp_sql_cmd.sql set csv_file=SOPHOS_create_devc_exemptionlist.csv echo use %SophosDB%; > %sqlcmdfile% echo SELECT DeviceTypeID,Comment,DeviceDescription,DeviceModel,DeviceInstance,DefaultExemptionLevel FROM dbo.ExemptedDevices >> %sqlcmdfile% echo go >> %sqlcmdfile% sqlcmd -E -S .\sophos -i %sqlcmdfile% -h-1 -s";" -w 700 -W -o %csv_file% pause
↧