PS HarriJaakkonen :~/Blog/Posts> cat ./how-to-find-computers-with-name.html How to find computers with a name starting with something and add them to a security group. 28/06/2016 · 1 min read · Post #15 Active Directory Powershell Dou, that was a long sentence :) But here is how. $computers = get-adcomputer -ldapfilter "(name=name*)" $computers | foreach {Add-ADGroupMember -id name_of_the_group -MEMBERS $computers.samaccountname} Happy powershelling! Share this: