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
7
votes
1 answer

Gulp Imagemin not finishing

This is my Gulp task: //Image Optimization gulp.task( 'imagemin', function () { return gulp.src( imageDir + '**/*.{png,jpg,JPG,svg}' ) .pipe( imagemin( { progressive: true, use: [ …
Marten Zander
  • 2,385
  • 3
  • 17
  • 32
7
votes
2 answers

what is a "dump file" in windows task manager?

I know that with windows you can generate a dump file by going to task manager->processes-> right clicking on the process. what is a dump file ? what can i do with .dmp file?
user5543585
7
votes
3 answers

Why does Process.PrivateMemorySize64 /1024 not match what Windows Task Manager Memory (Private Working Set)?

Why does Process.PrivateMemorySize64 /1024 not match what Windows Task Manager Memory (Private Working Set)? There seems to be a big (~ 30%) difference. Plus the value doesn't update frequently like task manager. Calling _process.Refresh() doesn't…
CodingHero
  • 2,865
  • 6
  • 29
  • 42
7
votes
4 answers

How can I kill task manager processes through VBA code?

I'm trying to kill certain processes through VBA. I have a proprietary object that connects to a market data bus. Through RTD I call this object to pub/sub to the bus. However sometimes the connection drops and I need to kill the process via task…
Chris Hanlon
  • 91
  • 1
  • 1
  • 2
7
votes
1 answer

How to detect program java force to close from Windows Task Manager?

Guys sorry if I have offended someone by asking such a noob question, as I see someone have "Marked Down" Question for being inappropriate. This is my first time asking here so forgive me if something isn't appropriate, and sorry if my English isn't…
Ahmad MOUSSA
  • 2,729
  • 19
  • 31
7
votes
2 answers

Process.Start("explorer.exe"); won't bring back taskbar

As of right now, I am working on a mock up OS via WinForms to use as a prop for movies. Upon running the application, it kills explorer.exe so that you can't accidentally have the windows task bar show up during a shoot. The issue is, upon closing…
7
votes
2 answers

Detect End Process From Task Manager In C#

I have an application in C#, and would like to monitor its current status, i.e. whether its running or closed. So far i am able to track the status if the application exits during a run time error, or any other in application exit codes. But i am…
Kush
  • 245
  • 1
  • 3
  • 11
7
votes
4 answers

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 the total amount of memory allocated, also…
mmr
  • 14,781
  • 29
  • 95
  • 145
7
votes
3 answers

What is the difference between closing an application and ending the process from Task Manager?

What is the difference between killing an application using the close button and ending the process from the Task Manager? I am aware of the fact that hitting the close button posts a WM_CLOSE message in the message queue, but I don't know what…
user1232138
  • 5,451
  • 8
  • 37
  • 64
6
votes
2 answers

Task Manager Process Location

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 tslist(tasklist) command, but I only get all running *.exe files.
Cyril Horad
  • 1,555
  • 3
  • 23
  • 35
6
votes
2 answers

Error installing Gulp

I am pretty new to using terminal and installing gulp, but I am running through a few errors. Errors keep popping up and I am not sure why. My goal for right now is to install gulp globally, but not sure if any old files are interfering. Maybe a…
cesar gomez
  • 91
  • 1
  • 8
6
votes
2 answers

Change name of process in Task Manager

I have a windows form application running on a server. Now I need to have multiple instances of the same application running at the same time. Each instance will connect to a different database. During the application startup I change the title so I…
WaveMax
  • 191
  • 4
  • 15
6
votes
2 answers

Change java process description in windows task manager

Is there a command line argument to set the title that JVM reports to the windows task manager? All my java processes only show up as ‘javaw.exe’ with description ‘Java(TM) Platform SE binary’. It would be great, if I could set some -param="This is…
Matthias Ronge
  • 9,403
  • 7
  • 47
  • 63
6
votes
0 answers

Show custom application image in task manager on ICS or JB

As far as I see on Android 4.0 (or higher) default task manager shows last screenshot from program with program icon no the top left. See image: My question is how to change application's image (not icon) in task manager to custom? Don't ask me…
ArtemStorozhuk
  • 8,715
  • 4
  • 35
  • 53
6
votes
8 answers

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…
adum
  • 2,890
  • 3
  • 25
  • 30
1 2
3
39 40