Questions tagged [taskmanager]

Task Manager is a system monitor that provides limited information about running applications.

For example, Windows Task Manager is a task manager, system monitor and startup manager included with Microsoft Windows, that provides limited information about computer performance and running applications, processes and CPU usage, commit charge and memory information, network activity and statistics, logged-in users, and system services.

592 questions
10
votes
3 answers

Contradictory reporting of total Process memory usage in C# Winforms app

EDIT: The bounty's expired, but if the community would like to award it to someone, then I choose Raful Chizkiyahu. I have a memory leak in one of my C# Winforms programs, and I'd like to graph its memory usage over time to get a better…
Dan W
  • 3,520
  • 7
  • 42
  • 69
10
votes
4 answers

find user disconnection time in RDP session Windows server 2012

We have a pool of develop machines where developers log in through RDP and usually they doesn't log off but just disconnect. As local administrator I can force the log off but I would like to check when the user disconnected. From task manager I can…
Naigel
  • 9,086
  • 16
  • 65
  • 106
10
votes
6 answers

How can I keep Task Manager from killing my program?

Is there any way to protect my Delphi application from being killed by the Windows task manager (or others like Process Explorer)? I think Windows messages can do that (by doing a hook and intercepting the TerminateProcess message). I want an…
djiga4me
  • 345
  • 1
  • 4
  • 13
9
votes
2 answers

Is it possible to hide winform in TaskManager application tab?

I'm writing a transparent WinForms app and I want to hide the app from showing in Task Manager's applications tab. I'm OK with the fact that it will show in Processes (in fact it should). If I set: this.ShowInTaskbar = false; it only hides from…
adi sba
  • 621
  • 1
  • 12
  • 32
9
votes
4 answers

Invoking windows task manager with 'performance' tab selected

I am currently invoking the windows task manager using a click event in WPF. The event simply executes 'Process.Start("taskmgr"). My question is, is there a way to choose which tab inside task manager is selected when the process starts / is…
d.moncada
  • 16,900
  • 5
  • 53
  • 82
9
votes
1 answer

C# Get RDC/RDP and "Console" Session information

I'm trying to retrieve some RDC/RDP and "Console" login information programmatically via C#. I want to develop a simple console application (.EXE) such that I can retreive the information from Task Manager -> Users Tab of any remote computer on our…
Kyle
  • 951
  • 3
  • 14
  • 31
9
votes
2 answers

How can I set the Task Manager description for my program?

I have a CLI program and I'd like to modify the description shown for it in Windows Task Manager. I tried setting Description in the Assembly Info, but this only changes the .exe's Properties > Details.
Danny Beckett
  • 20,529
  • 24
  • 107
  • 134
8
votes
4 answers

How does task manager kill my program?

I have this MFC program that when I kill it with task manager I get an exception on my program and then it crashes. I want to get the event from the task manager, when it is going to kill my process and close my program gracefully. I understand that…
eladyanai
  • 1,063
  • 2
  • 15
  • 34
8
votes
2 answers

Replace task manager using registry keys or api

Process Explorer has an option which I have used recently called "Replace Task Manager.". Now, every time CTRL + ALT + DEL is pressed on my system Process explorer comes up. However unfortunately despite what the documentation says the option does…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
8
votes
2 answers

Difference between End Process and End Process Tree

What is the difference between End process and End process Tree in Task Manager in Windows.Is End process tree will kill all the child process under parent?
Navin a.s
  • 416
  • 2
  • 8
  • 19
8
votes
2 answers

Get a list of apps currently visible in the windows task bar from python

I want to know which apps are open in windows 10 and that are currently showing in windows task bar from python. Like in my case(in the picture below) Chrome, File explorer, and Spyder(python) are currently open and showing in task bar. Task…
Abdullah Ajmal
  • 148
  • 1
  • 11
8
votes
1 answer

Autoscale Python Celery with Amazon EC2

I have a Celery Task-Manager to crunch some numbers for company analytics. The Task-Manager and workers are hosted on an Amazon EC2 Linux Server. I need to set up the system such if we send too many tasks to celery Amazon automatically sets up a…
8
votes
1 answer

Get info about all running processes

I have an idea to make Task Manager for android.Can anyone tell me how to get all the processes currently running in android?
Zaid Iqbal
  • 123
  • 1
  • 5
  • 12
8
votes
2 answers

'End Task' in Task Manager always sets CloseReason.UserClosing

I want to log if a customer tries to force close the application. I'm aware of having no chance to catch a process kill. But it should be possible through the main form closing event to get informed about the 'CloseReason.TaskManagerClosing'…
dannyyy
  • 1,784
  • 2
  • 19
  • 43
8
votes
5 answers

Android: Re-invoke application if task manager kill

Application thread get close if its killed by task manager. Need to re-invoke application as though its killed by other application or task manager. Any idea?
arshad kr
  • 357
  • 3
  • 16
1
2
3
39 40