I have an email address lets say project@mailserver.org and I need 1000 aliases added to the email. For example Project1@mailserver.org, Project2@mailserver.org etc etc. and I have a .csv file with 990 columns with just project1, project2.
Is there a way to run a command in powershell exchange to import all the aliases I need in a few commands? Can someone point me in the right direction if I am in the wrong forum also? Thanks
No sure if this is correct or not:
> $mbx = Get-Mailbox Project
> Import-CSV "C:\SomePath\wherever.csv" | foreach { $mbx.EmailAddresses += $._SmtpAddress }
> Set-Mailbox project -EmailAddresses $mbx.EmailAddresses