home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- REM CSA.BAT - Version 3.10.101
- ECHO.
- ECHO CSA - Clear Stacvol Attributes
- ECHO.
- ECHO This program will remove the SYSTEM, HIDDEN, READ/ONLY attributes
- ECHO from ALL Stacvol files on drive %1 These attribues will automatically
- ECHO be replaced when the Stacvol files are re-mounted at Startup.
- ECHO.
- IF "%1"=="" GOTO DRVLTR
- PAUSE
- ATTRIB -R -S -H %1\STACVOL.*
- ECHO.
- GOTO END
-
- :DRVLTR
- ECHO Please retype the command followed by the drive letter where the STACVOL
- ECHO file(s) are located. For example, CSA C:
- ECHO.
- GOTO END
-
- :END
-