home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 May / PCWorld_2008-05_cd.bin / temacd / partion / savepart.exe / doc / en / HOWTO.txt < prev    next >
Text File  |  2008-03-15  |  27KB  |  683 lines

  1.           +--------------------------------------+
  2.           |           Partition Saving           |
  3.           |                                      |
  4.           |   http://www.partition-saving.com    |
  5.           | Copyright (c) 1999-2008 D. Guibouret |
  6.           +--------------------------------------+
  7.  
  8.                            HOWTO
  9.  
  10. Table of contents
  11. -----------------
  12.  
  13.   1- Preamble
  14.   2- Some definitions
  15.   3- Some DOS commands
  16.      a) Change drive
  17.      b) List directory contents
  18.      c) Change directory
  19.      d) Execute a program
  20.   4- Preparation
  21.      a) Boot disk creation (DOS version)
  22.      b) Boot disk creation (Windows version)
  23.      c) Temporary files removing
  24.      d) Defragmentation
  25.      e) Windows NT/2000/XP/Vista clone
  26.      f) Save-partition
  27.      g) Partition's name
  28.      h) Creating files on NTFS partition
  29.      i) What to save?
  30.      j) Boot computer
  31.   5- Saving
  32.      a) Start computer
  33.      b) Launch program
  34.      c) Action choice
  35.      d) Support choice
  36.      e) Partition choice
  37.      f) Content choice
  38.      g) Swap files directory
  39.      h) Save-partition mount
  40.      i) Automatic naming
  41.      j) First saving file name
  42.      k) Maximum saving file size
  43.      l) Compression ratio
  44.      m) Saving execution
  45.      n) Configuration file
  46.   6- Restoring
  47.      a) Action choice
  48.      b) Save-partition mount
  49.      c) First saving file name
  50.      d) Destination-partition choice
  51.      e) Confirmation
  52.      f) Restoring execution
  53.      g) End of restoring
  54.   7- After restoring
  55.      a) Source-partition saved on itself
  56.      b) Windows 2000, XP and Vista
  57.      c) Windows multiboot
  58.      d) Linux
  59.      e) Partition no more booting
  60.  
  61.  
  62. 1- Preamble
  63. -----------
  64.  
  65. This is not the Partition Saving manual. This is a short
  66. description of how to use this program in a standard case.
  67. For more details, please read the manual and the FAQ.
  68.  
  69.  
  70. 2- Some definitions
  71. -------------------
  72.  
  73. A drive is a partition on a hard disk, a floppy drive or any
  74. other device that allows the storing of data. With DOS it is
  75. identified with a letter between 'A' and 'Z' followed with a
  76. ':'.
  77.  
  78. A directory (or folder) is an element of a drive that allows
  79. grouping files (or other directories) together. Directories
  80. are organized on a drive in a "tree". A directory inside
  81. another directory is called a "sub-folder". A directory that
  82. contains a sub-folder is called the "parent directory" or
  83. "upper directory" of the sub-folder. The uppermost directory
  84. on a drive (corresponding to the base of the tree) is called
  85. the "root" directory.
  86.  
  87. The partition containing the data you wish to save is the
  88. "source-partition". The partition to which you save the
  89. files containing this data is the "save-partition". The
  90. partition to which you wish to ultimately restore the data
  91. is the "destination-partition".
  92.  
  93.  
  94. 3- Some DOS commands
  95. --------------------
  96.  
  97. DOS is an operating system (OS) that runs via a command
  98. line. Below are some useful DOS commands. All of these
  99. commands must be completed with an Enter key to be executed.
  100.  
  101. 3.a   Change drive
  102.       ------
  103.       To change from a drive to another, you have to enter
  104.       "<drive letter>:".
  105.  
  106.       Example:
  107.       To go to the floppy drive, you have to enter "A:".
  108.  
  109. 3.b   List directory contents
  110.       ------
  111.       To list what a directory contains, you have to enter
  112.       "dir". If you enter "dir <directory name>" you will
  113.       get contents of <directory name>. If you do not give a
  114.       directory name, you will get contents of current
  115.       directory. If there were more files into a directory
  116.       than can be shown on screen, you can enter "dir
  117.       <directory name> /p" to pause the listing between each
  118.       screen.
  119.  
  120.       Example:
  121.       "dir savepart".
  122.  
  123. 3.c   Change directory
  124.       ------
  125.       To change from one directory to another, you have to
  126.       enter "cd <directory name>". If you do not give a
  127.       <directory name>, the current directory name will be
  128.       displayed. If <directory name> is equal to ".",
  129.       nothing is done. If it is equal to "..", you are moved
  130.       to the next directory upward in the tree. If it is
  131.       equal to "\", you go to the root directory in the
  132.       tree. You can cross over several directories by
  133.       separating them with a "\".
  134.  
  135.       Example:
  136.       You have following directory tree:
  137.       C:
  138.       |- savepart
  139.       |  |- doc
  140.       |     |- en
  141.       |     |- fr_ansi
  142.       |     |- fr_ascii
  143.       and your current directory is C:. If you enter "cd
  144.       savepart", you move to the savepart directory (typing
  145.       "cd" will confirm this). If you next enter "cd doc",
  146.       you move to \savepart\doc. A faster way to go to this
  147.       directory from C: is to enter "cd savepart\doc". Once
  148.       you are in \savepart\doc, "cd .." will move you back
  149.       to \savepart. "cd \" will move you back to the root
  150.       directory (C:).
  151.  
  152. 3.d   Execute a program
  153.       ------
  154.       To execute a program, you enter its name. DOS begin to
  155.       search for a file "<program name>.bat", "<program
  156.       name>.com" or "<program name>.exe" in the current
  157.       directory, then into all directories listed in the
  158.       "PATH" variable (which value can be displayed by
  159.       entering "path"). You can also give a directory name
  160.       with a program name for DOS to search it directly in
  161.       that specific directory.
  162.  
  163.       Example:
  164.       As in the previous example, you have stored
  165.       savepart.exe into the \savepart directory; you are
  166.       into C:\. You can enter "savepart\savepart" to run the
  167.       program, or enter "cd savepart" then "savepart".
  168.  
  169.  
  170. 4- Preparation
  171. --------------
  172.  
  173. Here are the steps in preparing to save/restore a partition:
  174.  
  175. 4.a   Boot disk creation (DOS version)
  176.       ------
  177.       To save/restore a partition, you need a boot floppy
  178.       disk or CDROM or DOS 3.3 or later or Windows 3.x, 9x,
  179.       Me installed on your hard disk. To learn how to create
  180.       a boot floppy, read FAQ Q10 or search for "boot disk"
  181.       in Windows help. Make sure that fdisk.exe, sys.com and
  182.       format.com are on the boot floppy; they can be useful.
  183.       Copy savepart.exe on it (or onto another floppy disk
  184.       if there is not enough room). This is not needed if
  185.       savepart is already on a FAT partition, but you must
  186.       do it if savepart is on a NTFS partition otherwise DOS
  187.       will not be able to access it.
  188.  
  189. 4.b   Boot disk creation (Windows version)
  190.       ------
  191.       Saving system partition from Windows is not available
  192.       because program cannot disallow other programs to
  193.       access it when saving it (and no doing this will
  194.       result into a wrong backup).
  195.       So you shall have either another Windows installation,
  196.       or create a WinPE or BartPE CD. You can also use the
  197.       Windows Vista recovery console (not the Windows XP one
  198.       because it has reduced functions).
  199.       You can also read chapter 24 of manual to get more
  200.       details on this version.
  201.  
  202. 4.c   Temporary files removing
  203.       ------
  204.       To avoid saving useless data, remove temporary or
  205.       uneeded files. The Windows swap file can also be moved
  206.       onto another partition to avoid saving it (from V3.00
  207.       version, there is an option to not save it).
  208.  
  209. 4.d   Defragmentation
  210.       ------
  211.       It is good to defragment partition before saving it.
  212.       This will group all data at the beginning of the
  213.       partition, which will allow you to restore it on a
  214.       smaller partition, if you wish. In other cases it is
  215.       not needed.
  216.  
  217. 4.e   Windows NT/2000/XP/Vista clone
  218.       ------
  219.       If you wish to clone a Windows NT/2000/XP/Vista
  220.       partition on another computer, you have to prepare
  221.       Windows to this. For this purpose, please read
  222.       Microsoft site and search for sysprep tool. Please
  223.       note that this is better to do a fresh install in case
  224.       both computers do not have the same hardware.
  225.  
  226. 4.f   Save-partition
  227.       ------
  228.       You need a FAT, NTFS or ext2 partition or a device
  229.       that is DOS-writeable to create saving files. In most
  230.       cases, writing directly to a CD under DOS is not
  231.       possible. So, you nearly always need to create a saved
  232.       file on the hard disk, then return to your usual OS to
  233.       burn the CD in a separate operation. For USB devices,
  234.       some generic DOS drivers exist. If you have several
  235.       types of partition (like NTFS and FAT) in a logical
  236.       partition, you have to locate the FAT save-partition
  237.       before the others (so that DOS will be able to find
  238.       it).
  239.  
  240. 4.g   Partition's name
  241.       ------
  242.       To be able to keep track of the partitions, it is best
  243.       to give each a name. This will avoid confusion in case
  244.       the matchup between a partition and a corresponding
  245.       letter is wrong. For this:
  246.  
  247.         - Launch Windows Explorer.
  248.         - Right click on the drive you want to save and
  249.           select the properties menu (last option).
  250.         - Enter a name into the volume name text field.
  251.         - Click Ok to close properties window.
  252.  
  253.       Perform the same thing (but choosing another name) for
  254.       the save-partition.
  255.  
  256. 4.h   Creating files on NTFS partition
  257.       ------
  258.       This step is not needed if you can save files to a FAT
  259.       or ext2 partition or if you use Windows version
  260.       without trying to save a NTFS partition on itself.
  261.       If you have only NTFS partitions available as
  262.       save-partitions, you have to first use Windows to
  263.       create some files (program needs to have these entries
  264.       in a directory; it is not able to create them from
  265.       DOS):
  266.  
  267.         - Launch savepart.exe.
  268.         - Choose "Create some files on NTFS drive".
  269.         - Click on "Automatic naming". If you do not have a
  270.           mouse, use Ctrl+Tab to go to "Options" window; use
  271.           the spacebar to activate the checkbox.
  272.         - In the "File:" field, enter the name of the first
  273.           file (with full pathname or by going first to a
  274.           directory by using "Drives" and "Directories"
  275.           fields). Click "Ok".
  276.         - Give the number of files you need using this
  277.           formula:
  278.           <partition occupied size> / <size of saving files>
  279.           / 2 + 3
  280.           <size of saving files> depends on what you want to
  281.           do with them once they have been created (630 MB
  282.           to burn them to 650 MB CDROM, 680 MB for 700 MB
  283.           CDROM, 1550 MB for DVD (to have 3 files per DVD),
  284.           2047 Mo to let them on disk). "/ 2" is in case you
  285.           use compression. "+ 3" is some margin because the
  286.           "/ 2" factor for compression is not exact (it
  287.           depends on partition content).
  288.  
  289.           Example:
  290.           If you have a 2 GB occupied partition that you
  291.           want to save on 700 MB CDROM, you have to enter 5
  292.           (2048 / 700 / 2 = 1.5, rounds up to 2. Then adding
  293.           3 for margin, you get 5).
  294.  
  295. 4.i   What to save?
  296.       ------
  297.       The most important partition to save is the one where
  298.       the OS is. If the OS is installed on one partition and
  299.       programs on another, there may be links between them
  300.       (for example the registry and Windows DLL); in this
  301.       case, save both partitions by running savepart twice.
  302.       A better way, perhaps, is to create at least 2
  303.       partitions: one with the OS and programs, the second
  304.       with your data. This way, the data will not be erased
  305.       in case of a problem with the OS only. Otherwise, if
  306.       everything is on the same partition, you may have to
  307.       first save your data elsewhere to avoid its
  308.       replacement by older version when the partition is
  309.       restored.
  310.       Saving the partition table or MBR is a good idea in
  311.       case one day a virus infects your computer (some of
  312.       them destroy this data).
  313.  
  314. 4.j   Boot computer
  315.       ------
  316.       When exiting your OS to boot the computer to launch
  317.       Partition Saving, do not put this OS into hibernation
  318.       mode (be aware that it is Windows Vista default mode,
  319.       in start menu, choose the reboot through the arrow
  320.       button listing all shutdown modes). This can lead to
  321.       wrong result as OS does not allow or can be corrupted
  322.       in case of filesystem modification when being into
  323.       this mode.
  324.       For the same reason, shutdown it or boot it cleanly.
  325.       If you push the reset button from Windows, you will
  326.       have a damaged filesystem (this can also happen when
  327.       booting with Alt+Ctrl+Del).
  328.  
  329.  
  330. 5- Saving
  331. ---------
  332.  
  333. Here are steps involved in saving a partition:
  334.  
  335. 5.a   Start computer
  336.       ------
  337.       Boot to DOS (or Windows depending on version) with
  338.       your boot floppy disk or CDROM.
  339.  
  340. 5.b   Launch program
  341.       ------
  342.       Launch "savepart.exe" at prompt (change floppy disk
  343.       before if it is on another one, or go to directory
  344.       where it is in case it is on disk).
  345.  
  346. 5.c   Action choice
  347.       ------
  348.       Choose "Save an element" in the first window.
  349.  
  350. 5.d   Support choice
  351.       ------
  352.       Choose a support option. As a general rule, the system
  353.       partition is on disk number 0. Choose "DOS devices"
  354.       only if the element being saved is not on a hard disk
  355.       or a floppy.
  356.  
  357. 5.e   Partition choice
  358.       ------
  359.       Choose the partition you want to save (use the name
  360.       you gave it earlier; do not rely on drive letters,
  361.       since these can be misassigned and DOS does not see
  362.       NTFS partitions at all). If you see only one partition
  363.       with a "dynamic disk" type, that disk is dynamically
  364.       managed and you cannot save it with DOS version of
  365.       Partition Saving. With Windows version, you can save
  366.       it but with using the "Windows device" type of support
  367.       instead of using disk.
  368.  
  369. 5.f   Content choice
  370.       ------
  371.       Choose what you want to save. To have smallest file
  372.       size, choose "occupied sectors without swap files". If
  373.       you have only one partition (so that the saving file
  374.       will be on the source-partition), you must choose
  375.       "element on itself" or "element on itself without swap
  376.       files" option.
  377.       If you choose first option (all sectors) or if this
  378.       window does not appear, it means you will be able to
  379.       restore only to a partition of the exact same size, at
  380.       the same place on a disk having the same format.
  381.       Choosing one of the 4 last options allows you to
  382.       restore partition on a partition with a different
  383.       configuration.
  384.  
  385. 5.g   Swap files directory
  386.       ------
  387.       If you choose one of the "without swap files" options,
  388.       you have to give the directory name where the swap
  389.       files are located. Program always searches for them in
  390.       the root directory and then in the directory you
  391.       specify here. In most cases, swap files are in the
  392.       root directory or the Windows directory; Windows
  393.       directory is a good choice here.
  394.  
  395. 5.h   Save-partition mount
  396.       ------
  397.       If you have to use an NTFS (for DOS version) or ext2
  398.       partition as save-partition, you have to first mount
  399.       it. To do this:
  400.  
  401.         - Click on "Mount partition" button.
  402.         - Choose the disk containing the partition where to
  403.           create saving files.
  404.         - Choose the partition where to create saving files.
  405.           A window tells you which drive letter is affected
  406.           to this partition.
  407.  
  408. 5.i   Automatic naming
  409.       ------
  410.       Select "Automatic naming" in case you want to use it.
  411.       Program will automatically change file extension in
  412.       case several files are needed; a second file will have
  413.       an extension ending with 01, third with 02, etc. If
  414.       you do not have a mouse, press "Alt+Tab" to activate
  415.       the window where this option is, the spacebar
  416.       activates the checkbox.
  417.  
  418. 5.j   First saving file name
  419.       ------
  420.       Enter the filename you want to use as first saving
  421.       file (full pathname or go to the directory by using
  422.       "Drives" and "Directories"). Files created with this
  423.       program do not need any specific extension; avoid
  424.       confusion and do not use an extension used by another
  425.       program. A good extension is ".000" such as with
  426.       automatic naming, the second file will use ".001", the
  427.       third ".003", etc.
  428.       Unless you choose an option to save partition on
  429.       itself, you should not choose the drive corresponding
  430.       to the source-partition.
  431.       With DOS:
  432.  
  433.         - Names can be no more than 8 characters long,
  434.           followed by a 3 characters extension
  435.           ("fichier00.part" will be truncated to
  436.           "fichier0.par").
  437.         - Filenames can contain alphabetical and numerical
  438.           characters and the characters: '$', '%', ''', '-',
  439.           '_', '@', '~', '`', '!', '(', ')', '{', '}', '^',
  440.           '#' and '&'.
  441.         - DOS does not recognise NTFS partitions, so it is
  442.           normal the C:, D:, ... drives to not appear or to
  443.           not be the same than under Windows if they use
  444.           NTFS.
  445.  
  446.       Note: you do not have these limitations if you use
  447.       partition mounting.
  448.  
  449. 5.k   Maximum saving file size
  450.       ------
  451.       Enter the maximum size you want the file to be. If
  452.       more space is needed, several files are created.
  453.  
  454. 5.l   Compression ratio
  455.       ------
  456.       Select the compression ratio: use a low value in case
  457.       your computer is not powerful (2 is a good value).
  458.       Otherwise, use something higher. Values above 5 give
  459.       very little gain in comparison with time spent.
  460.  
  461. 5.m   Saving execution
  462.       ------
  463.       At this point, saving begins. When a file is filled,
  464.       you will be asked for another name if you do not
  465.       choose automatic naming option. Saving ends when the
  466.       upper progress bar reaches 100% and the "Ok" button
  467.       becomes active.
  468.  
  469. 5.n   Configuration file
  470.       ------
  471.       Program asks you if you want to create a configuration
  472.       file that will allow you to save/restore this
  473.       partition automatically the next time. If you answer
  474.       "yes", program requests you to give it a name.
  475.  
  476. Saving is complete. You can now boot back to Windows if you
  477. want to burn created file onto a CD.
  478. For best results, do not burn them at a too high speed
  479. because you can have problem in case they are not well
  480. burned. It is always a good idea to check if burned CDs are
  481. correct. Boot back into DOS and use the "Check a saving
  482. file" option.
  483. If you created the configuration file, you may need to
  484. modify it with a text editor to update the file pathname
  485. ("file=" lines), since moving files changes their pathname.
  486.  
  487.  
  488. 6- Restoring
  489. ------------
  490.  
  491. If when saving you have created the configuration file and
  492. you want to restore the source-partition, enter "savepart -r
  493. -f <configuration filename>" and restoring will be
  494. automatic.
  495. Warning: no confirmation will be asked for.
  496.  
  497. If you did not create a configuration file or prefer to
  498. restore by hand, the steps are below:
  499.  
  500. 6.a   Action choice
  501.       ------
  502.       Choose "Restore an element" option in first window.
  503.  
  504. 6.b   Save-partition mount
  505.       ------
  506.       In case saving files are on a NTFS or ext2 partition
  507.       you must first mount it (as you did when saving; see
  508.       5.h above).
  509.  
  510. 6.c   First saving file name
  511.       ------
  512.       You have to enter the name of first saving file: you
  513.       should enter its full pathname into "File" line (or
  514.       double-click on its name into the "Files" list after
  515.       moving to its directory with "Drives" and
  516.       "Directories" lists). You must be sure that this file
  517.       is not on the destination-partition.
  518.       As for saving, you can choose the automatic naming
  519.       option for following files name to be automatically
  520.       deduced.
  521.  
  522. 6.d   Destination-partition choice
  523.       ------
  524.       Depending on this first file contents and how your
  525.       partitions are set up, program offers you a list of
  526.       destination-partitions how which restoring can be
  527.       done. The one that is identical to the
  528.       source-partition is marked with an 'X' into "Id."
  529.       column.
  530.       Notes:
  531.  
  532.         - Obvioulsy, restoring erases the contents of
  533.           destination-partition.
  534.         - If you saved the partition table and restore it,
  535.           you will loose the content of all partitions on
  536.           disk on destination disk.
  537.         - In case partition where you want to restore does
  538.           not appear, it can be because:
  539.  
  540.           * The size of the destination-partition is
  541.             different from the one shown on the "Potential
  542.             size range" or "Size" lines.
  543.           * The destination type is not the same as the one
  544.             given on the "Element type" line.
  545.           * You saved all sectors and the
  546.             destination-partition does not have exactly the
  547.             same definition than the source one.
  548.  
  549. 6.e   Confirmation
  550.       ------
  551.       You have to confirm your choice.
  552.  
  553. 6.f   Restoring execution
  554.       ------
  555.       Restoring begins. If saving involved several files and
  556.       you did not choose automatic naming, program will ask
  557.       for the name of the next file when it reaches end of
  558.       current one.
  559.       Do not rely on the estimated time if you saved
  560.       occupied sectors only because it is computed as if all
  561.       sectors are occupied. If you used compression, the
  562.       restore operation should go faster than saving; else
  563.       it takes nearly the same time.
  564.  
  565. 6.g   End of restoring
  566.       ------
  567.       Once restoring is ended, you should not access to
  568.       restored partition before having booted your computer.
  569.       This is because information that DOS has into memory
  570.       are no more coherent with partition content and so
  571.       using it will end with data corruption.
  572.       Note: some people have to power off there computer to
  573.       be sure that memory is cleared, but this is an extrem
  574.       case.
  575.  
  576.  
  577. 7- After restoring
  578. ------------------
  579.  
  580. Once restoring is ended, you can have to perform some
  581. operations after first reboot. Usually this is in case the
  582. destination-partition is different from the source one.
  583. Mostly encountered operations are:
  584.  
  585. 7.a   Source-partition saved on itself
  586.       ------
  587.       If you saved partition on itself (source-partition and
  588.       save-partition are the same), saving files can appear
  589.       on destination-partition. In this case you can remove
  590.       them as they are no longer needed(I speak about the
  591.       files that can appear on destination-partition, not
  592.       those you used to do these restoring which are always
  593.       correct).
  594.       It is better to perform a check of the
  595.       destination-partition if it is not automatically done.
  596.  
  597. 7.b   Windows 2000, XP and Vista
  598.       ------
  599.       If you choose a destination-partition that is
  600.       different from the source one (either it is not on the
  601.       same disk or beginning of partition has moved on disk)
  602.       and you have Windows 2000, XP or Vista, you have to
  603.       update some definitions into registry (see chapter 11
  604.       of manual). As a summary, if your source-partition was
  605.       your system partition, you have to choose to update
  606.       registry, choose the destination-partition as Windows
  607.       partition, then as partition to change drive
  608.       assignment and set it the drive letter of the
  609.       source-partition. If the destination-partition was
  610.       present when you perform the save and the
  611.       source-partition is still here, you will have to
  612.       assign the previous drive letter of the
  613.       destination-partition to the source one (still for the
  614.       Windows on the destination-partition).
  615.  
  616. 7.c   Windows multiboot
  617.       ------
  618.       If you have several Windows installation, you use
  619.       Windows multiboot feature and your source-partition
  620.       was your boot or system partition, you have to update
  621.       some files on the destination-partition (if it is not
  622.       the same as source-partition):
  623.  
  624.         - BOOTSECT.DOS/BOOTSECT.BAK file that contains
  625.           original boot sector of this partition (if it
  626.           exists) (only for boot partition). For this you
  627.           can use the decicated Partition Saving option (see
  628.           chapter 13 of manual).
  629.         - BOOT.INI file that describes each boot option in
  630.           XP case. To do this, you can either explore the
  631.           partition and edit the file if you know its
  632.           syntax, or boot from the Windows CD, choose the
  633.           repair option and run "bootcfg" in console mode.
  634.         - Boot\BCD file that describes each boot option in
  635.           Vista case. To do this, you can either use the
  636.           decicated Partition Saving option (see chapter 12
  637.           of manual) or boot with the Windows DVD, choose
  638.           repair mode and run "bootrec /RebuildBcd" in
  639.           console mode if automatic repair is not done.
  640.  
  641. 7.d   Linux
  642.       ------
  643.       If the source-partition was used with Linux, and
  644.       destination-partition is different from source one,
  645.       you have to update the "/etc/fstab" (file that
  646.       describes mount points). If it a system partition, you
  647.       will have also to update the boot loader. For this you
  648.       have to boot with the Linux CD and use the rescue mode
  649.       to update mount point and boot loader (in most cases,
  650.       rescue mode allows such operations, but it depends on
  651.       distribution).
  652.  
  653. 7.e   Partition no more booting
  654.       ------
  655.       In some cases, if you restore a system partition, it
  656.       could be made non-bootable. You have to:
  657.  
  658.         - Use fdisk to check this partition is activated
  659.           (only for boot partition).
  660.         - For a FAT partition, restore the Master Boot
  661.           Record (MBR) with "fdisk /mbr". Using a boot
  662.           floppy disk, restore the boot sector and system
  663.           files with "sys c:".
  664.         - For an NTFS partition, use the "fixboot", "fixmbr"
  665.           and "bootcfg" (XP) or "bootrec" (Vista) commands
  666.           at the repair console usually loaded from the
  667.           install CD. If you get an error like "NTLDR is
  668.           missing" (or "BOOTMGR is missing") copy the
  669.           "NTLDR" and "NTDETECT.COM" files from "i386"
  670.           directory (or "BOOTMGR" file from root directory)
  671.           on CDROM to the root directory of partition. In
  672.           case these files have an extension that ends with
  673.           "_" (NTDETECT.CO_), use the "expand" command to
  674.           uncompress them.
  675.         - For FAT and NTFS partitions, you can use option to
  676.           fix disk physical definition into boot sector (cf.
  677.           chapter 14 of manuel) (note: above operations
  678.           shall already fix it).
  679.  
  680. ------
  681. All trademarks and registered trademarks are property of
  682. their respective holders.
  683.