Just an easy solution about the problem of application running in Windows with the "Not Respondig" message.
The common solution is start the Task Manager and kill manually the task with frozen application.
Here a tool that find a Not Responding application and automatically close any "Not Responding" applications without any user interaction.
The .bat script is really easy :
@echo off
taskkill.exe /f /fi “status eq not responding”
exit
OS supported: Winodws XP , 7 and 8
Let me know if you have questions.