Last updated on Jun 29, 2017
Add and Remove Distribution Group Members Powershell
Lets look at some quick Powershell one liners to Remove and Add Distribution Group Members.
Add DistributionGroup Member:
1 |
Add-DistributionGroupMember -Identity LazyAdmins -Member ShaunH |
Remove DistributionGroup Member:
1 |
Remove-DistributionGroupMember -Identity LazyUsers -Member John.Long |
Quick and Simple One liners.
#ThatLazyAdmin
Be First to Comment