‎11-12-2010 09:20 PM
SELECT TOP 100 PERCENT
tblComputers.Computername,
tblComputers.Username,
tblRegistry.Value,
tblSoftware.softwareName,
tblRegistry.Regkey
FROM
tblComputers
INNER JOIN tblRegistry ON (tblComputers.Computername = tblRegistry.Computername)
INNER JOIN tblSoftware ON (tblRegistry.Computername = tblSoftware.ComputerName)
WHERE
tblSoftware.softwareName = 'Catalyst WMS Client' AND
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310' AND
tblRegistry.Value IS NOT NULL
Solved! Go to Solution.
‎11-15-2010 10:40 AM
Select Top 1000000 tblComputers.Computername, tblComputers.Username,
tblRegistry.Value, tblSoftware.softwareName, tblRegistry.Regkey
From tblComputers Inner Join
tblRegistry On (tblComputers.Computername = tblRegistry.Computername)
Inner Join
tblSoftware On tblSoftware.ComputerName = tblComputers.Computername
Where tblRegistry.Value Is Not Null And tblSoftware.softwareName =
'Catalyst WMS Client' And
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310'
‎11-15-2010 10:40 AM
Select Top 1000000 tblComputers.Computername, tblComputers.Username,
tblRegistry.Value, tblSoftware.softwareName, tblRegistry.Regkey
From tblComputers Inner Join
tblRegistry On (tblComputers.Computername = tblRegistry.Computername)
Inner Join
tblSoftware On tblSoftware.ComputerName = tblComputers.Computername
Where tblRegistry.Value Is Not Null And tblSoftware.softwareName =
'Catalyst WMS Client' And
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\WMS\WMS 011310'
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now