Here is the Query to run a report of a specific software and output
ComputerName,Email,FirstName,LastName,Active Date,Software Scan Date
Replace the Softwarename to any software of your choice eg "Utorrent"
Select Top 1000000 dbo.tblComputers.Computername, dbo.tblComputers.ComputerUnique, dbo.tblSoftware.softwareName As Software, tblADusers.email, tblADusers.Firstname, tblADusers.Lastname, dbo.tblComputers.Username, dbo.tblComputers.Lastseen As LastActive, TsysLastscan.Lasttime As ScannedOn From dbo.tblComputers Inner Join dbo.tblSoftware On dbo.tblComputers.Computername = dbo.tblSoftware.ComputerName Inner Join dbo.web40ActiveComputers On dbo.tblComputers.Computername = dbo.web40ActiveComputers.Computername Inner Join tblADusers On tblADusers.Username = dbo.tblComputers.Username And tblADusers.Userdomain = dbo.tblComputers.Userdomain Inner Join TsysLastscan On dbo.tblComputers.Computername = TsysLastscan.Computername Where dbo.tblSoftware.softwareName = 'Softwarename' And TsysLastscan.CFGcode = 56 Order By dbo.tblComputers.Computername