I have to run a batch file without showing the command line but the Command line keeps on popping up. This is my code:
@echo off :SAMPLE cd /d C: md %RANDOM
The following sample code works
start cmd /c "some command && exit 0"
The trick is => && exit 0