SCCM Duplicate System Entries in the Console
If your SCCM console has duplicated System entries in the Console, and you want to find it right? Below is the Query for this issue.
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
0 comments:
Post a Comment