Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was asked to find a way to monitor changes (modification, renaming, deletion, moving) of files in specific folders on the company's shared file server (simple windows shared directory). I wrote a simple app in C# that uses FileSystemWatcher to monitor these changes and notify a particular email address of them.

What I'd like to know now is how to find out the name/IP of the user/computer who made these changes. Any ideas?

As an alternative to writing my own software, are there any good (possibly free) software that supports this functionality?

share|improve this question
I have a similar task...to monitor file access in a directory and notify some email user. Can you please let me know how you did it? The monitoring part. Thanks – user385409 Jul 7 '10 at 10:09
I think ShareMonitor can solve your problem. It allows you to monitor any access to your network shared files: ShareMonitor homepage – user718671 Apr 21 '11 at 9:30

1 Answer

up vote 6 down vote accepted

Use auditing - it's on the security tab when you get the properties of file/folder. You specify which users you want audited for what kind of access. You also have to turn on auditing using the security policy mmc snap-in. The audits will end up in the security log.

Detailed instructions from MS: http://support.microsoft.com/kb/310399

If you want, your C# app could then pick the events out of the security event log.

share|improve this answer

protected by ho1 Jun 15 '12 at 12:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.