Table of Contents
Making a Security Group using Distribution group members in Powershell
First lets get the list of users samaccountnames from Distribution list
$List=Get-ADGroupmember DistributionlistName
Now create a empty Security group from Active Directory Users and Computers
Now lets add each of above user into a security group which is created from ADUC(Active Directory Users and Computers).
ForEach ($User in $List){Add-ADGroupMember -Identity SecurityGroupName -Member $User.samaccountname}
We can also use add members to distribution group powershell by this method of Add-ADGroupmember
We can also use powershell to add members to distribution group powershell or a Security group.
We can also use powershell to create distribution group from csv or a Security group using simple method
Create a empty distribution group or Security group in ADUC(Active Directory Users and Computers).
#List with Sam account names
$List = Import-CSV .\Users.csv
#Loop through user in the CSV
ForEach ($User in $List){Add-ADGroupMember -Identity GroupName -Member $User.username}
Below powershell command to list out all the users in the Group
Get-ADGroupMember Groupname | Select name