Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
210 views

Audio keeps playing after force close

First of all, thank you for this great site, I have found a great deal of information by searching through the questions answered here. I have a problem, though, that I only found one mention of (with ...
3
votes
1answer
317 views

Is taskkill safe to close a process?

I want to be able to close a process on a remote computer using a .bat file. eg: taskkill /im Myapp.exe Is using taskkill a suitable way to close an application? eg like clicking the 'X' on the ...
1
vote
2answers
93 views

ActivityManager.killBackgroundProcesses different from “Force stop”

I was experimenting with ActivityManager.killBackgroundProcesses in my application and notice something interesting. I hope someone on stackoverflow can shed some light on this. So if I start an ...
1
vote
2answers
103 views

Killing webservices everytime I start my solution

I have 5 services running when my application starts up in VS2010. And everytime I get this error: Error 24 Unable to copy file "C:\My Project\Main\Entities\bin\Debug\Test.Testing.dll" to ...
1
vote
2answers
709 views

Close a running application from DOS command line

The start command can launch an application like notepad in a batch file like this: start notepad start "my love.mp3" But how do I close the running application from the command line? I found ...
1
vote
2answers
783 views

Handle force close?

Is there a way to notify an activity/service of a force-close request right before it gets killed? I mean when the user hits the force close button in Menu>Settings>Applications>Manage ...
1
vote
4answers
164 views

Periodically shut down a program

I want to kill an executable of a game named KnightOnline and deny user to run it. I'm using: Process.Start("taskkill.exe", "/f /im kol.exe"); but it's showing a command window. How can I hide the ...
0
votes
0answers
19 views

kill process windows using taskkill

I have a java script which is running and kills some processes according to the pid. I run a shell with command of "taskkill /F /pid " adding the pid of the process. I have a problem that sometimes ...
0
votes
3answers
64 views

Supress prints from TASKKILL

I'm writing a Perl script that makes system calls to kill running processes. For instance, I want to kill all PuTTy windows. In order to do this, I have: system('TASKKILL /F /IM putty* /T ...
0
votes
0answers
164 views

Taskkill and getRuntime().exec

I wrote a windows bat file (killer.bat) which calls taskkill to kill processes (called something.exe) in a Windows 2008 Server 64bit: taskkill /s hostname /u domain\username /p password /F /IM ...
0
votes
2answers
65 views

Webpage to to run programs

Hi all I'm brand new to PHP so go easy here. :) I am attempting to make a bare minimum webpage to run various things on my computer. For example, I have a button and am attempting to run the ...
0
votes
4answers
3k views

android task kill

I want to kill all tasks that run in android like task killer... What I have done until now is: ActivityManager manager = (ActivityManager) this.getSystemService(ACTIVITY_SERVICE); ...
0
votes
2answers
629 views

How does process killing work in android?

I used advanced task killer (many other task killer) to kill processes in my android phone, most of the cases do work, but sometimes I find you kill the process in task killer doesn't mean the process ...
0
votes
1answer
417 views

Taskkill an untitled process?

So I'm using the taskkill.exe which comes with Vista and I want it to do something especially complicated.. There are multiple instances of java.exe running, and I want it to find the one that is ...
0
votes
1answer
912 views

Killing a process with taskkill /F returning code 0

I need to kill a windows process (java.exe). I'm currently using: taskkill.exe /F /IM java.exe I need to use the /F option since is a critical process,but in this way I get a return code 1 instead ...
0
votes
3answers
305 views

taskkill Mysql from .ASPX — Permission Problems?

Our mysql instance occaisionally locks up during backups. Currently we must VPN into the corporate network (to obtain work I.P.), remote desktop into the server, open the task manager, and manually ...
0
votes
4answers
1k views

taskkill from PHP exec

I have just tried to execute this: function kill_hr(){ exec("taskkill /IM uper.exe", $output = array(), $return); print_r($output); echo "<br />".$return; } However, the ...
0
votes
1answer
887 views

task kill command does not work for c# app

I have c# winform bug: when the application is waiting for user input yes/no/cancel taskkill command line does not work. Any idea?
0
votes
2answers
3k views

taskkill in an if condition? [closed]

Has anyone used taskkill on Win XP in an if condition? I want to use it as a watchdog to restart a program in case it leaks memory and grows too big by adding it in an unending loop. For example with ...
0
votes
4answers
4k views

Safely kill a process from .bat file

I have a VB6 application that needs to update it's self. For this purpose, the PM has recommended using a batch file that is to be launched from the application. The batch file should kill the ...