Hi-
I am having an issue with Symantec in that some of our images were not sysprepped before deployment. The unique SEP HWID is duplicated causing SEP to process several computers as one computer. I created a registry scan for the hkey_local_machine hive for SOFTWARE\Symantec\Symantec Endpoint Protection\SMC\SYLINK\SyLink for the value HardwareID.
I created a report that lists all of the keys, but I am having trouble removing the NON-duplicated HWID field from the report.
I have the report with this select
"
Select Top 1000000 tblComputers.ComputerUnique, tblComputers.Domain, tblComputers.Username, tblRegistry.Valuename, tblRegistry.Value From tblComputers Inner Join tblRegistry On tblComputers.Computername = tblRegistry.Computername Where tblRegistry.Valuename = 'HardwareID' Order By tblRegistry.Value
"
When I try to add "And Count(tblRegistry.Value) > 1" to the where cause I get an error. I know this is pretty simple, but I'm just not seeing it.
Thanks for any help in advance,
JW