Great Information!
In order to help customers dump the information from multiple servers I wrote a simple set of batch files. Batch files at the bottom.
Instructions
(Please download Pfdavadmin first)
1. Put all of these files in C:pfadvadmin
2. Open pfdavadmin (run pfdavadmin.exe) and enable logging under tools, options, then close pfdavadmin.
3. Create a servers.txt file that contains all of the Public Folder Servers you wish to scan.
4. Double click or run runpf.bat from a command line
5. This will give you one report per server in a tsv file.
---
Runpf.bat- save in a text file (only the for command to the %%i
for /f "tokens=1" %%i in (c:pfdavadminservers.txt) do c:pfdavadminpfreports.bat %%i
--
--
pfreports.bat- (save in a text file between the set command and the echo done command)
--
set ntserver=%1
rem ***************************************************************
ECHO Running PFAdmin Reports
pfdavadmin -contentreport -s %ntserver% -f %ntserver%.tsv
:end
echo Done!
--