Generate Alias Name from List of Email ID

Hi,

Need a Powershell Command to list Alias name of  Users from a list of 3000 Email IDs.

Regards,

Pradeep


July 21st, 2015 2:38am

Might help if you give an example of the format you are planning to use. Assuming you have a CSV file with an "ID" field, you can try something like this:

$list = Import-Csv .\test.csv
$list | % { Get-Recipient -Identity $_.ID | select Alias,PrimarySmtpAddress }

Free Windows Admin Tool Kit Click here and download it now
July 21st, 2015 3:41am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics