Hide in Task Manager.
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
Why would you want to do that? The user should always retain control of their PC.
Simon
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
Hi astrovirgin, I would say that this is not possible. Your application will run as a process on your system, so you will see the process in the task manager. By the way, you are not developing some evil software, are you??? Regards Sebastian
It's not a bug, it's a feature! Me in Softwareland.
-
Why would you want to do that? The user should always retain control of their PC.
Simon
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
Can't be done.
Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
If it is just removing from the application tab of task manager then set
ShowInTasbar
property to false for the application.(Yes it removes the application from both task bar and task manager). If you wish to hide the process as well, then I think you should look into theNtQuerySystemInformation
Function. MSDN will surely help you find something useful. Just make sure you handle your code very carefully.Loading signature. Please wait...
-
If it is just removing from the application tab of task manager then set
ShowInTasbar
property to false for the application.(Yes it removes the application from both task bar and task manager). If you wish to hide the process as well, then I think you should look into theNtQuerySystemInformation
Function. MSDN will surely help you find something useful. Just make sure you handle your code very carefully.Loading signature. Please wait...
d@nish wrote:
it removes the application from both task bar and task manager
No it won't. There are plenty applications that can be seen in the Task Manager that have no visibility in the Taskbar.
Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual
-
d@nish wrote:
it removes the application from both task bar and task manager
No it won't. There are plenty applications that can be seen in the Task Manager that have no visibility in the Taskbar.
Developer Day Scotland 2 - Free community conference Recent blog posts: *Throwing Exceptions *Training Developers * Method hiding or overriding - or the difference between new and virtual
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
What valid reason could you have for wanting to do this? The whole point of showing things in the Task manager, is to provide information about the process and give the user the chance to kill the application if it starts to run away. The only applications I know of that try to hide their presence are generally malicious.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
That is easy, just replace taskmgr.exe by something you develop yourself. :)
Luc Pattyn [Forum Guidelines] [My Articles]
Fixturized forever. :confused:
-
That is easy, just replace taskmgr.exe by something you develop yourself. :)
Luc Pattyn [Forum Guidelines] [My Articles]
Fixturized forever. :confused:
And then get hired by Microsoft. Head up one of the OS development teams. It shouldn't take too long.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
-
And then get hired by Microsoft. Head up one of the OS development teams. It shouldn't take too long.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
No thanks. I would consider rewriting Task Manager if I really felt a need, which I don't, but it has to end there. X|
Luc Pattyn [Forum Guidelines] [My Articles]
Fixturized forever. :confused:
-
Hi astrovirgin, I would say that this is not possible. Your application will run as a process on your system, so you will see the process in the task manager. By the way, you are not developing some evil software, are you??? Regards Sebastian
It's not a bug, it's a feature! Me in Softwareland.
SeMartens wrote:
not developing some evil software
That is first thing that comes to mind when someone asks this type of question. What is it they are developing that they want to hide so bad? :suss:
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
What valid reason could you have for wanting to do this? The whole point of showing things in the Task manager, is to provide information about the process and give the user the chance to kill the application if it starts to run away. The only applications I know of that try to hide their presence are generally malicious.
"WPF has many lovers. It's a veritable porn star!" - Josh Smith
Pete O'Hanlon wrote:
What valid reason could you have for wanting to do this?
There isn't any valid reason for it. As mentioned in the other post by others, the user must be able to control their PC and be able to kill processes when they have to.
Pete O'Hanlon wrote:
only applications I know of that try to hide their presence are generally malicious.
That is the impression I get.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer "Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon "Not only do you continue to babble nonsense, you can't even correctly remember the nonsense you babbled just minutes ago." - Rob Graham
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
creating trojans there :-D well when you load task bar all current processes will appear/show, what trojans creators usually do is to name the process with a not suspicious, inocuo or commom name, you know? :-D But try to find a way to trigger the turn off of your trojan when the user hits the taskbar! after trigger the turn on when the taskbar closes. bad luck to you, darkvader :doh:
nelsonpaixao@yahoo.com.br trying to help & get help
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.
For a C# (or .NET) application, this is not easy at all. The main issue is that the .NET framework did not provide the necessary API to acomplish this task, so you have to reside on Win32 API, or, even on kernel API.
-
Hi Everyone, I have created an windows application in c#.net. Now what I want is that when I run the application, it should not be visible in Task Manager. Please help. Thanks in advance.