I'm wondering if there's a application that alerts me if someone (in my network) access a shared folder?

I can see the sessions opened in Computer Management but i want to know if someone's accessing/sneeking in my shared folders.

What would make me smile is a taskbar popup alert when someone accesses my shares.

Thank U All..

link|improve this question
feedback

migrated from stackoverflow.com Oct 10 '11 at 16:18

This question came from our site for professional and enthusiast programmers.

1 Answer

You could do this with WMI scripting - set up a temporary event consumer which watches for creation of Win32_ServerConnection instances.

The WQL would look something like:

select * from __InstanceCreationEvent where TargetInstance ISA 'Win32_ServerConnection'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown