Hi there, I'm still trying to get used to building a custom report in the 7.5 world. Hoping someone with more expertise than I can assist me with this.
I need to generate a report for a multiple exe's with the following column headers.
- computer Name
- Manufacturer
- Model number
- Filename
- File Desciprtion
- File Version
- File Size
- Modified Date
- FilePath
I started with this query but can't seem to get the description and version in there properly, tried using AddRemove & dbo.vWindowsFile but just can't get it working. Also, the results from this report don't appear to be 100% accurate when compared to the Audit Search report, not sure if its related to the wildcard.
SELECT distinct
vc.[Name] 'Computer Name',
cs.[Manufacturer],
cs.[Model] 'Computer Model',
ifd.[Name] 'File Name',
ifd.[Path] 'File Installed Path',
ifd.[ModifiedTime] 'Last Modified Date'
FROM vComputer vc
JOIN vHWComputerSystem as cs ON vc.[Guid]=cs._ResourceGuid
JOIN Inv_Installed_File_Details as ifd ON vc.[Guid]=ifd.[_ResourceGuid]
where
ifd.[name] IN ('WinDVD.exe',
'RoxioCentralFX.exe',
'RoxioBurn.exe',
'VideoWave%.exe',
'Creator%.exe',
'MediaCapture%.exe',
'PhotoSuite%.exe',
'MyDVD%.exe',
'VideoConvert%.exe',
'MediaManager%.exe',
'SoundEditor%.exe',
'CinePlayer.exe'
)
Please Help!!!!