Solved Taskkill RSSGuard Issue


Feuer

Fatal Error
Power User
VIP
Local time
10:20 AM
Posts
314
Location
Türkiye
OS
Windows 11 25H2 Home Single Language (26200.8037)
Hello,
I am having a strange issue on Windows 11 25H2 with a portable app (RSSGuard). The main problem is that when I close the application, it remains stuck in the Task Manager process list (as a "zombie" or ghost process) and I cannot remove it using the command line.

The Problem:
  • When I exit the app, it doesn't actually disappear; it stays in the task list indefinitely.
  • I can kill the process manually by clicking "End Task" in the Task Manager GUI. This works every time.
  • However, Command Line tools fail. Running taskkill /F /IM rssguard.exe returns: "ERROR: The process... could not be terminated. Reason: There is no running instance of the task."
  • PowerShell Stop-Process and NirCmd also fail to remove the process, even though Task Manager clearly shows it as "Running."
  • Because it stays in the task list, the folder remains locked ("Folder in use"), preventing me from moving or renaming it until I use the Task Manager GUI to kill it.
System Environment:
  • OS: Windows 11 Version 25H2
  • App: Portable version of RSSGuard
  • Context: I use over 100 other portable apps without this issue; only RSSGuard fails to exit the task list and ignores command-line kill signals.
Methods Attempted that FAILED:
  1. taskkill /F /T /IM rssguard.exe (Returns "No running instance").
  2. Stop-Process -Name "rssguard" -Force (No effect).
  3. nircmd.exe killprocess rssguard.exe (No effect).
Why is the Task Manager GUI able to see and kill this process, while the Admin Command Line claims it doesn't exist? I need a way to automate this via script so I don't have to manually open Task Manager every time I close the app.

SS_20260509_11412480.webp
 

My Computer My Computer

At a glance

