Could be... :-) Regards,
Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com -----Original Message----- From: Campbell, Rob [mailto:[email protected]] Sent: Monday, January 31, 2011 5:10 PM To: MS-Exchange Admin Issues Subject: RE: adding proxyAddresses to Exchange 2007 users It sounds like there a comma-separated list of proxy addresses in one cell that's going to need to be turned into an array of addresses first. -----Original Message----- From: Michael B. Smith [mailto:[email protected]] Sent: Monday, January 31, 2011 4:05 PM To: MS-Exchange Admin Issues Subject: RE: adding proxyAddresses to Exchange 2007 users You reverse the technique shown here: http://theessentialexchange.com/blogs/michael/archive/2009/07/07/removing-old-emailaddresses-proxyaddresses-in-exchange-2007.aspx You want $b += $e. Alternately, $b.Add( $e ). Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com -----Original Message----- From: Russ Patterson [mailto:[email protected]] Sent: Monday, January 31, 2011 5:02 PM To: MS-Exchange Admin Issues Subject: adding proxyAddresses to Exchange 2007 users Exchange 2007 SP3. I have a csv of over 500 rows, with displayname and proxyAddresses in it as the columns. The proxyAddresses column has anywhere from 3 to 7 smtp: addresses in it, comma delimited. Is there anyway to add the email addresses to our users? They are all in one OU. I've been trying hundreds of variations of this: Import-CSV "C:\data\test.csv" | foreach-object -process { Get-mailbox -identity $_.displayname | update-list -property emailaddresses -Add $_.proxyAddresses | Set-Mailbox} Not having any luck at all. All help greatly appreciated! --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist ************************************************************************************************** Note: The information contained in this message may be privileged and confidential and protected from disclosure. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. ************************************************************************************************** --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist
