What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:33:29Z http://stackoverflow.com/feeds/question/54504 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54504/what-is-the-best-practice-for-writing-registry-calls-file-sytem-calls-process-cre 0 What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista? Omega 2008-09-10T15:56:38Z 2008-09-10T16:36:55Z <p>We needed to monitor all processes Registry calls/File Sytem calls/Process creations in the system (for the antivirus hips module) .</p> <p>Also time by time it will be needed to delay some calls or decline them.</p> http://stackoverflow.com/questions/54504/what-is-the-best-practice-for-writing-registry-calls-file-sytem-calls-process-cre/54601#54601 1 Answer by Peter Ritchie for What is the best practice for writing Registry calls/File Sytem calls/Process creation filter for WinXP, Vista? Peter Ritchie 2008-09-10T16:36:55Z 2008-09-10T16:36:55Z <p>The supported method of doing this is <a href="http://msdn.microsoft.com/en-us/library/ms724892.aspx" rel="nofollow">RegNotifyChangeKeyValue</a></p> <p>Most virus checkers likely perform some sort of API hooking instead of using this function. There's lots of information out there about API hooking, like <a href="http://www.codeproject.com/KB/system/hooksys.aspx" rel="nofollow">http://www.codeproject.com/KB/system/hooksys.aspx</a>, <a href="http://www.codeguru.com/cpp/w-p/system/misc/article.php/c5667" rel="nofollow">http://www.codeguru.com/cpp/w-p/system/misc/article.php/c5667</a></p>