Isso pode ser o que você está procurando:
Do site:
Console applications and batch files are regularly run at Windows startup or in a schedule. The main inconvenience of this is that each application opens a console window that flickers on the screen. Hidden Start (or Hstart) is a lightweight command line utility that allows you to run console applications and batch files without any window in the background, handle UAC privilege elevation under Windows 7 and Vista, start multiple commands in parallel or synchronously, and much more.
Imagens :
Exemplos :
Hstart is usually started by entering the following command line:
hstart /NOCONSOLE "batch_file_1.bat" "batch_file_2.bat" "batch_file_3.bat"
It is possible to redirect the console output of batch files into a log file:
hstart /NOCONSOLE /IDLE /D="E:\Backups"
"cmd.exe /c "MyDailyBackup.bat > backup-log.txt""
The /IDLE command line switch means that the backup process will run with the lowest priority class, and /D="" sets the starting directory of the batch file (required if the command line or script contain relative paths).
Outros recursos (soluções):
- cmdow (algumas vezes detectado como malware pelos AVs
- Como executar um arquivo em lotes sem mostrar
- Windows Xp ou Vista: Como posso executar um arquivo de lote em segundo plano (sem janelas exibidas)?
- Execute um arquivo de lote completamente oculto