防止应用程序监视文件系统更改

发布于 2024-12-10 00:33:47 字数 201 浏览 1 评论 0原文

我有一个旧的应用程序,它出于某种未知原因监视文件系统更改,导致其速度显着减慢(并且我认为它导致了一些崩溃)。程序应该不需要这样做。

有什么方法可以删除或绕过监视这些更改的应用程序挂钩?

IIRC 如果我创建一个在程序运行之前(和/或之后)的钩子,我可以简单地不调用下一个钩子吗?我不介意这是否会破坏所有正在运行的应用程序,但我当然宁愿只影响这个应用程序。

I have an old application that monitors file system changes for some unknown reason which causes it to significantly slow down(and I'm thinking it's causing some crashes). There should be no need for the program to do this.

Is there any way to remove or bypass an application's hook that monitors these changes?

IIRC If I create a hook that before(and/or after) the program is run I could simply not call the next hook? I don't mind if this breaks all applications that are running but of course I'd rather just effect this one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

涫野音 2024-12-17 00:33:47

AFAIK,有一个特殊的 API ReadDirectoryChangesW 用于设置 FS 监控。你可以挂接它,这样它就不会执行任何操作并返回成功。

AFAIK, there is special API ReadDirectoryChangesW that is used to set FS monitoring. You could hook it so that it will do nothing and return success.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文