stefansundin / superf4

:file_folder: Kill programs instantly with Ctrl+Alt+F4. (Windows)
https://stefansundin.github.io/superf4/
GNU General Public License v3.0
660 stars 39 forks source link

Can't kill "not responding" apps #38

Open ghost opened 4 years ago

ghost commented 4 years ago

Hi, I've been using this software and I find it useful. One problem, I cannot kill the app that is not responding (I've tried xkill / TimerCheck / with admin), only way to properly force close is launch Task Manager and kill this process. I'm guessing the SuperF4 thinks that unresponsive window is "inactive" which cannot be killed? I'm using SuperF4 1.4 on Windows 10.

I have an idea for improvement - use the Alt+Tab method to easily kill the app process while the window (including the unresponsive one) is highlighted then hit F4, here's an example of using Alt+Tab and Del to close the highlighted window.

mainrs commented 4 years ago

Wouldn't the inclusion of this feature be redundant? It's already supported on Windows anyway.

Edit: Looks like it only is supported on the newest version though...

Mobulos commented 4 years ago

It's not possible because windows freezes that program and no application can access it, while it's not responding. If u click “wait for the program” it should work.

fuck-shithub commented 3 years ago

If I have SuperF4 elevated, trying to kill not responding apps will kill my display driver.

nazibalalam commented 3 years ago

The windows error reporter instantly pops up when I press Ctrl. I can't close the error reporter, nor can I normally close the fullscreen app with alt+F4. Maybe if there was an option to change the combination key?

wefalltomorrow commented 3 years ago

If I have SuperF4 elevated, trying to kill not responding apps will kill my display driver.

Yup, can report the same issue on my side.

ghost commented 2 years ago

When I want to kill a application, most of the time it's not responding. It would be good if we had ability to kill the not responding apps.

AromaKitsune commented 2 years ago

Alright, I found the solution, we can use AutoHotkey to kill the unresponsive apps.

The hotkey is Ctrl+Shift+Alt+F4

^+!F4::
Run, taskkill.exe
/F /FI "status eq NOT RESPONDING"
/FI "IMAGENAME ne AltSnap.exe"
/FI "IMAGENAME ne dwm.exe"
/FI "IMAGENAME ne explorer.exe"
,,hide

^ = Ctrl + = Shift ! = Alt ne = Exclude process from being terminated, it's safe to run taskkill as admin without killing DWM ,,hide = Don't show cmd window