Active Directory/Exchange 列出用户和手机号码

Active Directory/Exchange 列出用户和手机号码

如何使用 Active Directory Powershell 或 Exchange Management Shell 列出所有用户及其手机号码?

答案1

如果您安装了 RSAT 的 Active Directory PowerShell 模块,则可以使用Get-ADUser命令检索所有用户及其价值mobile属性,如下所示:

Get-ADUser -Filter * -Properties mobile

Get-ADUser 默认检索许多属性,如果您不需要这些属性,请使用Select-Object挑选出您需要的属性:

Get-ADUser -Filter * -Properties mobile | Select-Object Name,Mobile

相关内容