Registered member login:
Register Now
Altirigos » Altiris Administrators » Reports » Software Installed Inventory

» Current Poll
Do you leave the Aclient enabled?
YES - 82.31%
107 Votes
NO - 17.69%
23 Votes
Total Votes: 130
You may not vote on this poll.
» Stats
Members: 9,499
Threads: 11,754
Posts: 55,313
Top Poster: Nick (4,981)
Welcome our newest member, anthony.hardy
» Online Users: 42
0 members and 42 guests
No Members online
Most users online at once 294, 06-30-2007 at 12:24 PM.
» March 2010
S M T W T F S
28 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31 123
Reply
Old 06-20-2005, 04:19 PM   #1 (permalink)
 
Status: Junior Altiris Admin
Join Date: 06-20-2005
Location: TX
Age: 45
Posts: 2


Software Inventory Report.

I have created a simple report to generate all software installed. (I selected add remove progerams ) table. Now I'm getting over 6000 Rows returned , arround 100 for each machine. The report lists every Executable as an application installed. Any way to narrow the search to just what the Add remove program displays,.


Thanks

Last edited by Newbie; 06-20-2005 at 04:57 PM.. Reason: Change title
Newbie is offline   Reply With Quote
Old 06-21-2005, 11:59 AM   #2 (permalink)
Ray
 
Ray's Avatar
 
Status: Altiris Engineer (Patch Prodigy)
Join Date: 02-17-2005
Location: Houston, Texas, USA
Age: 36
Posts: 333


There is canned reports you can run. view the gif file for example.
Attached Thumbnails
software-installed-inventory-admin.gif  
__________________
Ramon Delgado
Ramondelgado@gmail.com
www.altirigos.com
Ray is offline   Reply With Quote
Old 06-21-2005, 04:14 PM   #3 (permalink)
 
Status: Junior Altiris Admin
Join Date: 06-20-2005
Location: TX
Age: 45
Posts: 2


Thanks Ray , for some reason My repot Is generating a list of all applications Installed Like 699 per Machine (looks like it scanned the Drive for all executables and reported it as installed applicaton. I'll go over the configuration agatin to see if there is something I missed. thanks
Newbie is offline   Reply With Quote
Old 07-01-2005, 11:52 AM   #4 (permalink)
 
Status: Altiris Engineer (Super Mod)
Join Date: 03-23-2005
Location: Belgium
Posts: 251


This query should give you all Add/Remove Programs entries for each computer :

select vc.Name, arp.Name
from vcomputer vc
join Inv_AeX_OS_Add_remove_programs arp on arp._ResourceGuid=vc.Guid
order by vc.Name, arp.Name
__________________
Tom
Tom.Reyntjens is offline   Reply With Quote
Old 07-05-2005, 02:36 PM   #5 (permalink)
Ray
 
Ray's Avatar
 
Status: Altiris Engineer (Patch Prodigy)
Join Date: 02-17-2005
Location: Houston, Texas, USA
Age: 36
Posts: 333


Looks good but I wonder if there is a way to summary this. like have the list of pc's then have the drill down to display this for that device.
__________________
Ramon Delgado
Ramondelgado@gmail.com
www.altirigos.com
Ray is offline   Reply With Quote
Old 07-06-2005, 12:55 PM   #6 (permalink)
 
Status: Altiris Engineer (Super Mod)
Join Date: 03-23-2005
Location: Belgium
Posts: 251


Looking for something like this ?
Attached Files
File Type: xml Add Remove Programs by Computer.xml (3.1 KB, 318 views)
File Type: xml Add Remove Programs by Program.xml (3.6 KB, 314 views)
__________________
Tom
Tom.Reyntjens is offline   Reply With Quote
Old 07-08-2005, 12:30 PM   #7 (permalink)
Ray
 
Ray's Avatar
 
Status: Altiris Engineer (Patch Prodigy)
Join Date: 02-17-2005
Location: Houston, Texas, USA
Age: 36
Posts: 333


Looks great Tom once again I must Bow down.
__________________
Ramon Delgado
Ramondelgado@gmail.com
www.altirigos.com
Ray is offline   Reply With Quote
Old 08-10-2006, 06:59 PM   #8 (permalink)
 
Status: Junior Altiris Admin
Join Date: 08-09-2006
Location: L.A.
Posts: 25


Against Collection

I want to modify the query you guys posted to run against collections, but am unable to get the JOIN statement to work


select vc.Name, arp.Name
from vcomputer vc
join Inv_AeX_OS_Add_remove_programs arp on arp._ResourceGuid=vc.Guid
order by vc.Name, arp.Name

What do I need to add?
lenmessing is offline   Reply With Quote
Old 08-10-2006, 07:56 PM   #9 (permalink)
 
Nick's Avatar
 
Status: Altiris Architect (Site Founder)
Join Date: 01-01-2005
Location: RDU, North Carolina, USA
Posts: 4,981


See if this doesn't help you.

Code:
SELECT vc.[Name], arp.[Name]
FROM vcomputer vc, Inv_AeX_OS_Add_remove_programs arp
WHERE arp._ResourceGuid=vc.Guid
ORDER BY vc.[Name], arp.[Name]
You may also want to look HERE for some tips on writing SQL queries.
__________________
Scire potentia est (knowledge is power)
Nick is offline   Reply With Quote
Old 08-10-2006, 11:57 PM   #10 (permalink)
 
Status: Junior Altiris Admin
Join Date: 01-16-2006
Location: Australia
Posts: 28


Hardware Inventory Report

Hi,

Thanks for the Software Inventory Report. It works like a charm. I am wondering if there is a similar report for hardware inventory which shows following in one report:

Hardware Make
Hardware Model
Hardware Type
OS Running

Also, I want to run this report on different collections, separately. This report should only show the live computers.

Any help will be much appreciated.

Regards,

Manoj (CoatesHire)
coateshire is offline   Reply With Quote
Old 09-21-2006, 02:48 PM   #11 (permalink)
 
Status: Junior Altiris Admin
Join Date: 08-09-2006
Location: L.A.
Posts: 25


Quote:
Originally Posted by lenmessing
I want to modify the query you guys posted to run against collections, but am unable to get the JOIN statement to work


select vc.Name, arp.Name
from vcomputer vc
join Inv_AeX_OS_Add_remove_programs arp on arp._ResourceGuid=vc.Guid
order by vc.Name, arp.Name

What do I need to add?

Thanks for the reply to this but I'm still not able to filter this through collections. I changed the statement to what you suggested but it still doesnt work.
Please Help!
Thanks
lenmessing is offline   Reply With Quote
Old 01-18-2008, 02:46 PM   #12 (permalink)
 
Status: Altiris Admin
Join Date: 01-14-2008
Location: Montreal, Canada
Posts: 55


Hi

Do you know how I could modify these reports so they would be:

"Add Remove Programs by User" ?

The reports are great and I just want to be able to search against users instead of computers but my SQL knowledge is very limited (totaly nul to be honest...)


Thanks
frank6666 is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -4. The time now is 04:40 PM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
vB.Sponsors
Altirigos