home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / t / t380 / 1.ddi / SINFO.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-24  |  3.0 KB  |  68 lines

  1. echo off 
  2. echo    **********************************************************************
  3. echo    *                Stacker data collection in progress...              *
  4. echo    *                                                                    *
  5. echo    *       (If the message "Abort, Retry, Fail?" appears, press F.)     *
  6. echo    **********************************************************************
  7. rem =========================================================================
  8. rem SINFO.BAT - Version 2.00, Stac Technical Support Info Extractor
  9. rem =========================================================================
  10. rem 
  11. rem Purpose:      To aid Stac Technical support by extracting vital Stacker
  12. rem               information from the user's system without the user 
  13. rem               requiring any advanced Stacker or PC knowledge.
  14. rem 
  15. rem Assumptions:  The batch file MUST be run from the 'STACKER' directory 
  16. rem               on the Stacker drive.
  17. rem 
  18. rem Parameters:   none
  19. rem 
  20. rem =========================================================================
  21. rem 
  22. rem   Extract the following info from the system and put it in a 
  23. rem   text file:
  24. rem
  25. rem      DOS version
  26. rem      Stacker version and drive map
  27. rem      CONFIG.SYS file contents 
  28. rem      AUTOEXEC.BAT file contents
  29. rem      List each drive and STACVOLs found
  30. rem      Windows SYSTEM.INI (if it exists)
  31. rem
  32. rem =========================================================================
  33. echo **** DOS VERSION:       > sinfo.txt
  34. ver                         >> sinfo.txt
  35. echo ------------------------------------------------------------->> sinfo.txt
  36. echo *** STACKER COMMAND INFO: >> sinfo.txt
  37. echo .                      >> sinfo.txt
  38. stacker                     >> sinfo.txt
  39. echo .                      >> sinfo.txt
  40. echo ------------------------------------------------------------->> sinfo.txt
  41. echo *** CONFIG.SYS FILE:   >> sinfo.txt
  42. echo .                      >> sinfo.txt
  43. type c:\config.sys          >> sinfo.txt
  44. echo ------------------------------------------------------------->> sinfo.txt
  45. echo *** AUTOEXEC.BAT FILE: >> sinfo.txt
  46. echo .                      >> sinfo.txt
  47. type c:\autoexec.bat        >> sinfo.txt
  48. echo .                      >> sinfo.txt
  49. echo ------------------------------------------------------------->> sinfo.txt
  50. echo *** STACVOL FILEs:     >> sinfo.txt
  51. findvol                     >> sinfo.txt
  52. echo .                      >> sinfo.txt
  53. echo ------------------------------------------------------------->> sinfo.txt
  54. if exist c:\windows\system.ini goto dosysini
  55. echo *** NO WINDOWS SYSTEM.INI FILE.  >> sinfo.txt
  56. goto editinfo
  57. :dosysini
  58. echo *** WINDOWS SYSTEM.INI FILE     >> sinfo.txt
  59. echo .                      >> sinfo.txt
  60. type c:\windows\system.ini  >> sinfo.txt
  61. rem 
  62. :editinfo
  63. echo ------------------------------------------------------------->> sinfo.txt
  64. echo .                      >> sinfo.txt
  65. echo *** END OF STACKER INFO FILE *** >> sinfo.txt
  66. sedit sinfo.txt
  67. cls
  68.