Summary
I would like to know how to kill every single gradle daemon and process running on a machine regardless of the version of gradle or the vers
Under linux you may use pkill:
pkill -f '.*GradleDaemon.*'
Under windows you may use wmic:
WMIC PROCESS where "Name like 'java%' AND CommandLine like '%GradleDaemon%'" Call Terminate
PS. Why "no scripting" when it is probably the easiest solution?