“FEHLER: Die Eingabeumleitung wird nicht untersttzt. Prozess wird unverzglich beendet.”
did something change in exexutor behaviour? why am I getting this error.
starting my watchdog from commandline works as expected. when starting with executor it seems to close with the application.
I copied the entire content of the executor patch into my own one and set the flag that Tebjan mentioned to true. Then, when I try to execute my bat file it throws this error.
TBH IDK if this ever worked. I build this watchdog functionality as fallback with gamma 2021.4.7 but never actually used it. I tested the bat file 2021 but I think I did not check if it runs when started from gamma.
I revisited this problem, but could not make it work yet.
The BAT file works for me as intended, when launched from CMD ( throws no error and reboots the machine)
I tried executing it with executor; With and Without the “SetShellExecute” enabled.
In both cases it runs, the messages I get are the same as fromwithin CMD.
But when I close Gamma, the BAT process seems to close with it - no reboot.
I think he starts a watchdog when vvvv first starts, from within vvvv (which checks if vvvv is running from then on). And then it needs to keep running, while being detached from the lifetime of vvvv.
Yes, I use gamma for generating a custom watchdog, then start it with executor. I fixed it by starting a new instance of the same batch file from within my script:
@echo off
setlocal EnableExtensions EnableDelayedExpansion
if “%~1”==“min” goto :BEGIN
start “” /min “%~f0” min
exit /b
this works for me, also when vvvv is started from task scheduler