home *** CD-ROM | disk | FTP | other *** search
/ Strictly Windows / STRICTLY.ISO / _debug / 3.bat < prev    next >
Encoding:
DOS Batch File  |  1995-04-28  |  424 b   |  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\WINplus.ini goto nofile
  11.  
  12. Echo Deleting C:\WINDOWS\WINPLUS.INI ...
  13. del c:\windows\WINplus.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\WINPLUS.INI does not exist.
  24.  
  25. :exit
  26.