如何自动关闭 Windows 上使用超过指定内存量的进程
如何在 Windows 上自动关闭使用超过指定内存量的进程? 是否可以指定一定数量的内存(例如 1MB)并使用这些参数运行一些可执行文件?如果进程尝试分配超过该数量的内存,它应该关闭并返回一些错误值。有没有一种简单的方法可以在 Windows 上执行类似的操作? 原谅我的英语。
How to automatically close process that uses more that specified amount of memory on Windows?
Is it possible to specify some amount of memory (for example 1MB) and to run some executable file with those parameters? If the process tries to allocate more than that amount of memory it should close and return some error value. Is there an easy way to do something like that on Windows?
Excuse my English.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用这个SO答案来获取内存性能stats 和 TerminateProcess 来终止它。
You can use this SO answer to get memory performance stats and TerminateProcess to kill it.