问题描述
可能重复:
在任务管理器中隐藏 C# 程序?
我需要创建一个企业级活动监视器进程,在该进程中用户不应该能够使用任务管理器或其他方法杀死.也许它应该是一个隐藏的过程.这可能吗?有什么解决方法吗?我更喜欢使用 C#
然后 C++
(使用 Visual C++ 编译器).
非常感谢
相关:
简短的回答是:不,你不能(合法地)从任务管理器中隐藏它,除非你用 Windows 服务包装它.有多种方法可以防止您的应用程序关闭.
I need to create an enterprise level activity monitor process in which the user should not be able to kill using the Task Manager or some other method. Perhaps it should be a hidden process. Is this possible? Are there any workarounds? I prefer to use C#
then C++
(with the Visual C++ compiler).
Thanks SO
Related:
Hide a C# program from the task manager?
Short answer is: no, you can't (legally) hide it from Task manager, unless you wrap it with a Windows service. There are various ways of preventing your application from closing.
这篇关于如何创建在任务管理器或服务列表中不可见的进程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!