Kill this file wwahost.exe and all apps will close and return to desktop
create a .bat file pasting either of two codes below in Notepad and saving as .bat. Create a desktop shortcut and give a keyboard shortcut (for example I have given F2 so I can kill them all with one click)
Have fun !
create a .bat file pasting either of two codes below in Notepad and saving as .bat. Create a desktop shortcut and give a keyboard shortcut (for example I have given F2 so I can kill them all with one click)
Code:
pskill -t wwahost.exe
Code:
@echo off
taskkill /f /IM wwahost.exe
Have fun !