by gingalls at 2013-03-28 05:31:30
hello,by coderaven at 2013-03-28 07:36:15
I have a text file that contains the display name of users and I need a script to retrieve both the primary SMTP address and SIP addresses for those users
listed in the text file.
Thank you
Gordon
When you pull the data from AD using say the Get-ADUser cmdlet, you just want attributes mail, proxyaddresses and I usually pull userprincipalname.Get-ADUser -Identity … -Properties mail, proxyaddresses
The mail attribute should be their primary SMTP, ProxyAddresses will contain SIP alias SMTP addresses.