I'm trying to make a batch that shut down the specific program in specific time if it's open. Something like this:
:start (
  if %time:~0,5% equ 19.45 (
    taskkill /im "WINWORD.exe"
  )  
  goto :start
)
The problem here is that I don't want it to run on the screen nor to be shown in the taskbar, I want it to run like completely hidden.
