home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo **********************************************************************
- echo * Stacker data collection in progress... *
- echo * *
- echo * (If the message "Abort, Retry, Fail?" appears, press F.) *
- echo **********************************************************************
- rem =========================================================================
- rem SINFO.BAT - Version 2.00, Stac Technical Support Info Extractor
- rem =========================================================================
- rem
- rem Purpose: To aid Stac Technical support by extracting vital Stacker
- rem information from the user's system without the user
- rem requiring any advanced Stacker or PC knowledge.
- rem
- rem Assumptions: The batch file MUST be run from the 'STACKER' directory
- rem on the Stacker drive.
- rem
- rem Parameters: none
- rem
- rem =========================================================================
- rem
- rem Extract the following info from the system and put it in a
- rem text file:
- rem
- rem DOS version
- rem Stacker version and drive map
- rem CONFIG.SYS file contents
- rem AUTOEXEC.BAT file contents
- rem List each drive and STACVOLs found
- rem Windows SYSTEM.INI (if it exists)
- rem
- rem =========================================================================
- echo **** DOS VERSION: > sinfo.txt
- ver >> sinfo.txt
- echo ------------------------------------------------------------->> sinfo.txt
- echo *** STACKER COMMAND INFO: >> sinfo.txt
- echo . >> sinfo.txt
- stacker >> sinfo.txt
- echo . >> sinfo.txt
- echo ------------------------------------------------------------->> sinfo.txt
- echo *** CONFIG.SYS FILE: >> sinfo.txt
- echo . >> sinfo.txt
- type c:\config.sys >> sinfo.txt
- echo ------------------------------------------------------------->> sinfo.txt
- echo *** AUTOEXEC.BAT FILE: >> sinfo.txt
- echo . >> sinfo.txt
- type c:\autoexec.bat >> sinfo.txt
- echo . >> sinfo.txt
- echo ------------------------------------------------------------->> sinfo.txt
- echo *** STACVOL FILEs: >> sinfo.txt
- findvol >> sinfo.txt
- echo . >> sinfo.txt
- echo ------------------------------------------------------------->> sinfo.txt
- if exist c:\windows\system.ini goto dosysini
- echo *** NO WINDOWS SYSTEM.INI FILE. >> sinfo.txt
- goto editinfo
- :dosysini
- echo *** WINDOWS SYSTEM.INI FILE >> sinfo.txt
- echo . >> sinfo.txt
- type c:\windows\system.ini >> sinfo.txt
- rem
- :editinfo
- echo ------------------------------------------------------------->> sinfo.txt
- echo . >> sinfo.txt
- echo *** END OF STACKER INFO FILE *** >> sinfo.txt
- sedit sinfo.txt
- cls
-