server audit software

  • Thread starter Thread starter Ish
  • Start date Start date

Ish

Ish

Associate
Joined
11 Jan 2006
Posts
1,813
Location
West Midlands
Hi

Is there any software which I can run on our server which will show the file sizes and also when the file was last used in an easy to read format?

I want to free up some space so I need to see what can be archived.

It's for an SBS2008 server.
 
Last edited:
Why when theres so many great programs already out there..

As above really, good program.

A python script would have less overheads and could be automated to check dates and sizes against each other and perform tasks against it. Can be more customised. Though I've going out on a whim here to say this as I never really looked at what was available already.
 
JDiskReport is my favorite for finding what is eating my disk space. Great little tool.
 
Run this from a PowerShell window as single line.

Get-ChildItem C:\intel -recurse | Select-Object FullName, LastAccessTime,LastWriteTime,Length | export-csv c:\temp\fileage.csv -NoTypeInformation


Just change C:\intel to the path you wish to check and change 'c:\temp\fileage.csv' for the output filename. If want it to display to screen miss off this section '| export-csv c:\temp\fileage.csv -NoTypeInformation'

You can expand on this to display more parameters if you wish?

PS you must have permission to access the folders too!
 
Back
Top Bottom