sprite Posted January 6, 2015 Report post Posted January 6, 2015 I have a problem where my computers are being duplicated under "Devices" I am manually adding a few test computers to SCCM 2012 by using the "import computer information" wizard, once the computers are listed I right click to "Install Client". Afer several minutes the device name is added again to "devices" showing Client "YES' and another entry for the same computer name listed as CLIENT "NO" Any thoughts as to why this could be happening? Can I just remove the device where the client is not installed? Thank you! Quote Share this post Link to post Share on other sites More sharing options...
Ath3na Posted January 6, 2015 Report post Posted January 6, 2015 Have a look at the properties of each client to see what type of discovery is discovering them and take it from there. This WQL query will show you all duplicate devices, yes you can remove the device select R.ResourceID,R.ResourceType,R.Name,R.SMSUniqueIdentifier,R.ResourceDomainORWorkgroup,R.Client from SMS_R_System as r full join SMS_R_System as s1 on s1.ResourceId = r.ResourceId full join SMS_R_System as s2 on s2.Name = s1.Name where s1.Name = s2.Name and s1.ResourceId != s2.ResourceId Quote Share this post Link to post Share on other sites More sharing options...
sprite Posted January 6, 2015 Report post Posted January 6, 2015 I looked at the properties of the duplicates and didn't see anything about a discovery method. Right now the only discovery method enable right now is just the heart beat. any other thoughts? Quote Share this post Link to post Share on other sites More sharing options...