3

I'm running windows 7. Every 10 seconds, a script will run that will send a popup command line box and close at the end of the script.

In the meantime, when I'm using other applications, I am continuously interrupted by the poppups, which seizes focus away from my current application.

Is it possible to disable the focus of the popup command line boxes so that they will still appear but stay in the background ?

4
  • 1
    Is this your script?
    – Kylotan
    Commented Jul 31, 2010 at 10:58
  • sounds like a serverfault question. Commented Jul 31, 2010 at 11:03
  • If there's no good reason for those to be popping up (like Kylotan said, is it your script? Or are you on a corporate network?), then you may have a virus. Commented Jul 31, 2010 at 11:29
  • I've had this before working on corporate machines - very annoying. Shame Windows doesn't do stuff nicely in the background like a *NIX box with cron would..
    – Dentrasi
    Commented Nov 10, 2010 at 1:28

1 Answer 1

2

First, is this your script?

If so:

  • Consider running the program with hstart. It hides the console Window, preventing anybody from seeing it. Note that its best to use some kind of log file since errors won't show up either.

If not:

  • Check your scheduled tasks and see if there is anything that runs very frequently and delete it. Next, do a virus scan. See if you can spot the process in task manager or System Explorer.
1
  • Absolutely agree. No script (especially not one running that frequently) should be running in a console window for the interactive user. Commented Nov 9, 2010 at 23:31

You must log in to answer this question.