home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / batch / 1st_boot.zip / TRYIT.BAT < prev   
DOS Batch File  |  1993-11-01  |  153b  |  18 lines

  1. @echo off
  2.  
  3. 1st-boot
  4.  
  5.  
  6. if errorlevel 1 goto foo
  7. echo Not the first time today!   
  8. goto done
  9.  
  10.  
  11. :foo
  12. echo First time run today!
  13.  
  14.  
  15.  
  16. :done
  17.  
  18.