0% found this document useful (0 votes)
171 views1 page

Batch Programming - Start Program With A Delay

It opens four textfiles one by one with the standard windows texteditor and a small delay inbetween. The delay is achieved by putting the ping command here and pinging the virtual loopback address two times. Batch öffnet textdateien programme mit einem delay dazwischen.

Uploaded by

defect122
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
171 views1 page

Batch Programming - Start Program With A Delay

It opens four textfiles one by one with the standard windows texteditor and a small delay inbetween. The delay is achieved by putting the ping command here and pinging the virtual loopback address two times. Batch öffnet textdateien programme mit einem delay dazwischen.

Uploaded by

defect122
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Batch: @echo off echo. 2>file.txt echo. 2>file2.txt echo. 2>file3.txt echo. 2>file4.txt start file.

txt echo You > file.txt ping localhost -n 2 > nul start file2.txt echo have just > file2.txt ping localhost -n 2 > nul start file3.txt echo opened > file3.txt ping localhost -n 2 > nul start file4.txt echo four textfiles > file4.txt echo Press to exit batch pause > nul exit

What it does : It opens four textfiles one by one with the standard windows texteditor and a small delay inbetween. The delay is achieved by putting the ping command here and pinging the virtual loopback address two times.

You might also like