Public Folder Replicas & Reporting
I've just migrated a bunch of public folders off our old 2003 environment, however I've noticed that there are some folders that don't have replicas on the other servers. Is there an easy way to report on which folders are using certain replicas?
Or specifically which folders aren't using a certain exchange server as a replica? Is there something in power shell that can automate this?
May 3rd, 2010 3:46am
I don’t think there is an easy way.
You can use PFDAVAdmin to compare the PF data from different servers.
http://www.microsoft.com/downloads/details.aspx?familyid=635be792-d8ad-49e3-ada4-e2422c0ab424&displaylang=en
Santhosh Sivarajan | MCTS, MCSE (W2K3/W2K/NT4), MCSA (W2K3/W2K/MSG), CCNA, Network+ Houston, TX http://blogs.sivarajan.com/ http://publications.sivarajan.com/ This posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
May 3rd, 2010 9:22pm
Please try the cmdlets below:
Get-PublicFolder -Recurse | Ft -Wrap Name,Replicas
Get-PublicFolder -Identity \NON_IPM_SUBTREE -Recurse | Ft -Wrap Name,ReplicasJames Luo
TechNet Subscriber Support (http://technet.microsoft.com/en-us/subscriptions/ms788697.aspx)
If you have any feedback on our support, please contact tngfb@microsoft.com
May 5th, 2010 6:32am
Hi,
This is very much in the lines of what James mentioned above. This is just the one which i used for my reporting purposes in the past.
Get-PublicFolder -Recurse -ResultSize unlimited | Select {$_.Identity}, {$_.Replicas} | Export-Csv "c:\file_name.csv"
Thanks
Shiv
Free Windows Admin Tool Kit Click here and download it now
May 8th, 2010 1:37am