Add/Remove Programs for an individual user/computer?
What is the best way to get a list of the programs listed under the Add/Remove Programs for an individual user/computer?
What is the best way to get a list of the programs listed under the Add/Remove Programs for an individual user/computer?
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
Don't forget to mark the solution to your forum post if it has been answered!
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]
Would you like to reply?
Login or Register to post your comment.