gpt4 book ai didi

azure - 如何使用自动化在 Azure AD 中创建安全组?

转载 作者:行者123 更新时间:2023-12-03 07:00:11 25 4
gpt4 key购买 nike

我必须为不同的团队创建很多访问包。创建组或访问包非常耗时。

有没有办法在AAD中自动创建组或访问包?

我基本上的意思是,我将创建角色或组(在 excel 或 csv 文件中使用正确的命名约定),然后将其(excel/csv 文件)交给自动化,自动化作业将创建组/访问包。谢谢。

最佳答案

要在 Azure AD 中自动创建安全组,您可以使用“PowerShell”。

  1. 请检查您是否安装了AzureAD模块。如果没有,请使用以下命令安装它:
Install-Module AzureAD
  • 使用以下格式创建一个 .csv 文件,其中包括组名称及其说明:
  • enter image description here

  • 使用以下PowerShell 脚本自动创建 AAD 组:
  • $Groups = Import-Csv -Path C:\AzureAD_Groups.csv

    foreach($Group in $Groups)
    {
    New-AzureADMSGroup -DisplayName $Group.DisplayName -Description $Group.Description -MailEnabled $False -MailNickName "group" -SecurityEnabled $True
    }

    输出:

    enter image description here

    安全组会在 Azure Active Directory 中自动创建,如下所示:

    enter image description here

    引用:

    Creating Groups in Azure AD using PowerShell

    关于azure - 如何使用自动化在 Azure AD 中创建安全组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72519603/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com