PlannerModule icon indicating copy to clipboard operation
PlannerModule copied to clipboard

Add parameter to avoid random number in groups email address

Open pretzer opened this issue 4 years ago • 0 comments

The function New-AADUnifiedGroup contains this code to add a random number to the mail address of the group:

$randomNum = (Get-Random -Maximum 1000).tostring() $mailNickname = $GroupName.Replace(" ", "") + $randomNum

This should be optional by introducing a parameter to turn the behavior off. Thank you for consideration!

pretzer avatar Oct 28 '21 07:10 pretzer