I've been told to remove specific web events for a single computer - we're reusing the name and it keeps getting old events assigned to it.
I realise I cant do this in the console. Now I have very basic SQL but this is what I was going to do
stop the following services
Sophos Management Service
Sophos Encryption Business Logic Service
Sophos Patch Endpoint Communicator Service
and backup the database with backdb.bat
Then open SQL Mgmt Studio and browse to the database. I know enough that I've been able to run some queries to get the ComputerID. If I run this query it actually returns everything I want to delete
select * from Events_Web WHERE ComputerID = XXX AND Name = 'Mal/whatever'
Is it as simple as running
DELETE from Events_Web WHERE ComputerID = XXX AND Name = 'Mal/whatever'
and restarting my services?
Thanks
This thread was automatically locked due to age.