使用 C#/VC++ 在 10 分钟内自动关闭进程/程序?

发布于 2024-09-28 13:29:00 字数 138 浏览 3 评论 0原文

我有一个 Windows 服务/应用程序在 PC 上静默运行,当用户启动任何程序时,我需要计算时间并在 15 分钟内关闭它(程序)。即使用户在 15 分钟内关闭特定程序(例如 winword.exe),然后重新打开它...该程序应该在第 15 分钟自动关闭...

I have one Windows Service/Application running silently on the PC, when user starts any program , i need to count the time and close it down (program) in 15 Minutes. Even when the user close down the particular program ( say winword.exe) with in 15 min, and reopen it... the program should automatically close on 15 th minute...

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

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

发布评论

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

评论(1

无悔心 2024-10-05 13:29:00

我认为有两种方法可以实现这一目标
1. 使用 EnumProcessModules 手动轮询应用程序,并使用 TerminateProcess
终止它们
2. 使用 App_Init 注册表进行 Dll 注入

我将详细讨论第 2 点。
当您将 dll 名称放入以下注册表项 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WindowsAppInit_DLLs 中的以下注册表值中时,您可以使该 dll加载几乎所有启动的应用程序。您可以在注入的 dll 的 dllmain 中编写一个 15 分钟的计时器,并在计时器到期时执行 exitprocess(),最终关闭整个进程。

There are two ways I think you may acheive this
1. Manual polling of applications started using EnumProcessModules and terminate them using TerminateProcess and
2. Using Dll injection using App_Init registry

I'll talk a little more about number 2.
When you place your dll name in the following registry value in AppInit_DLLs in the following registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows, you can make the dll load with almost every application that launches. You could write a 15 min timer in the dllmain of your injected dll and do exitprocess() when it elapses, eventually taking down the entire process.

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