a simple problem with a win dos line cmd

reble

Honorable
Nov 14, 2013
62
0
10,640
I made a simple bat file (see the bat file below) to delay the start of one prog that auto starts in windows startup. The bat file does what it is supposed to do except for 1 thing. After the bat file has done the cmd it doesn't close the dos cmd prompt window. I have tryed "exit and end" at the end but nothing I have tried will auto close the dos cmd prompt window. I end up doing it manually. Does anyone know how to fix the bat file so it will auto close the window, or run the bat file without the dos line cmd window been open period.

@echo off
rem 2 minutes delay on start of LCARS shell
timeout delay /120
start cmd /c "c:\lcars\lcars system\lsystem.exe"
exit

Steve