When antivir gets its update it will present the computer user with a nag screen.
This script will close this window automatically
use autoit version 3
Put this in a file, compile it (if you want)
And let it run (or put in your startup folder
------------------------
$j=0
while $j=0
sleep(5000)
if winexists("Notifier of AntiVir PersonalEdition Classic Windows") Then
; Sluiten extra window
winActivate("Notifier of AntiVir PersonalEdition Classic Windows")
WinWaitactive("Notifier of AntiVir PersonalEdition Classic Windows")
send("!{f4}")
EndIf
Wend
--------------------------