Tagged Questions
The task-manager tag has no wiki summary.
13
votes
11answers
19k views
How do I hide a process in Task Manager in C#?
I have a requirement to hide a process in Task Manager. It is for Intranet scenario. So, everything is legitimate. :)
Please feel free to share any code you have (preferably in C#) or any other ...
9
votes
6answers
12k views
“Mem Usage” higher than “VM Size” in WinXP Task Manager
In my Windows XP Task Manager, some processes display a higher value in the Mem Usage column than the VMSize. My Firefox instance, for example shows 111544 K as mem usage and 100576 K as VMSize.
...
5
votes
2answers
1k views
Console windows that cannot be killed by closing or via Task Manager
When I run a test harness through the Visual Studio 2005 debugger, it creates a console window every time I run it.
In the past, the console window would close automatically when the test harness ...
5
votes
4answers
2k views
How much memory is my windows app really using?
I have a long-running memory hog of an experimental program, and I'd like to know it's actual memory footprint. The Task Manager says (in windows7-64) that the app is consuming 800 mb of memory, but ...
2
votes
2answers
322 views
Task Manager disagrees with Process Explorer?
I'm trying to track down a memory leak in my .NET app. Windows Task Manager reports that the memory usage stays constant, while Process Explorer reports that the memory usage is raising.
In Task ...
2
votes
1answer
282 views
How to hide window from “Applications” tab in task manager?
I have question regarding the CreateWindowEx function. I have 2 windows, a main one and a popup one. I want a popup window to hide everywhere. It is currently not displayed in taskbar and it is not ...
2
votes
4answers
214 views
How precise is Task Manager?
I have a C++ Application, when I observe Task Manger, it shows that applicaiton's memory usage increases gradually.
I manually check my source code, and I used Visual Leak Detector for Visual C++ to ...
2
votes
4answers
161 views
Why do my processes only consume 5% of the processors power?
Not sure if this is the appropriate place for this question, but it seems related to threading and system resources and all that.
Why Does my Task Manager show that the System Idle Process is using ...
1
vote
1answer
50 views
type of process dump when its generated from task manager
Starting from Windows Vista, now one can generate a process dump right from task manager. Typically I generate a process dump either by using Adplus or right from Windbg. If I use one of these option, ...
1
vote
2answers
288 views
How to count amount of processes with identical name currently running, using a batchfile
I would like to use a batch file to compare the number of processes named "standard.exe", that are running on my Windows 7 machine, with the number of processes named "basic.exe". If the amount of ...
1
vote
2answers
444 views
how to change the process name of a Java application
when executing a Java application the process name given to it is usually java.exe or javaw.exe. But how can I make it be called by the name of my application in window.
I can't use ...
1
vote
1answer
317 views
Capturing Ctrl+Shift+Esc Before Task Manager Does
I'm using the Windows API (SetWindowsHookEx) to capture keyboard events. I would like to pass the Ctrl+Shift+Esc combination to my application for processing but suppress Task Manager appearing.
...
1
vote
0answers
139 views
Why is a .NET x86 windows service not displayed with *32 in Task Manager?
I created a dummy windows service using .net 3.5. The service has been compiled for x86 explicitly (32BIT corflag is set).
Process Explorer from SysInternals correctly identifies the process as a ...
1
vote
1answer
1k views
Set Application name in Task Manager's Applications Tab
I have a WinForms application written in C# for .NET 3.5 that needs to show a specific name in the Task Manager's Applications tab. However, I need for this text to be different from the Form's text.
...
1
vote
1answer
403 views
Get task manager list via SWT?
Is there a way using SWT to get a list of all processes currently running (similar to executing tasklist.exe/tlist.exe on Windows)? If so, is there sample code available?
Ideally this would be done ...
1
vote
1answer
103 views
Is a thread's stack reported as memory used in Task Manager?
My coworkers and I are trying to track a memory issue in an application, and in my research I found a blog entry that talks about how each thread gets a 1MB stack by default. Our application happens ...
1
vote
4answers
5k views
Checking if an application is still running from a batch file?
How to use batch file to check if an application still running or not? If the application still running, this process will loop again and again. Else, there will be error message.
Thank you very much
...
0
votes
2answers
49 views
Does changing the process priority in Windows Task Manager cause problems?
When changing the priority of a process, there is a warning about system instability.
I am running a Machine Learning algorithm and the Normal priority makes the computer unresponsive. Does changing ...
0
votes
1answer
44 views
How to make a custom Checkbox like Motorola's TaskManager?
I'm currently developing an app for the android platform. I have a DROID 3 which comes with Motorola's Task Manager (v10.0). I'm looking to emulate the style of the checkbox as seen here:
...
0
votes
1answer
58 views
Cancelling OnFormClosing and task manager
According to MSDN
http://msdn.microsoft.com/en-us/library/system.windows.forms.form.onformclosing.aspx
I am trying to block a user from closing a form (except for windows shutting down).
protected ...
0
votes
1answer
60 views
How can I keep Task Manager from killing my pythonw script?
I want to run a python script for several days, performing a huge database calculation, on a "public" windows computer in my work place.
Since this task is important, I want to prevent closing it ...
0
votes
2answers
79 views
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 ...
0
votes
2answers
253 views
My Visual FoxPro application appears to close… but is still running in the Task Manager
My FoxPro program has a quit button and the usual min/max/X buttons in the top right, and when using either the program disappears and seems to have closed properly. However, when I check my Task ...
0
votes
1answer
2k views
how do I make a task using schtask with privilages?
I am trying to do the UAC bypass bug with task scheduler, only instead of using the GUI tool, I am trying to do it with schtasks.exe (the equivalent command line tool). I managed to do the same more ...
0
votes
5answers
324 views
How to prevent starting TaskManager in my Desktop?
I am creating a new Desktop in Windows XP/Vista and 7 using win32 API.
This is more like having a secure Desktop and I don't want let any other application to be executed in that Desktop.
Well, in ...
0
votes
1answer
154 views
is task/application manager available in iphone?
Is there any functionality of a task manager in iphone like we have in windows? if so how to access it?
thanks
0
votes
3answers
116 views
System Resorce Monitor/Graph
I'm looking for a app that does about the same thing at the Performance tab on Task Manager but on a per-process bases and with more plotted valuse. At a minimum I would like to be able to plot CPU ...
0
votes
1answer
811 views
Task Manager Script
I need to a script that will pull up the Task Manager in Vista but with processes from all users (like when you click "Show processes from all users"). I don't mind the UAC interruption but I'd like ...