→ 🚀What's New? Join Us for the Fall Product Launch! Register Now !
‎03-01-2012 06:47 PM
Solved! Go to Solution.
‎03-02-2012 12:48 PM
Select Distinct Top 1000000 tblComputers.Computername,
tblComputers.ComputerUnique, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername Inner Join
(Select Top 1000000 Count(tblRegistry.RegistryID) As Total, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where
tblRegistry.Regkey =
'HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC\SYLINK\SyLink' And
tblRegistry.Valuename = 'HardwareID'
Group By tblRegistry.Value
Having Count(tblRegistry.RegistryID) > 1) Duplicates On tblRegistry.Value =
Duplicates.Value
Order By tblRegistry.Value
‎03-02-2012 12:48 PM
Select Distinct Top 1000000 tblComputers.Computername,
tblComputers.ComputerUnique, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername Inner Join
(Select Top 1000000 Count(tblRegistry.RegistryID) As Total, tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where
tblRegistry.Regkey =
'HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC\SYLINK\SyLink' And
tblRegistry.Valuename = 'HardwareID'
Group By tblRegistry.Value
Having Count(tblRegistry.RegistryID) > 1) Duplicates On tblRegistry.Value =
Duplicates.Value
Order By tblRegistry.Value
‎03-01-2012 11:33 PM
‎03-01-2012 08:05 PM
Select Top 1000000 tblRegistry.Regkey, tblRegistry.Valuename, tblRegistry.Value, Count(tblRegistry.Computername) As Total From tblRegistry Group By tblRegistry.Regkey, tblRegistry.Valuename, tblRegistry.Value Having tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\SOFTWARE\Symantec\Symantec Endpoint Protection\SMC\SYLINK\SyLink' And tblRegistry.Valuename = 'HardwareID' And Count(tblRegistry.Computername) > 1 Order By Count(tblRegistry.Computername) Desc
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now