Link to home
Start Free TrialLog in
Avatar of Rabih El Haj youssef
Rabih El Haj youssefFlag for Australia

asked on

create a distribution list with a decimal point in exchange 2010

HI Guys ,

I have requested to create a distribution list with a decimal point  in exchange 2010

Eg. Name.surname@tenix.com

is that possible to do that and how

Thanks
Rabih
Avatar of lindento
lindento

Hi,

this is easy to do as a decimal point is standard char for email addresses.

Depending on what you prefer just use the wizard or powershell.
e.g. powershell command from technet:

New-DistributionGroup -Name "Managers.Group" -OrganizationalUnit "contoso.com/Users" -SamAccountName "Managers" -Type "Security" -alias "Managers.Group"

Best Regards
Avatar of Rabih El Haj youssef

ASKER

Hi
thanks for you quik response ,

I already created the DL with no Dot does not allow me to add a Dot ,

Can i work in Exchange not PS

Thanks
Rabih
ASKER CERTIFIED SOLUTION
Avatar of lindento
lindento

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi

the above your instruction worked  now

I tried to do it in PS , see the below error i got .
I need the DL to Be a universal ...


A positional parameter cannot be found that accepts argument '-Type'.
    + CategoryInfo          : InvalidArgument: (:) [New-DistributionGroup], ParameterBindingException
    + FullyQualifiedErrorId : PositionalParameterNotFound,New-DistributionGroup
Hi,

Distributionlist are always universal.

the -type option only accepts Distribution or security

Best Regards