I found a trick to solve the problem:
at the and of the script, add the command line:
Sh.SendKeys("%")
It re-activates the focus on the window I was using before the script started.
Мне нужно автоматически обновлять рабочий стол каждые 10 минут.
Единственный полностью работающий способ, который я нашел, это использование этого кода VBS.
Sh.AppActivate "Program Manager"
Sh.SendKeys("")
Но при этом активное окно становится рабочим столом.
Мне нужно повторно активировать фокус на окне, которое я использую, до запуска скрипта.
I found a trick to solve the problem:
at the and of the script, add the command line:
Sh.SendKeys("%")
It re-activates the focus on the window I was using before the script started.
I need to re-activate the focus on the window I am using before the script starts.
For instructions on that, see StackOverflow: How to find the window Title of Active(foreground) window using Window Script Host