Table of Contents
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.
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
How to install of FireFox browser using PowerShell Sometimes you would like to install Firefox…
Quick way to install chrome on windows with Powershell? Launch the Powershell and run below…
How to Fix PowerShell Script Not Digitally Signed Error? When a script with a .ps1…
Powershell Cheat Sheet for beginners PowerShell has become something of an ace in the hole…
Today we discuss one of a few questions a lot of sysadmins and IT Admins…
Backing Up an SQL Database with PowerShell Before making any changes in the production environment,…
This website uses cookies.