Search found 2 matches

by yoann56
26 Jul 2010 06:13
Forum: DOS Batch Forum
Topic: In line command (Processus startup postponed)
Replies: 3
Views: 5427

Re: In line command (Processus startup postponed)

I have just try to lauch excel with a 60 seconds delay but it returns me : C:\program Files\Microsoft Office\Office12>@sleep 60 && excel.exe 'sleep' is not recognized aas an internal or external command, operable program or batch file. Is there anothere way ? Thanks for your answer Yoann
by yoann56
26 Jul 2010 05:38
Forum: DOS Batch Forum
Topic: In line command (Processus startup postponed)
Replies: 3
Views: 5427

In line command (Processus startup postponed)

Hi I have this batch file : sleep 60 cd D:\PM10\DEBUG\ START CEMeasAvg.exe 127.0.0.1 D:\PM10\Ce_LHC8.txt Is it possible to write it in-line, something like ? D:\PM10\DEBUG\START CEMeasAvg.exe 127.0.0.1 D:\PM10\Ce_LHC8.txt /T,60 In fact, I just want to postponed of 60 seconds, the process startup. Th...