English 中文(简体)
• 如何在互联网上制造杀手/工艺的硬性?
原标题:How to create hard to kill app/process in .net?

确保背景进程/从杀人中服务的最佳途径是什么? 我考虑设立2或3个相互监督的服务机构,并在停止服务时开始。

你们是否知道实现这一目标的更好方法?

Cheers!

Update: There are some comments which says "dont do that". I don t want to harm a computer or make some kind or virus. There are some situations where you need to do such a thing eg. parental control. I know that operating systems are for users, but I would like to know the best possible way to secure process/service from killing.

Update2: There was a question about use case. The application should monitor and block unwanted websites on children computer. The children should be able to install/uninstall other software so it have to be administrator account.

最佳回答

也许你可以解释使用情况? 几乎肯定比利用恶意软件处理任何真正有用的功能更为妥善。 不知道你再次试图告诉我们什么。

Edit

你最好不要建立窗口服务,并指示你的父母放弃这一服务,因为儿童账户被拒许修改服务。 这样,你的系统管理人员(父母)就会被剥夺对自己的制度的控制。

问题回答

这可能会导致不良行为,并可能导致任何提出申请的人走上安全模式,并在残疾人开办时向他们提供服务。

最好让用户决定哪些服务可以运行。





相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...

热门标签