home *** CD-ROM | disk | FTP | other *** search
/ Multimedia Studio Effects / MULTIMEDIA.ISO / _debug / 3.bat < prev    next >
DOS Batch File  |  1995-05-15  |  420b  |  26 lines

  1. @echo off
  2. rem Kill ini file in c:\windows
  3.  
  4.  
  5.  
  6. rem check for dir
  7. if not exist c:\windows\nul goto nodir
  8.  
  9. rem check for file
  10. if not exist c:\windows\mmplus.ini goto nofile
  11.  
  12. Echo Deleting C:\WINDOWS\MMPLUS.INI ...
  13. del c:\windows\MMplus.ini
  14. Echo Success!
  15.  
  16. goto exit
  17.  
  18. :nodir
  19. Echo The Directory: C:\WINDOWS does not exist.
  20. goto exit
  21.  
  22. :noFile
  23. Echo The file: C:\WINDOWS\MMPLUS.INI does not exist.
  24.  
  25. :exit
  26.