Hi Is there any way to search all emails IDs where forwarders have been configured ? Regards, Shash
Exchange Server version? Exchange 2007: Get-Mailbox | where {$_.forwardingaddress -ne $null} Exchange 2003 - ADUC (Win2003) -> Saved Queries -> New Query -> Custom Search -> Advanced: (mailnickname=*)(altRecipient=*) Using csvde (same syntax using ldifde as well): csvde -f "myfilename.txt" -d "dc=MyDomain,DC=com" -r "(&(mailNickname=*)(altRecipient=*))" -- Bharat Suneja Microsoft Corporation ---------------------------------- This posting is provided "AS IS" with no warranties, and confers no rights. Please do not send email directly to this alias. This alias is for newsgroup purposes only. "Shash" wrote in message news:27593F5D-D265-456A-87E9-393AB84377D4@microsoft.com... > Hi > > Is there any way to search all emails IDs where forwarders have been > configured ? > > Regards, > Shash
Thanks so much for the help. "Bharat Suneja [MSFT]" wrote: > Exchange Server version? > Exchange 2007: Get-Mailbox | where {$_.forwardingaddress -ne $null} > > Exchange 2003 - ADUC (Win2003) -> Saved Queries -> New Query -> Custom > Search -> Advanced: > (mailnickname=*)(altRecipient=*) > > Using csvde (same syntax using ldifde as well): > csvde -f "myfilename.txt" -d "dc=MyDomain,DC=com" -r > "(&(mailNickname=*)(altRecipient=*))" > > -- > Bharat Suneja > Microsoft Corporation > ---------------------------------- > This posting is provided "AS IS" with no warranties, and confers no > rights. Please do not send email directly to this alias. This alias is for > newsgroup purposes only. > > > "Shash" wrote in message > news:27593F5D-D265-456A-87E9-393AB84377D4@microsoft.com... > > Hi > > > > Is there any way to search all emails IDs where forwarders have been > > configured ? > > > > Regards, > > Shash > >