Public Folder Last Access Time
		
	using Exchange 2007 and would like to find out when a Public Folder was last accessed or used for the purpose of cleanup?		
				September 1st, 2011 9:04am
			Get-PublicFolderStatistics | fl *Name,Last* >c:\pubfolderstats.txt		
				Free Windows Admin Tool Kit Click here and download it now
					September 1st, 2011 9:13am
			while this gets me the info - how can the formatting of the info be changed so i when I want to open it in a spreadsheet the list of folders goes down one column and the stats on the top across.		
				September 1st, 2011 9:32am
			Hello,
try it with ft insted of fl:
Get-PublicFolderStatistics | ft *Name,Last* > c:\pubfolderstats.txt
Greetings,
Toni		
				Free Windows Admin Tool Kit Click here and download it now
					September 1st, 2011 10:20am
			it did mod though
 
Get-PublicFolderStatistics | ft Name,LastAccesstime > c:\pubfolderstatsC.txt		
				September 1st, 2011 10:46am
			so here is the kicker - the command is treated as acces time. totally hosed now.		
				Free Windows Admin Tool Kit Click here and download it now
					September 1st, 2011 10:51am
			Hi,
The following command works fine:
Get-PublicFolderStatistics | ft Name, LastAccessTime >C:\publicfolderststs.txt
By the way, what do you want to get?
ThanksSophia Xu		
				September 2nd, 2011 3:33am
			it works but the command causes the time stamp for last access time to be the time the commamd was run. or something made the date stamp on all the folders sept 1 2011. anti-virus?
 
the goal is to delete items that have not been accessed in a while. but the command seems to breakk that concept.		
				Free Windows Admin Tool Kit Click here and download it now
					September 2nd, 2011 7:50am
			Hello,
the command doesn't cause the Last Access Time to be re-stamped. There has to be something that accesses the Public Folder, like an anti-virus-scanner.
Greetings,
Toni		
				September 4th, 2011 1:41pm
			

