I cant seem to figure out how to create a report that displays what MS software is installed with the product ID and Product Key (as seen in add remove programs), What OS with Product and ID Keys are on both the servers and workstations.
If this needs to be broken into two reports that would be fine, as long as I can track what is installed on what machine.
Thank you in advance.
Matt
Here is what I have so far, but need the Product Key and Product ID.
Select Top 1000000 tblComputers.Computer, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion From tblComputers Inner Join tblOperatingsystem On tblComputers.Computername = tblOperatingsystem.Computername Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Where tblSoftware.SoftwarePublisher Like '%Microsoft%'