home *** CD-ROM | disk | FTP | other *** search
/ ftp.tcs3.com / ftp.tcs3.com.tar / ftp.tcs3.com / DRIVERS / Motherboard / Acer_BIOS / AX5T / ax5tr160.exe / UPGRADE.BAT < prev   
DOS Batch File  |  1997-11-03  |  3KB  |  73 lines

  1.  
  2. cls
  3. @echo off
  4. echo   *************** Flash ROM Upgrade Utility ******************
  5. echo   *                                                          *
  6. echo   *  Please do a clean boot from A: drive before starting    *
  7. echo   *  the BIOS upgrade.                                       *
  8. echo   *                                                          *
  9. echo   ************************************************************
  10. echo   ************************************************************
  11. echo   *  1) My system booted up from A drive (Clean boot)        *
  12. echo   *                                                          *
  13. echo   *  2) My system booted up from C drive                     *
  14. echo   *                                                          *
  15. echo   *  3) Exit to DOS                                          *
  16. echo   *                                                          *
  17. echo   *   Please enter (1, 2 or 3)                               *
  18. echo   *                                                          *
  19. echo   ************************************************************
  20.  
  21. choice /c:123
  22.  
  23. if errorlevel 3 goto exit
  24. if errorlevel 2 goto test2
  25. if errorlevel 1 goto test1
  26.  
  27. :test1
  28. cls
  29. echo    *********************** Notice ****************************
  30. echo    * Inportant!!                                             *
  31. echo    *                                                         *
  32. echo    * 1) Once you have finished upgrading BIOS, you'll need   *
  33. echo    *    to reset the CMOS. Please press INSERT key when the  *
  34. echo    *    system boots up.                                     *
  35. echo    * 2) Choose "LOAD SETUP DEFAULTS."                        *
  36. echo    * 3) Choose "IDE HDD AUTO DETECTION" to detect hard       *
  37. echo    *    drives.                                              *
  38. echo    * 4) Choose "Save & Exit Setup."                          *
  39. echo    *                                                         *
  40. echo    *    Press any key to continue ....                       *
  41. echo    *                                                         *
  42. echo    ***********************************************************
  43.  
  44. pause        
  45. checksum ax5t160.bin
  46.  
  47. echo    **************************************************************
  48. echo    *                                                            *
  49. echo    *  If the checksum value is 85A2, press any key to continue. *
  50. echo    *                                                            *
  51. echo    *  If it is a different number, press control-C to stop.     *
  52. echo    *  Please download the file again.                           *
  53. echo    *                                                            *
  54. echo    **************************************************************
  55.  
  56. pause
  57. aoflash ax5t160.bin /cd /Py oldbios.bin /Sy
  58. goto exit
  59.  
  60. :test2
  61. cls
  62. echo           ************** Notice ******************
  63. echo           *                                      *
  64. echo           * Please do a clean boot from A drive. *
  65. echo           *                                      *
  66. echo           ****************************************
  67.  
  68. goto exit
  69.  
  70. :exit
  71.  
  72.  
  73.