How to Find the Computer ID of a Deleted Computer

How can I find the computer ID of a computer that has been deleted from the Bigfix console?

Deleted computers in the Console are “Marked” as deleted in the database.

Maybe try this SQL statement?

select * from dbo.COMPUTERS
where IsDeleted = 1

1 Like