This is what I have, but I would like to make a report of computers that are NOT running the smc.exe. What I have here reports back all the computers that have it running. New users here. great product. Thanks.
SELECT dbo.tblComputers.Computername, dbo.tblProcesses.Caption
FROM dbo.tblComputers INNER JOIN
dbo.tblProcesses ON dbo.tblComputers.Computername = dbo.tblProcesses.Computername
WHERE (dbo.tblProcesses.Caption = 'smc.exe')