Simple tool that closes a specific process at any given time.
- Windows Operating System
- Understanding of process names
In version 0.0.2; a process list was introduced to show all running processes in a list that can be called.
[Powershell / Manual Method]
- Open powershell as administrator
- Run the following command.
In this example, I am searching for the Discord process running. Keep the * before the name.
get-process | Where-Object {$_.processname -Like "*Discord"} | select ProcessName