Lansweeper wrote:
The report should be written like the one below. Replace "YourSoftware" with the software package you want to report on. The query will then return a list of computers that do not have this software package installed.
Select Top 1000000 tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain
From tblComputers
Where tblComputers.Computername Not In (Select tblSoftware.ComputerName
From tblSoftware Where tblSoftware.softwareName Like '%YourSoftware%')
Order By tblComputers.ComputerUnique
I don't think this will not work for me, as I would have to know what version I am wanting to look for. What I wrote is more dynamic, and would find what the newest version I had, and display all the ones that do not match. In my case, I already have Java, Adobe Reader, or Flash installed, just my IT staff has not updated them to the current version. I am wanting something I can have on the home page, so they know that a machine is not up to date.
What I wrote works, just is not as dynamic as I would like, and needs tweeked for each of the applications due to versions being a text field and sorting to get the last value is harder (It also doesn't address my initial question/wish, but I can live with that).