Tagged Questions
The kill-process tag has no wiki summary.
15
votes
3answers
588 views
Guarantee code execution even on process kill
I need to execute a portion of code (the state save) on the process stopping - by itself, by user, by task manager, etc.
Is it possible?
try {} finally {}, AppDomain.ProcessExit, IDisposable, ...
11
votes
2answers
441 views
How do task killers work?
The usefullness of "task killer" apps is debated, but I'm wondering: how do they actually work? How is it possible to kill particular process?
Is there an API for this, and if so what does it ...
8
votes
2answers
868 views
Does the Android OS release a wakelock if the app or service holding it is killed?
I have question about wakelock. In cases shown below, does android OS release wakelock (PARTIAL_WAKE_LOCK if you need to specify) to prevent wakelock was left acquired and wasting battery until ...
5
votes
4answers
165 views
Python subprocess killing
I have problem killing sub processes. The following piece of code is used for creating the sub process-
while(not myQueue.empty()):
p=Popen(myQueue.get(),shell=True,stdin=PIPE,stderr=PIPE)
...
5
votes
3answers
3k views
'Exiting' (ctrl+c) a process from console - Eclipse vs Intellij
It seems that in Eclipse, if you want to send ctrl+c to a process you cant.
The terminate button on the console just kills the running process without running the shutdown hooks. I know that java ...
3
votes
2answers
408 views
Android: How to force restart service (OS killing on low memory behavior)
I have a background service running that sometimes gets killed by the OS when running low on memory. There are some weird behaviors when this happens but I do not know (1) how to simulate this ...
2
votes
2answers
67 views
Is there any indication when Android kills a service?
I have a service running in its own process. It appears fine in the evening, but after I've gone to sleep I think Android takes its axe to it.
Am I right in thinking that onDestroy() won't be called ...
2
votes
3answers
144 views
Run a sql query with a timeout in PHP or How in PHP, to stop a sql query once already begun?
I read the documentation for oci_cancel but it seems to me a bit fuzzy.
Does oci_cancel kill the sql process in the server?
If not, how can I make a script that executes a sql query, waits a moment ...
2
votes
1answer
65 views
Kill A ATL COM Process Under SYSTEM Account?
I have a .NET Winddows service which runs under the Local System account. This service then runs a COM component that was written in ATL on Visual Studio 6 using COM Interop. This COM component then ...
2
votes
3answers
524 views
Android kill process from broadcast receiver
Hi i'm looking to kill an activity in my application when the usb is disconnected i have a broadcast receiver and all set up and working fine
public class USBOff extends BroadcastReceiver {
...
1
vote
1answer
29 views
Checking killed processes on Linux
I found a couple of processes killed on a server running Debian. I can confirm that the machine was not restarted. I was wondering if there was a way to check the killed processes on the machine.
I ...
1
vote
0answers
31 views
What does Force Quit do in OS X? [closed]
I've been using OS X for quite a while. However I'm relatively new to using the Terminal and command line in *nix-based operating systems. I'm reading about the Unix kill command.
Does Force Quit ...
1
vote
2answers
714 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
3answers
667 views
Programmatically open and close firefox
I need to open Firefox from my console app, do stuff with it, and then shut it down a few minutes later.
I'm using Process.Start("firefox.exe", "myurl"); to open firefox, which isn't a problem. The ...
1
vote
3answers
711 views
How to terminate a process
I am creating a process using proc_open in one PHP script.
How do i terminate this in another script . I am not able to pass the resource returned by the proc_open.
I also tried using ...
1
vote
3answers
2k views
signal when user kills process?
I overloaded the 6 signals listed on this site http://www.cplusplus.com/reference/clibrary/csignal/signal.html
Then i ran my app (double click not ran through IDE) and tried 1) end task 2) X on ...
0
votes
0answers
16 views
Ending a specific wget instance
My VBA program is a GUI for wget that functions by running a shell command that opens up a new wget instance for every job that the user wants to run.
Shell myCmd, 3 (myCmd being the variable that ...
0
votes
2answers
23 views
Stopping Clustered Index script
I have a loooooong running script that us generating a clustered index on a 77M row - 20GB table.
I need to query this data so I want to stop the Index Generation and resume it in the night.
Is it ...
0
votes
3answers
53 views
Is there any way to kill my app, other than android.os.Process.killProcess and Sytem.exit(0)?
I have a problem with my app. I really need to kill it when user clicks "Exit". I've tried both methods listed in the question header, and here's the problem: I have a persistent (foreground) service ...
0
votes
1answer
64 views
How to move other applications to background on startup
I am new to android. I am trying to write a app which will send all the other apps to background at their start up and then afterwards kill them.I tried to use moveTaskToBack(true) but this send my ...
0
votes
1answer
195 views
How to end a process using inno setup?
I want to kill a process using inno setup.i want to check whether the window is open before i start installing the setup.
can i do this by searching windows name?
please help me with some sample ...
0
votes
4answers
254 views
Kill parent process without administrator rights
How can I kill the parent process without administrator rights? Process A creates process B, and in process B I need to kill process A.
0
votes
0answers
14 views
Get the number of times a user kills the browser window
Is there any way to get the number of times a user kills a particular window?
We open a window using window.open() in JavaScript. I need to count the number of time it gets open and store it in a ...
0
votes
2answers
73 views
kill remote job initiated by invoke-command
what is the easy way to kill remote job initiated by invoke-command with background processes?
I kick remote PS script to run legacy exe file and need a way to kill that process.
I was going to use ...
0
votes
1answer
106 views
Is it necessary to use Process.WaitForExit after Process.Kill?
Is it necessary to use Process.WaitForExit after Process.Kill?
What if the calling process exits right after it calls Process.Kill?
Would this cause Process.Kill to fail?
Edit: I need to kill a ...
0
votes
1answer
155 views
How do I kill a remote process without being on the administrator group using wmi?
What is the least level of privilege required for remotely killing a process on a Windows machine using wmi from c#?
Currently, I am using an account in the administrators group on the target ...
0
votes
3answers
154 views
Android app: What is running in background?
I are almost finish developing a Android App. I use the GPS location and sms recive class. I can see that if i press "HOME"(the house), some of it are still running. I will like to make the listner on ...
0
votes
2answers
194 views
Convert xls to csv or kill EXCEL.exe process
I have an application which automates a reporting system originally based off DTS packages. The web based app is currently writing the output xls file to another server on the network. I am ...
0
votes
2answers
208 views
Getting a node.js process to die?
I'm trying to find the most elegant way for my node.js app to die when something happens. In my particular case, I have a config file with certain require parameters that have to be met before the ...
0
votes
0answers
17 views
App does not get set to NotRunning state
In my viewconroller object I've subscribed to UIApplicationDidEnterBackgroungNotification. In the applicationDidEnterBackground method I've written this:
-(void)applicationDidEnterBackground{
...
0
votes
0answers
151 views
Kill a process spawned by Open3.popen2
How do I terminate a process started by Ruby 1.9's Open3.popen2? On Linux, Process.kill wait_thr.pid only terminates the wrapping shell process ... leaving the actual process running.
The below ...
0
votes
1answer
116 views
How can I kill a process in both Windows and Linux?
Is there easy way to kill a process using its process ID (pid_t in Linux and PROCESS_INFORMATION::dwProcessId in Windows)?
0
votes
0answers
671 views
How to kill other apps?
How can I kill other applications? I can launch other applications using intents but can't find a way to kill them.
This launches the application:
Intent i = new Intent();
...
0
votes
1answer
303 views
find and delete resource files using batch file
I have never written a batch file so please bear with me.
I want to find resource file from current working directory of batch file. If it exist then i have stop aspnet_wp.exe process(if running) and ...
0
votes
1answer
893 views
Exit code of a process terminated with Process.Kill() , in C#
If in my C# application, I am creating a child process that can either terminate normally, or start misbehaving, in which case I terminate it with a call to Process.Kill().However, I would like to ...
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 ...