cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
derek_rose
Engaged Sweeper
I'm trying to gather keys for MS Office 2003 Basic or Pro and 2007 Basic or Pro. The 2007 keys work fine, but the 2003 keys don't seem to work.

I found this -

http://support.microsoft.com/kb/895456

But the 2003 keys don't seem to read correctly. Has anyone been able to do this? Also, can I get some master report that shows all the keys, rather than on a machine-by-machine basis?
2 REPLIES 2
derek_rose
Engaged Sweeper
That report worked, and apparently the keys were alright too I just didn't wait long enough. Thanks!
Hemoco
Lansweeper Alumni
The default key for office 2003 professional should work. (did you checked "enabled")?

An example report to list all office 2003 keys :

SELECT     TOP 100 PERCENT dbo.tblComputers.Computername, dbo.tblSerialnumber.Product, dbo.tblSerialnumber.ProductID, dbo.tblSerialnumber.ProductKey, 
dbo.tblSerialnumber.Lastchanged
FROM dbo.tblComputers INNER JOIN
dbo.tblSerialnumber ON dbo.tblComputers.Computername = dbo.tblSerialnumber.Computername
GROUP BY dbo.tblComputers.Computername, dbo.tblSerialnumber.Product, dbo.tblSerialnumber.ProductID, dbo.tblSerialnumber.ProductKey,
dbo.tblSerialnumber.Lastchanged
HAVING (dbo.tblSerialnumber.Product = 'Microsoft Office Professional Edition 2003')