RE: exchange 2007 user information

2010-12-07 Thread Michael B. Smith

$saveFEL = $FormatEnumerationLimit
$FormatEnumerationLimit = 
Get-Mailbox -resultsize unlimited | select Name, Alias, EmailAddresses
$FormatEnumerationLimit = $saveFEL

Regards,

Michael B. Smith
Consultant and Exchange MVP
http://TheEssentialExchange.com

-Original Message-
From: Robert Smith [mailto:exch...@gmail.com] 
Sent: Tuesday, December 07, 2010 1:30 PM
To: MS-Exchange Admin Issues
Subject: exchange 2007 user information

Hello,

Is there a cmdlet that will let me gather a list of all users in an exchange 
2007 domain along with their SMTP addresses (including secondary addresses) 
only?


Thanks,
Bob

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



RE: exchange 2007 user information

2010-12-07 Thread Campbell, Rob
get-mailbox -resultsize unlimited | select 
name,@{label=emailaddresses;expression={[string]($_.emailaddresses |% 
{$_.addressstring})}}

-Original Message-
From: Robert Smith [mailto:exch...@gmail.com] 
Sent: Tuesday, December 07, 2010 12:30 PM
To: MS-Exchange Admin Issues
Subject: exchange 2007 user information

Hello,

Is there a cmdlet that will let me gather a list of all users in an
exchange 2007 domain along with their SMTP addresses (including
secondary addresses) only?


Thanks,
Bob

---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
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 listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist



Re: exchange 2007 user information

2010-12-07 Thread Robert Smith
Thank you all!

On Tue, Dec 7, 2010 at 11:14 AM, Campbell, Rob
rob_campb...@centraltechnology.net wrote:
 get-mailbox -resultsize unlimited | select 
 name,@{label=emailaddresses;expression={[string]($_.emailaddresses |% 
 {$_.addressstring})}}

 -Original Message-
 From: Robert Smith [mailto:exch...@gmail.com]
 Sent: Tuesday, December 07, 2010 12:30 PM
 To: MS-Exchange Admin Issues
 Subject: exchange 2007 user information

 Hello,

 Is there a cmdlet that will let me gather a list of all users in an
 exchange 2007 domain along with their SMTP addresses (including
 secondary addresses) only?


 Thanks,
 Bob

 ---
 To manage subscriptions click here: 
 http://lyris.sunbelt-software.com/read/my_forums/
 or send an email to listmana...@lyris.sunbeltsoftware.com
 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 listmana...@lyris.sunbeltsoftware.com
 with the body: unsubscribe exchangelist



---
To manage subscriptions click here: 
http://lyris.sunbelt-software.com/read/my_forums/
or send an email to listmana...@lyris.sunbeltsoftware.com
with the body: unsubscribe exchangelist