does the error continuously pop up forever? or only for a certain amount of time or popups?
you could have it loop with a sleep of around 100 that detects when the popup exists, then closes it after.
what to do:
find the title of the popup window, make sure it's not a variable name in the title. if it is a specific title, great.
use:
Code:
IfWinExist, titleOfAntivirusPopup
If necessary, (to make sure you find the right window) add a comma after this code and include some text IN the window that will always show up. i.e. the name of the file or error or warning.
so you could use:
Code:
SetTimer, loopAV, 150 ;(timeTillRelaunchOfLoopAV)
return
loopAV:
IfWinExist, Data Execution Prevention - Microsoft Windows
WinKill, Data Execution Prevention - Microsoft Windows
return
^!H:: ; press CTRL-ALT-H to shutdown script
ExitApp
NOTE: this should work if memory serves me right, and the cpu usage isn't bad. i have code somewhere to do something similar, so if this doesn't bring down the cpu usage...holler back and i'll check it out.
this code was not tested.