home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t172 / 1.img / TOOLS / CSA.BAT next >
Encoding:
DOS Batch File  |  1993-05-19  |  567 b   |  24 lines

  1. @ECHO OFF
  2. CLS
  3. REM  CSA.BAT - Version 3.10.101
  4. ECHO.
  5. ECHO CSA - Clear Stacvol Attributes
  6. ECHO.
  7. ECHO This program will remove the SYSTEM, HIDDEN, READ/ONLY attributes
  8. ECHO from ALL Stacvol files on drive %1  These attribues will automatically
  9. ECHO be replaced when the Stacvol files are re-mounted at Startup.
  10. ECHO.
  11. IF "%1"=="" GOTO DRVLTR
  12. PAUSE
  13. ATTRIB -R -S -H %1\STACVOL.*
  14. ECHO.
  15. GOTO END
  16.  
  17. :DRVLTR
  18. ECHO Please retype the command followed by the drive letter where the STACVOL 
  19. ECHO file(s) are located.  For example, CSA C:
  20. ECHO.
  21. GOTO END
  22.  
  23. :END
  24.