Dynamic Distribution Groups in bulk using powershell
Here is a small script written by me for creating Dynamic Distribution Groups in bulk using powershell #import csv file (script.ps1 csv file) $data = import-csv $args[0] #create a vriable for holding condition $str = new-object System.Text.Stringbuilder foreach ($i in $data) { # reagd filter (office value from csv file) $dgp = $i.filter $str = {(office -eq…