this is a shell for windows to clean all gradle daemon process
copy the following code and save as a bat file and run it. That is all.
@echo off
echo ------------------------------------------
echo Liferay Kill All Gradle Daemon Process Kit
echo ------------------------------------------
for /f %%i in ('call jps^|find /i "GradleDaemon"') do ( echo %%i && taskkill /f /pid %%i )