2009
11.16


Here’s a quick script for Powershell that can be used to add a secondary SMTP address in Microsoft Exchange 2007.

$username=Read-Host "Enter username to add email address too."
$secondsmtp=Read-Host "Enter a secondary email address"

$usermbx = Get-Mailbox $username
$usermbx.emailAddresses+=$secondsmtp
Set-Mailbox $usermbx -emailAddresses $usermbx.emailAddresses



Check out our new sister site: isthisdiy - help us decide what's useful and what's GARBAGE!

No Comment.

Add Your Comment