Windows 11 25H2 Home Single Language (26200.8...Intel Core i3-1115G48GBon-board
OS
Windows 11 25H2 Home Single Language (26200.8037)
Computer type
Laptop
Manufacturer/Model
LENOVO IdeaPad 5 15ITL05
CPU
Intel Core i3-1115G4
Motherboard
There is no such a God, I only know mother-Earth
Memory
8GB
Graphics Card(s)
on-board
Sound Card
on-board
Monitor(s) Displays
(s) is too ambitious for me
Screen Resolution
1920*1080
Hard Drives
256GB (SSD)
PSU
I was very young when I last saw a PSU
Case
...
Cooling
My coldness is enough to cool the computer
Keyboard
A broken and very clean keyboard
Mouse
Rat
Internet Speed
Slowest internet connection in Europe
Browser
ChromePortable / FirefoxPortable / TorBrowser
Antivirus
G-Virus
Other Info
I can simply say that I took the red pill and I am not happy with it.
I certainly did not know but here's AI's answer.Maybe it will be of benefit.

RSSGuard gets stuck in Task Manager but taskkill, PowerShell, and NirCmd all report “no such process,” that means the process has fallen into a state where the Win32 layer can’t see it anymore. That’s why scripts can’t touch it — but Task Manager still can.

Here are the only reliable ways to terminate it:

1. Use Process Hacker (with its kernel driver enabled)

Process Hacker’s “Terminate” and “Terminate Tree” use the same low‑level NT API that Task Manager uses.This will kill the stuck RSSGuard process even when taskkill can’t.

Steps:
  1. Install Process Hacker
  2. Enable the KProcessHacker driver (Options → Advanced → Enable Kernel Mode Driver)
  3. Right‑click rssguard.exe → Terminate
This works because it bypasses the Win32 API layer entirely.

2. Use Sysinternals Process Explorer
Process Explorer can also kill processes using lower‑level calls.

Steps:
  1. Run Process Explorer as admin
  2. Find rssguard.exe
  3. Right‑click → Kill Process
If the process is in a “ghost” state, Process Explorer will still be able to remove it.


3. Use PsKill (Sysinternals)

PsKill sometimes succeeds where taskkill fails because it uses different internal calls.


pskill rssguard.exe
Not as strong as Process Hacker, but worth trying.

4. Last‑resort workaround: restart Explorer
If the stuck process is locking the folder, restarting Explorer will often release the handle:

Code

taskkill /F /IM explorer.exe<br>start explorer.exe
This doesn’t kill RSSGuard itself, but it frees the folder so you can move/delete/update it.


Important Note

There is no scriptable method (CMD, PowerShell, NirCmd, etc.) that can kill a process once it drops out of the Win32 process table. Only tools that call the native NT kernel API can terminate it — which is why Task Manager always works.

If you need automation, the only option is:
5. Use Process Hacker’s command‑line tool (ph.exe)
Example:
ph.exe terminate rssguard.exe
This uses the same NT‑level termination as the GUI.
 

My Computers My Computers

  • At a glance

    Windows 11 Pro 25H2 26200.8655i9-10900 10 core 20 threads32 gbnone-Intel UHD Graphics 630
    OS
    Windows 11 Pro 25H2 26200.8655
    Computer type
    PC/Desktop
    Manufacturer/Model
    Dell Optiplex 7080
    CPU
    i9-10900 10 core 20 threads
    Motherboard
    DELL 0J37VM
    Memory
    32 gb
    Graphics Card(s)
    none-Intel UHD Graphics 630
    Sound Card
    Integrated Realtek
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    2x1tb Solidigm m.2 nvme /External drives 512gb Samsung m.2 sata+2tb Kingston m2.nvme
    PSU
    500w
    Case
    MT
    Cooling
    Dell Premium
    Keyboard
    Logitech wired
    Mouse
    Logitech wireless
    Internet Speed
    so slow I'm too embarrassed to tell
    Browser
    #1 Edge #2 Firefox
    Antivirus
    Defender+MWB Premium
  • At a glance

    Windows 11 Pro 24H2 26200.8457AMD Ryzen 7 6800U32 gbintegrated
    Operating System
    Windows 11 Pro 24H2 26200.8457
    Computer type
    PC/Desktop
    Manufacturer/Model
    Beelink Mini PC SER5
    CPU
    AMD Ryzen 7 6800U
    Memory
    32 gb
    Graphics card(s)
    integrated
    Sound Card
    integrated
    Monitor(s) Displays
    Benq 27
    Screen Resolution
    2560x1440
    Hard Drives
    1TB Crucial nvme
    Keyboard
    Logitech wired
    Mouse
    Logitech wireless
    Internet Speed
    still too embarrassed to tell
    Browser
    Firefox
    Antivirus
    Defender
    Other Info
    System 3 is non compliant Dell 9020 i7-4770/24gb ram Win11 PRO 26200.8457
I certainly did not know but here's AI's answer.Maybe it will be of benefit.

RSSGuard gets stuck in Task Manager but taskkill, PowerShell, and NirCmd all report “no such process,” that means the process has fallen into a state where the Win32 layer can’t see it anymore. That’s why scripts can’t touch it — but Task Manager still can.

Here are the only reliable ways to terminate it:

1. Use Process Hacker (with its kernel driver enabled)

Process Hacker’s “Terminate” and “Terminate Tree” use the same low‑level NT API that Task Manager uses.This will kill the stuck RSSGuard process even when taskkill can’t.

Steps:
  1. Install Process Hacker
  2. Enable the KProcessHacker driver (Options → Advanced → Enable Kernel Mode Driver)
  3. Right‑click rssguard.exe → Terminate
This works because it bypasses the Win32 API layer entirely.

2. Use Sysinternals Process Explorer
Process Explorer can also kill processes using lower‑level calls.

Steps:
  1. Run Process Explorer as admin
  2. Find rssguard.exe
  3. Right‑click → Kill Process
If the process is in a “ghost” state, Process Explorer will still be able to remove it.


3. Use PsKill (Sysinternals)

PsKill sometimes succeeds where taskkill fails because it uses different internal calls.


pskill rssguard.exe
Not as strong as Process Hacker, but worth trying.

4. Last‑resort workaround: restart Explorer
If the stuck process is locking the folder, restarting Explorer will often release the handle:

Code

taskkill /F /IM explorer.exe<br>start explorer.exe
This doesn’t kill RSSGuard itself, but it frees the folder so you can move/delete/update it.


Important Note

There is no scriptable method (CMD, PowerShell, NirCmd, etc.) that can kill a process once it drops out of the Win32 process table. Only tools that call the native NT kernel API can terminate it — which is why Task Manager always works.

If you need automation, the only option is:
5. Use Process Hacker’s command‑line tool (ph.exe)
Example:
ph.exe terminate rssguard.exe
This uses the same NT‑level termination as the GUI.

Thanks for the answer.
I have forget about that I've already found solution. PsKill kills the process.
I think There is a bug in RSSGuard, I cannot find any settings like "continue running background when RSSGuard is closed"
But it sometimes it stuck at process list after i disable it.

I prepared a .js file

Code:
var objShell = new ActiveXObject("Shell.Application");

// Kill
objShell.ShellExecute("pskill64.exe", "-t -accepteula rssguard.exe", "", "runas", 0);

// Wait 1 second
WScript.Sleep(1000);

// Play WAV file using SAPI
var oVoice = new ActiveXObject("SAPI.SpVoice");
var oStream = new ActiveXObject("SAPI.SpFileStream");

// Change path to your WAV file
oStream.Open("C:\\Windows\\Media\\ding.wav");
oVoice.SpeakStream(oStream);

// Close the stream
oStream.Close();

So after i disable RSSGuard, i also run that js file to kill process.
 

My Computer My Computer

At a glance

Windows 11 25H2 Home Single Language (26200.8...Intel Core i3-1115G48GBon-board
OS
Windows 11 25H2 Home Single Language (26200.8037)
Computer type
Laptop
Manufacturer/Model
LENOVO IdeaPad 5 15ITL05
CPU
Intel Core i3-1115G4
Motherboard
There is no such a God, I only know mother-Earth
Memory
8GB
Graphics Card(s)
on-board
Sound Card
on-board
Monitor(s) Displays
(s) is too ambitious for me
Screen Resolution
1920*1080
Hard Drives
256GB (SSD)
PSU
I was very young when I last saw a PSU
Case
...
Cooling
My coldness is enough to cool the computer
Keyboard
A broken and very clean keyboard
Mouse
Rat
Internet Speed
Slowest internet connection in Europe
Browser
ChromePortable / FirefoxPortable / TorBrowser
Antivirus
G-Virus
Other Info
I can simply say that I took the red pill and I am not happy with it.
Back
Top Bottom