无法检索 createdDateTime 以及 Azure AD 用户的邮件、显示名称
Unable to retrieve createdDateTime along with mail,displayName of Azure AD Users
我正在尝试检索 Azure AD 用户的 createdDateTime 及其姓名和电子邮件地址。
我发现以下命令:
- 连接到 Azure AD:
Connect-AzureAD
- 检索 AzureAD 用户列表:
Get-AzureADUser
- 要检索特定属性,我尝试使用以下命令:
Get-AzureADUser | Select-Object DisplayName, Mail, createdDateTime
正在成功返回用户的姓名和电子邮件。
但是 createdDateTime 字段对于所有用户始终为空。不知道问题出在哪里
检索所有这些后,我想将数据导出到一个 CSV 文件,其中包含用户的显示名称、邮件和他们的 createdDateTime。
谁能帮我解决脚本或任何建议?
请注意 createdDateTime
是一个 扩展属性 。所以不能正常显示。
为了显示 createdDateTime
的 Azure AD 用户及其 name 和 电子邮件地址 ,使用以下脚本:
$Info = @()
$AAD_users = Get-AzureADUser -All:$true
foreach ($AAD_User in $AAD_users) {
$objInfo = [PSCustomObject]@{
Name = $AAD_User.DisplayName
Email = $AAD_User.mail
CreationDateTime = (Get-AzureADUserExtension -ObjectId $AAD_User.ObjectId).Get_Item("createdDateTime")
}
$Info += $objInfo
}
$Info
要将所有这些信息导出到 CSV 文件,请使用以下 cmdlet:
$Info | Export-csv -Path c:\Output.csv -NoTypeInformation -Force -Append
要了解更多详情,请参阅下面参考资料:
powershell - Gathering a list of both Standard Attr. and Extended attr. for Azure - Stack Overflow
我正在尝试检索 Azure AD 用户的 createdDateTime 及其姓名和电子邮件地址。
我发现以下命令:
- 连接到 Azure AD:
Connect-AzureAD
- 检索 AzureAD 用户列表:
Get-AzureADUser
- 要检索特定属性,我尝试使用以下命令:
Get-AzureADUser | Select-Object DisplayName, Mail, createdDateTime
正在成功返回用户的姓名和电子邮件。 但是 createdDateTime 字段对于所有用户始终为空。不知道问题出在哪里
检索所有这些后,我想将数据导出到一个 CSV 文件,其中包含用户的显示名称、邮件和他们的 createdDateTime。
谁能帮我解决脚本或任何建议?
请注意 createdDateTime
是一个 扩展属性 。所以不能正常显示。
为了显示 createdDateTime
的 Azure AD 用户及其 name 和 电子邮件地址 ,使用以下脚本:
$Info = @()
$AAD_users = Get-AzureADUser -All:$true
foreach ($AAD_User in $AAD_users) {
$objInfo = [PSCustomObject]@{
Name = $AAD_User.DisplayName
Email = $AAD_User.mail
CreationDateTime = (Get-AzureADUserExtension -ObjectId $AAD_User.ObjectId).Get_Item("createdDateTime")
}
$Info += $objInfo
}
$Info
要将所有这些信息导出到 CSV 文件,请使用以下 cmdlet:
$Info | Export-csv -Path c:\Output.csv -NoTypeInformation -Force -Append
要了解更多详情,请参阅下面参考资料:
powershell - Gathering a list of both Standard Attr. and Extended attr. for Azure - Stack Overflow