> For the complete documentation index, see [llms.txt](https://www.heresecurity.wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.heresecurity.wiki/yun-an-quan/azure/dong-tai-zu-cheng-yuan-zi-ge.md).

# 动态组成员资格

```
获取允许动态成员资格的组：Get-AzureADMSGroup | ?{$_.GroupTypes -eq 'DynamicMembership'}

规则示例：(user.otherMails -any (_ -contains "vendor")) -and (user.userType -eq "guest")
规则描述：任何其辅助电子邮件包含字符串“供应商”的访客用户都将被添加到组中

打开用户的个人资料，点击管理
单击重新发送邀请并获取邀请 URL
设置辅助邮箱
PS> Set-AzureADUser -ObjectId <OBJECT-ID> -OtherMails <Username>@<TENANT NAME>.onmicrosoft.com -Verbose
```
