Você poderia tentar algo assim ... Eu não posso testá-lo. Há muitas coisas que podem fazer com que ele não funcione, então você pode precisar experimentar um pouco.
Primeiro inicie o script (ele continuará funcionando) e, em seguida, ative a janela do IE usando F4 ou F10, após o que você verá a dica pop-up e ela deve ser reativada a cada 10 minutos da última vez que foi ativada manualmente.
#NoEnv
#Persistent
winFinacle := "Finacle - Microsoft Internet Explorer ahk_exe IEXPLORE.EXE"
return
#IfWinActive, %winFinacle%
~F4:: ; tilde allows pass-through of the keystroke to the program
~F10::
KeepFinacleActive:
ToolTip Activating Finacle...
sleep 1000
tooltip
; Enable timer to call itself after desired time once user kicks things off with initial key press
SetTimer, KeepFinacleActive, 600000 ; 10min * 60sec/min * 1000ms/sec = 600000
BlockInput, On ; block user input in case this happens in the middle of other user activity
WinActivate, %winFinacle%
WinWaitActive,,,2 ; wait a max of 2 seconds for it to be active
if not ErrorLevel ; if there was no error...
{
sleep 200 ; give IE some nominal time to load (adjust as needed)
SendInput {F10} ; send a keystroke (this will be a duplicate keystroke first time user executes manually)
}
else ; else if we couldn't find the window...
{
tooltip Couldn't find window during attempted activation...
sleep 2000
tooltip
}
BlockInput, Off
return
#IfWinActive ; disable for following commands (if any)