bat file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a batch file that will either, run and not display the cmd screen or close the minute the batch file starts the program. This is what the file look like now:

@echo off
copy c:\pb4\timemgmtsheri.ini c:\pb4\timemgmt.ini
h:\ais\time32\timemgmt.exe

Thanks
 
KK0213 said:
I am trying to create a batch file that will either, run and not display the cmd screen or close the minute the batch file starts the program. This is what the file look like now:

@echo off
copy c:\pb4\timemgmtsheri.ini c:\pb4\timemgmt.ini
h:\ais\time32\timemgmt.exe

Hi

Try this:

start.exe h:\ais\time32\timemgmt.exe
 
Back
Top