How do i get a list of all e-mail address for exchange public folders?
Will reply on my own, will accept the best reply offered.
|
|
How do i get a list of all e-mail address for exchange public folders? Will reply on my own, will accept the best reply offered.
|
||
|
|
|
|
While what you posted as your own answer would work, it helps to read the documentation for the methods and objects you are using to understand their limitations. If you had called this code multiple times you would eventually had a memory leak on your hands. The
Note 1The remarks for DirectorySearcher.SizeLimit indicate that the size limit is ignored if it is higher than the server-determined default (1000 entries). Paging allows you to get all of the entries you need as you need them. Note 2The remarks for DirectorySearcher.FindAll() mention that the SearchResultCollection needs to be disposed to release resources. Wrapping it in a ExtraIf you're using Exchange 2007 or 2010 you could also install the Exchange Management Tools and use the powershell cmdlets to query your public folders. You can pragmatically create a powershell runspace and call the Exchange cmdlets directly without actually needing a console for the user to interact with. |
||
|
|
|
|
The following code will get a list of all email address of public folders in exchange.
If you want All email addresses of the public folder, remove:
Add: for (int counter = 0; counter < resEnt.Properties["proxyAddresses"].Count; counter++)
|
||||||||
|