peled Posted January 5, 2011 Report post Posted January 5, 2011 I want to build a collection that will inclode all Computer that sub net is 10.10.10.x & 10.10.11.x, that are NOT members in Group1 from AD. Thanks Peled Quote Share this post Link to post Share on other sites More sharing options...
0 Eswar Koneti Posted January 5, 2011 Report post Posted January 5, 2011 I want to build a collection that will inclode all Computer that sub net is 10.10.10.x & 10.10.11.x, that are NOT members in Group1 from AD. Thanks Peled You can try this collection: select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name, SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup, SMS_R_SYSTEM.Client from SMS_R_System inner join SMS_G_System_NETWORK_ADAPTER_CONFIGURATION on SMS_G_System_NETWORK_ADAPTER_CONFIGURATION.ResourceID = SMS_R_System.ResourceId inner join SMS_G_System_SYSTEM on SMS_G_System_SYSTEM.ResourceID = SMS_R_System.ResourceId where (SMS_G_System_NETWORK_ADAPTER_CONFIGURATION.IPAddress like "192.168.1.%" or SMS_G_System_NETWORK_ADAPTER_CONFIGURATION.IPAddress like "192.168.2.%") and SMS_G_System_SYSTEM.ResourceID not in (select SMS_R_SYSTEM.ResourceID from SMS_R_System where SMS_R_System.SystemGroupName = "eskonr\\Adobe_Acrobat") Replace the Bold Letters with you information Quote Share this post Link to post Share on other sites More sharing options...
0 hawks5999 Posted February 13, 2012 Report post Posted February 13, 2012 Similar to the request above, is it possible to create a collection based on a user belonging to a group but not logged into a computer on a subnet. So if UserA is on subnetX they are in the collection. But if UserA is on subnetY they aren't in the collection. Is this even practical? Quote Share this post Link to post Share on other sites More sharing options...
0 mr_sherief Posted July 2, 2012 Report post Posted July 2, 2012 I want to build a collection that will inclode all Computer that baseb in AD. Quote Share this post Link to post Share on other sites More sharing options...
I want to build a collection that will inclode all Computer that sub net is 10.10.10.x & 10.10.11.x, that are NOT members in Group1 from AD.
Thanks
Peled
Share this post
Link to post
Share on other sites