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.
RealtimeSync - minimised command
- Posts: 2
- Joined: 17 Jul 2018
- Site Admin
- Posts: 7284
- Joined: 9 Dec 2007
Use " HideConsole.vbs": https://freefilesync.org/manual.php?topic=realtimesync
- Posts: 2
- Joined: 17 Jul 2018
Works fine, Thanks!