简体   繁体   English

在 Azure 和 MailNickname 中创建安全组

[英]Create a Security group in Azure and MailNickname

I'm creating a New Security group in azure powershell.我正在 azure powershell 中创建一个新的安全组。 The wizard asks me for a DisplayName and...for a MailNickname and I can't understand why.向导要求我提供 DisplayName 和...提供 MailNickname,我不明白为什么。 电源外壳

Thanks谢谢

Thank you Theo .谢谢西奥 Posting your suggestion as an answer to help other community members.发布您的建议作为帮助其他社区成员的答案。

DisplayName and MailNickname both are required parameters. DisplayNameMailNickname都是必需的参数。

New-AzADGroup新阿兹广告集团

New-AzADGroup -DisplayName <String> -MailNickname <String> [-Description <String>]
 [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]

DisplayName显示名称

The display name for the group.组的显示名称。

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

MailNickname邮件昵称

The mail nickname for the group.群组的邮件昵称。 Cannot contain the @ sign.不能包含@ 符号。

Type: System.String
Parameter Sets: (All)
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

You can refer to New-AzADGroup可以参考New-AzADGroup

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM