unixman_again Posted May 3, 2016 Posted May 3, 2016 Any recommendations to log changes to files on Windows systems. Basically we want something to establish a base line for certain directories, and then run as a cron job over night to compare changes to the baseline. If there are any, produce a report and email to me. Thanks!
Oaktech Posted May 3, 2016 Posted May 3, 2016 It's a hammer to crack a nut but Varonis Datavantage will do what you need - and then some. The educational pricing is surprisingly competitive. https://www.varonis.com/products/datadvantage-2/ 1
3s-gtech Posted May 3, 2016 Posted May 3, 2016 You can do this with Robocopy - you can create the baseline folder elsewhere, then use Robocopy's logging only features to compare and output to a text file telling you of any file changes. This can then be run as a Scheduled Task. 1
jinnantonnixx Posted May 3, 2016 Posted May 3, 2016 One method could use Cygwin. First stat the directory, omitting the Access fields stat * | grep -v '^Access' > file1 Then just diff the files to spot any changes. 1
unixman_again Posted May 3, 2016 Author Posted May 3, 2016 Thanks for the suggestions. I did think of Cygwin, put I didn't want to slap that on the server. I've rolled my own with PHP which is OK but could do with something more comprehensive. We'll certainly have a look at Varonis.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now