在 Azure 的 GUI 中,这样做真的很容易,您只需创建一个新的 office 365 组并设置动态规则,但通过 powershell 似乎很难做到,我能得到的最接近的是使用以下 Powershell 行。组类型部分似乎出错了。我似乎无法让它创建一个具有两种类型的组,我的猜测是没有正确格式化它。我正在使用版本 2.0.2.85 的 AzureADPreview 模块,因为普通的 AzureAD 模块对此根本不起作用。
New-AzureADMSGroup -DisplayName "name" -Description "description" -MailEnabled $True -MailNickName "MailName" -SecurityEnabled $True -GroupTypes 'Unified, DynamicMembership' -MembershipRule '(user.userPrincipalName -contains "somafeasokdfalksjfjlkads")' -MembershipRuleProcessingState $true
给我错误
Code: Request_BadRequest
Message: Invalid value specified for property 'groupTypes' of resource 'Group'.
https://docs.microsoft.com/en-us/powershell/module/azuread/new-azureadmsgroup?view=azureadps-2.0
要点是我正在尝试找到一种 powershell 方法来获得像第二张照片一样的 Azure 组。即既动态又统一。