# M365 - One Liners

# Distribution Lists

# PowerShell to Add a User to a Distribution Group

```powershell
#Connect to Exchange Online
Connect-ExchangeOnline -ShowBanner:$False

#Add User to the Distribution Group
Add-DistributionGroupMember –Identity "Sales@Crescent.com" -Member "Steve@Crescent.com"
```

# Email Management