Tagged Questions
The taskmanager tag has no wiki summary.
7
votes
2answers
696 views
how to change process name of python script running on windows machine
Windows Task Manager (Processes Tab) lists all the running processes.
the image name for python scripts is always python.exe (or pythonw.exe or the name of the python interpreter).
it there a nice ...
6
votes
5answers
2k views
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 ...
6
votes
2answers
781 views
How can I add a description (-> description-colum in task manager) to my program (VS 2008, C++)
probably a pretty simple question, just couldn't find anything useful with Google. :(
I have a simple unmanaged c++ project in Visual Studio 2008, and would like to add a description text. Right now ...
5
votes
3answers
213 views
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 ...
5
votes
1answer
3k views
How can I prevent my Android app/service from being “killed” from a task manager?
It is very important that my service stay running until someone with a password stops the service from my UI screen. My app runs great but it is designed to be turned on/off by parents (with a ...
5
votes
3answers
473 views
Total memory consumption of the system
Is it correct to assume that the total memory consumption (virtual + physical) of a system is sum of "Memory Usage" and "VM Size" columns shown by the task manager in windows?
4
votes
1answer
93 views
How to set “run only if logged in” and “run as” with TaskScheduler in C#?
I've got code that uses the C# TaskManager object to create a task. On Windows 7 it works fine but on Windows XP (and presumably other Windows) it doesn't work at all because the default user for the ...
4
votes
4answers
331 views
What's the Win32 API to disable task manager completely?
That is,even if you press Ctrl+Alt+Del,the task manager should not pop up.
4
votes
3answers
557 views
Task manager close is not detected second time in a WinForms Application
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.UserClosing)
{
if (MessageBox.Show(this, "Do you really want to close?", ...
4
votes
6answers
573 views
How to launch from Eclipse in Low priority under Windows?
I'm running programs from Eclipse (on Windows) that eat a lot of CPU time. To avoid bogging down my whole machine, I set the priority to Low with the Task Manager. However, this is a cumbersome manual ...
2
votes
1answer
89 views
Java process pegging CPU at 100%
We have an application which is running normally in a variety environments. However, at one client site when the application invokes a child process (in this case CODEFIND.EXF - please see enclosed ...
2
votes
3answers
175 views
Form Closed Event is not being fired
When the Application is being closed from Task Manager ,than Form_Closed Event is not firing ,is there a way how to handle this ,because my Application is writing a text file on run-time always ,so i ...
2
votes
2answers
192 views
Id from Process.Start match sometimes or sometimes not
I'd like to run from C# code ANSYS Fluent exe file
And now for comparison, I'll give two examples
Process fluent = Process.Start(@"C:\Program Files\ANSYS Inc\v130\fluent\ntbin\win64\fluent.exe", ...
2
votes
4answers
1k views
Best Opensource Online Task Management/Project manager?
Best Online Open source Project manager/Task Manager???
2
votes
2answers
108 views
Can I temporarily suspend SharePoint Server + IIS + SQL Server?
Is there a way to temporarily suspend / pause Sharepoint Server 2010, IIS and SQL Server services without killing them in Task Manager? I am not running VM or Hyper-V, so most of my resources are ...
2
votes
2answers
163 views
Windows and system processes
Note: I've asked this question in a similiar format on superuser but it seems like it may fit here on SO better.
It definitely also is about programming as it concerns parts of the Win32 API, Windows ...
2
votes
3answers
408 views
Where is my MMF(Memory-Mapped-File) memory in Windows Task Manager?
Two applications share memory by MMF.
A create MMF (about 1GB), B open that MMF file by name.
When I see Windows Task Manager, A has 1GB memory.
But, after several closing and launching B app again,
...
2
votes
4answers
3k views
how do I configure group policy using C#?
Group policy based restriction for controlpanel and taskmanager in c#
1
vote
2answers
545 views
How do Task Manager's kill apps?
first of all I know it's bad to use a task manager/killer in Android and all that, but what I was wondering is how do task managers like Advanced Task Killer kill other applications?
I wanted to ...
1
vote
3answers
83 views
Different reference returned from Process.Start
ProcessStartInfo psi = new ProcessStartInfo(BatchFile)
Process p = Process.Start(psi)
Why p.ID is different than process id visible in WindowsTaskManager
(BatchFile is path to external program ...
1
vote
1answer
322 views
Application launched using CreateProcess in windows CE doesnt show up in task manager as application
I launch an application in windows CE 3.0 from a C++ dll using the CreateProcess() call. The application that is launched runs as per requirement. But this application is not listed in the task ...
1
vote
2answers
439 views
C# Windows Form Killed By Task Manager…Is There a Way to Run Shutdown Function?
I doubt this is even possible. So your app is running and user decides to End Process via Task Manager. Is there a method/action to save data during process.kill? I doubt there is but I had to ask.
...
1
vote
2answers
1k views
Programatically disabling Taskmanager using c#
I am working on a Kiosk application, i need to disable the taskmanager. So that when the user press [ctrl + alt + Del] and [ctrl + shift + escape], the taskmanager should not pop up. How ?
1
vote
2answers
365 views
OutOfMemoryException, large Private Data
In previous series:
http://stackoverflow.com/questions/2543648/outofmemoryexception-stack-size-is-huge-large-number-of-threads
I have a .net windows service that consumes a lot of memory. The GC ...
1
vote
3answers
517 views
VMWare 6.x on Vista 64 runs as *32 task
I am trying to run VMWare Workstation 6.5.1 on Vista 64. It runs, but always as a *32 task. It is supposed to run as a native 64 bit task. I have uninstalled and reinstalled with no change. Any ...
0
votes
1answer
22 views
Access to different versions of taskmgr.exe for analysis
I'm looking to get hold of different versions of taskmgr.exe from different versions of Windows, in order to test a Task Manager addon I'm building. I've managed to get some basic additional ...
0
votes
2answers
50 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
2answers
68 views
Webbrowser: memory leaks
I have an app developed 5 or more years ago. It is implemented using C++, MFC.
Program automates working with some web resource. The issue is that it has lof ot memory leaks.
I'm monitoring memory ...
0
votes
0answers
18 views
Why is my script's memory usage is constantly growing and later the process gets stopped?
I have created an AHK script named code_2, compiled it and placed it into my Start-up folder so that it would automatically start running each time I turn on the computer.
The script is periodically ...
0
votes
3answers
92 views
How to destroy my application?
My application is always showing in Task Manager when I exit from my application. How do I destroy it? I used the onDestroy() method, but still it is running. I am using alarm manager and some ...
0
votes
3answers
105 views
What effect does changing the process priority have in Windows?
If you go into Task Manager, right click a process, and set priority to Realtime, it often stops program crashes, or makes them run faster.
In a programming context, what does this do?
0
votes
4answers
532 views
How can i Hide my c# application from taskmanager processtab?
i need to hide my c# application from process tab of Taskmanager
using
this.ShowInTaskbar = false;
i have hide it from application tab. now i need to hide it from process tab.
is this possible?.
0
votes
1answer
79 views
Multi instance vs Single instance application
I was asked this question in an interview. Why does firefox show a single process in the task manager even when multiple instances of the application is open while Internet Explorer 8 and Google ...
0
votes
2answers
81 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
1answer
111 views
.net forms keep disappearing due to TaskManagerClosing
So this one has me stumped, and seems really odd.
I wrote some c# forms which act as the "server" component in a client server app setup.
(Client sends udp data, server program chugs some numbers and ...
0
votes
1answer
115 views
Task Manager Process Location
Greetings,
Is there a command line syntax in which returns the Image Path / Location of the *.exe on the task manager?
I'm using Windows XP Professional Service Pack 3, I'm aware of the ...
0
votes
1answer
118 views
Service is stopped after a few minuets of inactivity
I am writing an android app using the GPS location provider in a Service that is started when the main Activity is created (unless the service is already running). I was under the impression that the ...
0
votes
2answers
145 views
How to Handle Excel remains error
Let me make myself clearer. I need to access an Excel file, but when I try, the application says that it's impossible to access the referred file. The problem is that it's not opened.
Then I realized ...
0
votes
3answers
181 views
How to run an empty background process with a specific name?
I want to have a certain process always running in the background so it will be viewable in the Task Manager of windows, with the specific name I give it.
The process shouldn't do anything really, ...
0
votes
1answer
468 views
Is there any way to hide a process from the Windows Task Manager? (<ctrl>+<alt>+<del> task list) [closed]
Possible Duplicates:
How do I hide a process in Task Manager in C#?
how to create a process which is not visible in task manager or services list.
I was wondering if it is possible to ...
0
votes
0answers
89 views
How can I automatically activate the task manager during boot up? [closed]
How can I automatically activate the task manager from boot up off of a flash drive?
0
votes
1answer
459 views
hide the name of app in windows task manager [closed]
Possible Duplicate:
Hide a C# program from the task manager?
Hi.
I write WinForms app and i want to hide my app name in this place windows Task Manager>>Applications .how can hide when i ...
0
votes
1answer
93 views
Do windows API work with windows form
I am trying to create a mini task manager where I can show all the process and details. I am able to get all the details by using CreateToolhelp32Snapshot, OpenProcess etc. Now for GUI I am not sure ...
0
votes
5answers
326 views
How to gauge CPU usage without TaskMgr
I'm trying to gauge the CPU utilization level during a long-running process. I suspect that everytime I run task-manager to view the data, the process' CPU utilization goes down because taskmanager ...
0
votes
2answers
963 views
Delphi: Disable TaskManager in Windows 7
I found this code for disabling the task manager in Windows XP. It works :)
But does it work in Windows 7, too? The registry path is the same, I've checked this. But maybe there are some ...
0
votes
1answer
168 views
OutOfMemoryException - out of ideas II
This question is related to my previous question.
The storyline: I have an .NET application which consumes a lot of memory
if you look at task manager VMSize. I am trying to find out what consumes ...
0
votes
3answers
594 views
Windows-mobile app won't run after being closed by Task Manager
I've inherited some windows-mobile code that I've been bringing up-to-date. I've come across a weird bug, and I was hoping that even though a bit vague, maybe it will spark someone's memory:
Running ...
0
votes
2answers
800 views
How can I detect Ctrl-Alt-Del either before or after the OS detects it?
I need to initialize a variable when the user presses Ctrl-Alt-Del. Because this key combination is treated differently than others, the Windows Security Dialog Box appears immediately after it is ...
0
votes
1answer
63 views
Is it possible to add functionality to Vista/7 taskmgr.exe?
I was wondering if anyone knew whether taskmgr.exe in Windows Vista/7 was extend-able via a plugin system.
I found this, but this is limited to XP,2k3 and he specifically states he didn't know about ...
0
votes
5answers
7k views
End Process from Task Manager using VB 6 Code
I need to kill an application roughly so I can get phantom subscriber of that application in my database (this can not be produced by closing the application). Manually, if we kill the application ...