Hi everyone; I need help with creating a report on all version of IE installed in our business. I'm no SQL expert nor do I claim to know how to create any of these reports. What I've done so far is copy the code from another report that I got from here and added what I needed. Please see below;
select distinct
vc.[Name],
vc.[OS Name],
vc.[System Type],
vc.[IP Address],
vc.[User],
fd.[Name] as [File Name],
wf.[ProductVersion],
fd.[Path],
vc.[guid]
from
dbo.Inv_Installed_File_Details FD
JOIN vcomputer VC on VC.[Guid] = FD.[_ResourceGUID]
JOIN dbo.Inv_Windows_File wf ON wf.[_ResourceGuid] = FD.[FileResourceGuid]
where fd.[Name] like 'iexplore.exe'
and wf.[ProductVersion] like '%'
With the above in place; I've been able to do ok with my reporting. At this point though, I notice that I was getting alot of old data (I don't mind that....It's part of the toil, I guess). What I'm having trouble with, is adding the last inventory date. Adding this, will make the data easier to manage. We have another report which has the last inventory column and I tried to add the code from there, but it's not working.
Not sure if any can help, but I would greatly appreciate any help. Thanks in advance. :-)