home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 February / PCWorld_2002-02_cd.bin / Software / Vyzkuste / ranish / INSTALL.BAT < prev    next >
DOS Batch File  |  1998-06-11  |  2KB  |  76 lines

  1. @echo off
  2.  
  3. echo.
  4. echo Partition Manager Install
  5. echo.
  6. echo This script is going to do the following steps:
  7. echo.
  8. echo.    1. Make a bootable system floppy.
  9. echo.    2. Copy Partition Manager to floppy.
  10. echo.    3. Save your MBR to the file on floppy.
  11. echo.    4. Save information about your partitions.
  12. echo.
  13. echo You can stop the script at any moment by pressing Ctrl-C
  14. echo.
  15.  
  16. if not exist part.exe goto error_missing_files
  17. if not exist part.htm goto error_missing_files
  18.  
  19. if "%1" == "/nf" goto step2
  20.  
  21. echo Step 1: Formatting floppy
  22. format a: /u /s /V:PART_MANAGER
  23. if errorlevel == 1 goto error_formatting_floppy
  24.  
  25. :step2
  26.  
  27. echo Step 2: Copying Partition Manager to the floppy...
  28.  
  29. copy part.exe a:\  > nul
  30. copy part.htm a:\  > nul
  31.  
  32. echo @echo off > a:\autoexec.bat
  33. echo echo Type PART to run Partition Manager >> a:\autoexec.bat
  34.  
  35. echo Step 3: Saving your current MBR...
  36.  
  37. part -q -d 1 -s a:\orig_mbr.hd1 > nul
  38. part -q -d 2 -s a:\orig_mbr.hd2 > nul
  39. part -q -d 3 -s a:\orig_mbr.hd3 > nul
  40. part -q -d 4 -s a:\orig_mbr.hd4 > nul
  41.  
  42. echo Step 4: Saving information about partitions...
  43.  
  44. part -i     > a:\part_ide.
  45.  
  46. if exist a:\orig_mbr.hd1  part -d 1 -p     > a:\part_p.hd1
  47. if exist a:\orig_mbr.hd1  part -d 1 -p -r  > a:\part_p_r.hd1
  48.  
  49. if exist a:\orig_mbr.hd2  part -d 2 -p     > a:\part_p.hd2
  50. if exist a:\orig_mbr.hd2  part -d 2 -p -r  > a:\part_p_r.hd2
  51.  
  52. if exist a:\orig_mbr.hd3  part -d 3 -p     > a:\part_p.hd3
  53. if exist a:\orig_mbr.hd3  part -d 3 -p -r  > a:\part_p_r.hd3
  54.  
  55. if exist a:\orig_mbr.hd4  part -d 4 -p     > a:\part_p.hd4
  56. if exist a:\orig_mbr.hd4  part -d 4 -p -r  > a:\part_p_r.hd4
  57.  
  58. echo Installation completed.
  59. echo.
  60. echo Please, read Partition Manager Help and FAQ before
  61. echo making any changes on your hard disk.
  62. echo Backing up your critical files is also a good idea.   
  63. goto end
  64.  
  65. :error_missing_files
  66. echo Error: One or more files is missing!
  67. pause
  68. goto end
  69.  
  70. :error_formatting_floppy
  71. echo Error: There was an error formatting floppy disk!
  72. pause
  73. goto end
  74.  
  75. :end
  76.