Video Screencast Help
Search Video Help Close Back
to help
New in the Rewards Catalog: Vouchers for "Symantec Technical Specialist" and "Symantec Certified Specialist" exams.

Add/Remove Programs for an individual user/computer?

Updated: 21 May 2010 | 2 comments
fattese's picture
0 0 Votes
Login to vote

What is the best way to get a list of the programs listed under the Add/Remove Programs for an  individual user/computer?

Comments

Tenacious Geo's picture
24
Sep
2009
0 Votes 0
Login to vote

You can use remote registry

You can use remote registry to look at the keys under:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

Or, are you trying to find this information in Deployment Solution or NS Resource Manager?

-Geo

Brandon's picture
24
Sep
2009
3 Votes +3
Login to vote

Make a parameter input box

Make a parameter input box and name it Asset (case matters). Then use this report:

SELECT     Item.[Name] AS 'Asset Tag', AeXInv_AeX_OS_Add_Remove_Programs.[Name] AS 'Application', AeXInv_AeX_OS_Add_Remove_Programs.[Version]     
FROM       AeXInv_AeX_OS_Add_Remove_Programs INNER JOIN                  
                      vComputerResource ON AeXInv_AeX_OS_Add_Remove_Programs.WrkstaId = vComputerResource.ResourceId INNER JOIN                  
                      Item ON vComputerResource.Guid = Item.Guid                  
Where Item.[Name] = '%Asset%' AND              
     AeXInv_AeX_OS_Add_Remove_Programs.[Name] NOT LIKE '%Windows%KB%' AND    
     AeXInv_AeX_OS_Add_Remove_Programs.[Name] NOT LIKE '%Windows%Update%'
Order by AeXInv_AeX_OS_Add_Remove_Programs.[Name]