|
a simple version
Dont know why my report didn't import. It also am using 6.5 so this is the quick and dirty list, no frills. But I think between this and the other report you can build something that is to your liking as a working report.
copy this into a new report
--start sql
select t1.name as 'computer name', t0.name, t0.version, t0.publisher as 'manufacturer' from Inv_AeX_OS_Add_Remove_Programs t0
inner join vcomputer t1 on t0._resourceguid = t1.guid
--end sql
|