如何创建在任务管理器或服务列表中不可见的进程

0

本文介绍了如何创建在任务管理器或服务列表中不可见的进程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

<块引用>

可能重复:
在任务管理器中隐藏 C# 程序?

我需要创建一个企业级活动监视器进程,在该进程中用户不应该能够使用任务管理器或其他方法杀死.也许它应该是一个隐藏的过程.这可能吗?有什么解决方法吗?我更喜欢使用 C# 然后 C++(使用 Visual C++ 编译器).

非常感谢

解决方案

相关:

在任务管理器中隐藏 C# 程序?p>

https://stackoverflow.com/questions/759466/is-it-possible-to-hide-console-c-application-from-task-manager

简短的回答是:不,你不能(合法地)从任务管理器中隐藏它,除非你用 Windows 服务包装它.有多种方法可以防止您的应用程序关闭.

Possible Duplicate:
Hide a C# program from the task manager?

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?

https://stackoverflow.com/questions/759466/is-it-possible-to-hide-console-c-application-from-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.

这篇关于如何创建在任务管理器或服务列表中不可见的进程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14