I need a solution
How do I create a report listing all machines with Office 2007 installed?
Somthing like:
List All Computers with Named Like Microsoft Office Shared MUI 2007"
This SQL report shows me that I have 367 computers with office 2007 installed, but I need a list of thoes 367 machiens .
Select arp.[DisplayName], arp.[DisplayVersion], Count(*)
from Inv_AddRemoveProgram arp
Where arp.[DisplayName] like '%Microsoft%Office%2007%'
Group by arp.[DisplayName], arp.[DisplayVersion]
Jeremy