Forum Discussion
Removing users from an AD group
- Oct 20, 2023
Yes and no.
In principle, it could be made to work that way but there's two points I'd make:
- To get that specific type conversion error from your original post, there's something wrong with your input file, since the entire file is considered to be one single string;
- Even if the input file were correctly interpreted as a string array, using a "for" loop is very inefficient and won't scale well.
Strictly-speaking, the "for" loop is entirely unnecessary if the input file contains any of the four string references (the most likely string formats to be chosen being either sAMAccountName or distinguishedName).
If the issue with the input file can be fixed, then the simplest and most efficient way to remove the members contained within the input file would be:
Example
Remove-ADGroupMember -Identity "Office365_LicenceE1_Base" -Members (Get-Content -Path "C:\Users\damien.hartmann\Documents\Comptes.txt") -Confirm:$false;Imagine your input file had 1,000 users in it at one user per line. Using a "for" loop approach would result in 1,000 separate calls to Active Directory for the setting of the group's "member" attribute.
Using the example above, a single call is made to Active Directory when setting the group's "member" attribute. That's a considerable difference and why there's a tremendous impact on Active Directory when using a loop.
Cheers,
Lain
There's multiple ways of tackling this, with some being significantly more efficient than others.
But first, what does your input file (Comptes.txt) contain?
If it contains RFC822 (or SMTP-style, if you prefer, as used for mail and userPrincipalName) addresses, this will not work. As per the documentation, only a specific set of string types can be used and SMTP-style addresses:
Accepted attribute formats for strings are:
- distinguishedName
- objectGUID
- objectSid
- sAMAccountName
You could take SMTP-style addresses from your Comptes.txt file, look up the users to obtain ADPrincipal objects, and then pass those to Remove-ADGroupMember, but this is a wildly inefficient path to pursue if you have more than, say, a few dozen users.
Cheers,
Lain
- DamienFR68Oct 19, 2023Copper ContributorThank you for the feedback Lain.
In my comptes.txt file I have users in firstname.name format, each on a separate line.
I will indeed have hundreds of users to manipulate, and cannot search the individual DistinguishedName for each of them.- LainRobertsonOct 19, 2023Silver Contributor
Does firstName.surname match the sAMAccountName naming standard?
If it doesn't match sAMAccountName then it's not going to work, as it's not one of the four supported string standards listed above.
Cheers,
Lain
- DamienFR68Oct 20, 2023Copper Contributor
To my knowledge it does, I have also tried with email address and obtained the same result. The error message focus on the first letter is very strange.
You confirm that the rest of the script is valid?