Quick Death 2023-08-11 12:44
Is it possible via a script to close all apps on the second monitor after 10minutes?
|
Christian Studer 2023-08-12 06:05
Should the script wait 10 minutes then close the apps, or would you want a script which monitors application launches and closes applications after they have been running for 10 minutes?
Christian Studer - www.realtimesoft.com
|
Quick Death 2023-08-15 03:53
Requested to close ALL applications on second monitor only. We have a program on the primary monitor that launches an application on the second monitor. Trying to autoclose only the second monitor application after 10min. It shares the same EXE file, so I am trying not to set it up by name (worried that program will close on both primary and secondary monitor)
|
Christian Studer 2023-08-16 05:32
Does the window on the second monitor have a unique caption/title?
A script could launch your application, then wait 10 minutes and just close that specific window. Or it could close all windows on the second monitor created by the application.
Christian Studer - www.realtimesoft.com
|
Quick Death 2023-08-16 09:02
The windows on the second monitor does have a unique title: 'Edge Presenter'. The EXE opens the program and request after 10min of inactivity the application would close.
|
Christian Studer 2023-08-19 12:59
I have uploaded a script which does this: LaunchAppQD.vbs
To set up the script for your needs, open it in a text editor, then set EXE on line 1 to the name and path of your application's executable, WND_CAPTION on line 2 to Edge Presenter, and WND_CLOSE_DELAY on line 3 to 10.
Christian Studer - www.realtimesoft.com
|
Quick Death 2023-08-21 08:49
I got an error with the script, but I think from the script, _I_ was not clear.
Request VBS to look for a window with WND_CAPTION, when found, wait WND_CLOSE_DELAY then close application and then start again looking for WND_CAPION.
|
Christian Studer 2023-08-21 16:40
The error you get means that the EXE path/file name is wrong.
You don't need the script to launch the application?
Christian Studer - www.realtimesoft.com
|
Quick Death 2023-08-21 16:44
The EXE will be already running.
|
Christian Studer 2023-08-24 06:10
I have uploaded a script which looks for a window with the specified caption, then waits a number of minutes and closes it: CloseWndQD.vbs.
The script keeps running, you don't need to start it again
Christian Studer - www.realtimesoft.com
|
Quick Death 2023-08-24 06:36
THANK YOU!
|