gpt4 book ai didi

azure - 导出所有 Azure 组和所有者

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

如果可能的话,我正在尝试导出组织内的每个组及其所有者如果没有分配所有者,也不会返回任何所有者或保持空白

我是 azure powershelgl 的新手,所以我从零开始

我浏览了许多其他线程,但似乎没有找到任何仅返回所有者所有者组成员的线程。我不一定需要这些群组的成员身份,只需群组名称、所有者并将其导出到 CSV

感谢您的帮助

我还没有真正尝试过任何东西,因为我对 azure powershell 很陌生,而且也无法在网上找到任何东西

最佳答案

我尝试在我的环境中重现相同的结果,并成功获得如下结果:

要导入 Azure AD 组及其所有者的列表,请使用以下 Powershell 脚本:

connect-AzureAD
$groups = Get-AzureADGroup -All $true
$result = foreach ($group in $groups) {
Get-AzureADGroupOwner -ObjectId $group.ObjectId -All $true | ForEach-Object {
[PsCustomObject]@{
'Group' = $group.DisplayName
'Owner' = $_.UserPrincipalName
}
}
}
$result | Format-Table -AutoSize
$result | Export-Csv -Path 'C:\users\testkhann.csv' -NoTypeInformation

enter image description here

Csv 文件导入成功,如下所示:

enter image description here

关于azure - 导出所有 Azure 组和所有者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74874276/

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