Hi, I have set up a After run batch command to delete .bak files in Events. Like below.
However I am unable to run it silently i-e appearing black cmd window.
Can someone advice me how can I run it in invisible mode.
Thanks,
Mohit
Try to put @echo off at begging of your bat file?
@echo off prevents the prompt and contents of the batch file from being displayed, so that only the output is visible.
The @ makes the output of the echo off command hidden as well.
@Qiu sorry..no luck
What's the use of /s /q /f in your bat file?