taskmanager

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 process. Is there a way Eclipse can set this priority automatically? EDIT: I realized that each particular launcher (Java, Python etc) ha...

VMWare 6.x on Vista 64 runs as *32 task

Hello, 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 ideas? Machine is a ASUS P5K, Intel Q6600 cpu, 8 GB RAM. Thanks for any insight. ...

wscript.exe and Task Manager

Is there any way to start foobar.js WSH-script in order that standard Task Manager will display a script process name as foobar.something and not as "wscript.exe"? Thanks in advance. ...

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? ...

how do I configure group policy using C#?

Group policy based restriction for controlpanel and taskmanager in c# ...

How can I add a description (-> description-colum in task manager) to my program (VS 2008, C++)

Hi, 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 I just see the name of the executable in task managers description column (processes tab), but I would like to provide my own text ther...

Finding a python process running on Windows with TaskManager

I have several python.exe processes running on my Vista machine and I would like to kill one process thanks to the Windows task manager. What is the best way to find which process to be killed. I've added the 'command line' column on task manager. It can help but not in all cases. is there a better way? ...

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 from Task Manager, the phantom subscriber will be exist. Now I need to do it automatically in VB 6 code. Help! Thanks. ...

using LVM_FINDITEM from task manager and hide from task manager

I am using "LVM_GETITEMTEXT" and "LVM_DELETEITEM" on SendMessage() for trying to delete or hide specific .exe from task manager. But its not hide specific .exe. But i am getting the specific .exe name ReadProcessMemory().But after that the specific .exe is not hiding.Can u tell how can i do so that the specific appilication will hide or ...

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 vista's and seven's. ...

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 example of this protection. The Kaspersky Anti-Virus suites are like this; we can't end their ...

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 pressed and my program can not detect whether it is pressed. I tried adding the code below to the KeyDown event, but it does not work. i...

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, (or after 1 days later? I'm not sure how to reproduce) A's memory in Windows Task Manager is below 1K bytes. My guess is, maybe because A a...

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 way to change the image name corresponding to a python script? (I mean other than changing the name of the python interpreter) ...

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 in general and process management. So there are these processes that can't be terminated with taskkill - system processes in general. But ...

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 the app (which is basically a glorified Forms app with P/Invoke gps code), I switch to the task manager, and close the app via End Task. Se...

OutOfMemoryException - out of ideas II

Hello, 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 this amount of memory. You see in the picture below that VM size is 2,46 GB Ok now I am looking at .net performance counters C...

OutOfMemoryException, large Private Data

Hello, 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 heap is not big. Also the stack size is not big. What is big is something called a private data. Also I can see in task manager that m...

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?", "Close?", MessageBoxButtons.YesNo) == DialogResult.No) { e.Cancel = true; } } } So...

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 password) on their kids phones. I have managed to make everything work but the problem I'm having is that if the kid uses a task manager to kill m...