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
@mohit9garg
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 . I am using below code but still not working-