使用 C#/VC++ 在 10 分钟内自动关闭进程/程序?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为有两种方法可以实现这一目标
1. 使用
EnumProcessModules
手动轮询应用程序,并使用TerminateProcess
和终止它们
2. 使用 App_Init 注册表进行 Dll 注入
我将详细讨论第 2 点。
当您将 dll 名称放入以下注册表项
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Windows
的AppInit_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 usingTerminateProcess
and2. 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 keyHKEY_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.