vote up 6 vote down star
4

Is there any way to hide a C# program from the Windows Task Manager?

EDIT: Thanks for the overwhelming response! Well I didn't intend to do something spooky. Just wanted to win a bet with my friend that I can do it without him noticing. And I'm not a geek myself to be able to write a rootkit, as someone suggested though I'd love to know how to do it.

flag

39% accept rate
8  
Why would you want to do something like this? – Daniel A. White Jul 31 at 12:39
1  
I don't know the answer, but if I did, I'd be inclined to ask about your reasons for doing so before explaining just how to go about doing this. – Samir Talwar Jul 31 at 12:40
3  
yes, there is: don't start it – RaYell Jul 31 at 12:41
3  
I think we all know exactly what kind of program needs to do this X-) – astander Jul 31 at 12:43
6  
I think it's a valid and interesting question. – Rax Olgud Jul 31 at 12:48
show 5 more comments

6 Answers

vote up 19 vote down

Not that I'm aware of - and there shouldn't be. The point of the task manager is to allow users to examine processes etc.

If the user should be able to do that, they should be able to find your program. If they shouldn't be poking around in Task Manager, group policy should prevent that - not your program.

link|flag
1  
fully agree. I don't see any reason why a program should achieve. – Juri Jul 31 at 12:41
Yes, over-achieving programs are just so annoying. – Jeff Yates Jul 31 at 13:54
1  
They certainly are if what they're "achieving" is spamming, wiping your hard disk etc... it's perfectly reasonable to put restrictions on what programs can do. – Jon Skeet Jul 31 at 14:08
vote up 3 vote down

I don't know if there are solutions specific to C#. Anyway, look at this "hack": http://www.codeproject.com/KB/system/Hack_Windows_Task_Manager.aspx

link|flag
vote up 2 vote down

You shouldn't hide it, but you could prevent the user from killing the process.

See Chris Smith's answer to this question.

link|flag
vote up 10 vote down

You could make your program a service and then it would appear as "svchost". There's a little more to it than that, but that should give you a hint to go in the right direction.

link|flag
vote up 1 vote down

So you wanna write a rootkit? C# is not a way to go. Let's try ASM :D

link|flag
Doesn't have to be a rootkit... Viruses and spyware might want to too :-P – samoz Jul 31 at 13:10
vote up 4 vote down

I'm not aware of any way to hide it from the task manager, but you could just disguise it by making it show up as "svchost.exe". It'll get lumped in with all the others (there's usually several), and will become indistinguishable.

link|flag
Not really - you can still see the path of the executable in Task Manager. – frou Jul 31 at 13:17
1  
@frou: Yeah, but if you just name it svchost.exe and drop it somewhere underneath c:/Windows, most people would just think it's a regular windows application. – Mike Trpcic Jul 31 at 13:25
Blah - simply calling it svchost.exe is a messier/less-effective version of what samoz suggests :) – frou Jul 31 at 14:21

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.