Shows how to create multiple Distribution Group from a CSV file.
Get-ADGroup -Filter 'GroupCategory -eq "Security"' -Properties * | ft name
Import-csv .\gp.csv| foreach {New-ADGroup -GroupCategory Distribution -Name $_.GroupName -Path $_.O
U -GroupScope Universal}