Skip to main content

All Questions

Tagged with
-1 votes
0 answers
17 views

Cannot kill process which ocupying the port 8080 after executing "kill" cmd

I cannot kill the process that ocupying the port 8080. After I find the current process which takes the 8080 and kill it, it shows that there is another process would take the 8080. First I try the ...
Cathy's user avatar
  • 1
0 votes
0 answers
16 views

Kill mouse event

I am wondering is there a way with Python that we can detect process that use a click event so we can kill them. That would help in the step of an anti cheat I asked my friend if he can code something ...
N3woX's user avatar
  • 1
0 votes
0 answers
29 views

.NET Process.OutputDataReceived still receiving data after unsubscribe the Event Handler and Kill the Process

Please. I need to read data from a process asynchronously because sometimes data is received indefinitely and cannot be read synchronously. When I have read enough characters, I unsubscribe from the ...
antonio 's user avatar
0 votes
0 answers
72 views

The process of JVM was killed by an unknown reason

In the production environment。The process of JVM was killed by an unknown reason. jdk_version:dk1.8.0_66 add jvm params: XX:+UseG1GC -Xmx10g -Xms10g -XX:ErrorFile=/opt/log/error.log -XX:+...
jinshun kang's user avatar
0 votes
0 answers
58 views

Node.js process.kill() is not killing a child process on Windows OS

I want to kill a child process created using spawn in Node.js Its working fine on Linux OS var spawn = require('child_process').spawn; var child = spawn('kate', {detached: true}); // to open Kate ...
Alok's user avatar
  • 9,242
0 votes
1 answer
77 views

App Kill specific app by package name, clear its cache and Run the app again

I'm getting crazy while trying to make an app that will kill specific other app clear the killed app cache restart the killed app again for Android TV 10 lets call this app "the killer app"...
Dexter's user avatar
  • 1
0 votes
1 answer
3k views

How I can disable daemons / services (that run and that I can't kill) in Mac OS X

I want to kill a process on MacOS but after kill -9 PID it starts immediately.
Hermann Schwarz's user avatar
0 votes
0 answers
121 views

PowerShell, How to stop a specific script that is running?

I have a script running in AutoHotkey called BasicTools.ahk; it is process that runs under autohotkey.exe. When I run Get-Process it only shows me instances of Autohotkey so I have no way to isolate ...
YorSubs's user avatar
  • 3,742
0 votes
0 answers
50 views

Stop a running script in python3 from another script

I have 2 scripts - one is running and when I press a button, a second script is launched. That is working; but I would like to kill that second script when I release the button again. The killing of ...
JSTAL's user avatar
  • 15
1 vote
2 answers
601 views

How to safely close another application that has an exit popup without using process.Kill()

I have an application that I would like to close from my current C# application. The problem is that the application I want to close has an exit confirmation that requires the user to confirm the ...
Lumps's user avatar
  • 13
-1 votes
1 answer
893 views

how to kill all process of aws unsing linux command?

my EC2 system has got 100 % CPU utilization.So I need to find which commands are running in the background. So that I can kill all the running services of AWS. What is the Linux command for this?
ashique's user avatar
  • 1,167
0 votes
0 answers
67 views

main process --> pthread --> fork --> lets the forked process run and kill main

Process A should start process B and then terminate. Process B should continue as an independent process please have a little mercy on me - i am trying to educate myself and i like to learn more int ...
oemer_1907's user avatar
0 votes
0 answers
133 views

C# : Killing a specific file opened and not all instance

I'm trying to open an excel file in my application via Process. When the form is closed I want to close that file automatically . The issue that I'm facing is even if I specify the PID process of the ...
KiraKo's user avatar
  • 129
0 votes
1 answer
639 views

waiting once after sending kill signal to multiple processes?

So I'm working on a project for one of my programming classes, and part of this assignment is about being able to launch process in the background, and being able to kill them when the user types &...
TheEpicPotato's user avatar
3 votes
2 answers
2k views

Child process should not die with parent process

The following scenario: process_1.bin starts doSomeThing.sh doSomeThing.sh should kill process_1.bin first but keep running itself and do some other things I have tried fork, exec, screen, ...
oemer_1907's user avatar

15 30 50 per page
1
2 3 4 5
27