RealtimeSync - minimised command

Get help for specific problems
Posts: 2
Joined: 17 Jul 2018

speedyDragon

I am using the excellent RealtimeSync program to execute a DOS batch file. I would like the batch file to be executed silently, or minimised.
Is it possible?

So far I have almost achieved this by using an interim bat file to START another minimised command window using something like:

::runMin.bat
set command=xx
start "Title" /MIN %command%
::end runMin.bat

...but this still flashed up the interim window for a brief moment each time it is executed.
Normally this is no so bad but sometimes (like for example renaming a file in explorer) the temporary loss of 'focus' means actions are cancelled/entered etc.
Posts: 2
Joined: 17 Jul 2018

speedyDragon

Works fine, Thanks!