// CreateDistributionList()
 // desc: Method calls PowershellComponent command CreateDistributionList and creates a new distribution group under specified OU
 // params: string group_name - Name of Distribution Group to create
 //         string ou         - Name of Organizational Unit to create Organizational Group in
 // method: public
 // return: bool
 public static string CreateDistributionGroup(string group_name, string ou, string auth_enabled)
 {
     string Results;
     PowerShellComponent.ManagementCommands objManage = new PowerShellComponent.ManagementCommands();
     Results = objManage.CreateDistributionGroup(group_name, ou, auth_enabled);
     objManage = null;
     return Results;
 }