无忧启动论坛

 找回密码
 注册
搜索
系统gho:最纯净好用系统下载站投放广告、加入VIP会员,请联系 微信:wuyouceo
查看: 4525|回复: 7
打印 上一主题 下一主题

MBR.EXE 方便地一键恢复引导工具

[复制链接]
跳转到指定楼层
1#
发表于 2010-2-9 03:22:59 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
MBR
MBR.EXE is a utility intended to complement other TeraByte Unlimited products.
MBR.EXE allows you to manipulate a drive's master boot record (MBR).  For
example, MBR.EXE is capable of deleting all the partitions in a MBR, zeroing
out a MBR, installing a standard MBR, and more.  

Installation:
~~~~~~~~~~~~~

Simply copy the program file to a directory on your hard drive, or to a
bootable floppy diskette.  MBR.EXE can be run from a command prompt, or from
a batch file.


Usage (mode 1 of 2):
~~~~~~~~~~~~~~~~~~~~

mbr hdnum [/RESET] [/ZERO] [/DEL] [/INSTALL] [/REBOOT]

hdnum       Hard drive number whose MBR will be acted on (0-15).

/RESET      Used in combination with MBR code installed with SELM below.

/ZERO       Set the entire MBR to zero (deletes all MBR partitions).

/DEL        Delete all partitions in MBR.

/INSTALL    Install MBR code using the follow addtional parameters:

             [STD] [SEL to fkey "msg"] [SELM to fkey "msg" fsid fsidhid]

   STD       Install standard MBR code.
   W7        Install Windows 7 MBR code.
   SEL       Install MBR code that will display 'msg' and boot a hidden
             FAT/FAT32 partition if 'fkey' is pressed within 'to' seconds.
             The ondisk MBR is not modified.
   SELM      Install MBR code that will display 'msg' and boot a partition
             with a file system id of 'fsidhid' if 'fkey' is pressed within
             'to' seconds.  The MBR is modifed so that the partition is marked
             active and the file system is changed to 'fsid'.  To reset the
             MBR back to the prior settings, use the /RESET switch before
             modifying the MBR again.

/REBOOT     Reboot the computer after the selected action is carried out.


Additional usage notes:
~~~~~~~~~~~~~~~~~~~~~~~

* If the /INSTALL SEL or /INSTALL SELM command parameters are to be used,
there must be one and only one partition available that matches.  For example,
the /INSTALL SEL command parameters cause a hidden FAT/FAT32 partition to be
booted from, if the defined F-key is pressed.  If there is more than one
hidden FAT/FAT32 partition, however, the F-key defined by the /INSTALL SEL
command parameters will not work.

* If the /INSTALL SELM command parameters are used, the /RESET command should
be run when the alternate partition is booted from.  This will reset the MBR
to its previous configuration.


Examples of use:
~~~~~~~~~~~~~~~~

mbr 1 /zero

       MBR.EXE will write zeros to the MBR of hard drive 1.  Note: Hard drive
       1 is the SECOND hard drive, since these numbers start at 0.

mbr 2 /del

       MBR.EXE will delete each partition in the MBR of hard drive 2.

mbr 2 /del /reboot

       Same as above, except that the system will reboot immediately after
       MBR.EXE performs the requested action.

mbr 0 /install std

       MBR.EXE will install a standard MBR to hard drive 0.

mbr 0 /install sel 5 12 "Press F12 to boot the recovery partition"

       MBR.EXE will install a MBR to hard drive 0.  The MBR will display the
       message "Press F12 to boot the recovery partition" for 5 seconds, and
       the F12 key will cause a hidden FAT/FAT32 to be selected for booting.

mbr 0 /install selm 10 9 "Press F9 for recovery" 0xC 0xDB

       MBR.EXE will install a MBR to hard drive 0.  The MBR will display the
       message "Press F9 to boot the recovery partition" for 10 seconds.

       If the F9 key is pressed within 10 seconds, it will cause a partition
       with the file system ID 0xDB to be booted from.  The MBR will then be
       modified to mark the new boot partition active, and the file system ID
       of it will be changed to 0xC.

       Once booted in the partition whose file system ID was originally 0xDB,
       the command line "mbr 0 /reset" should be run, in order to set the MBR
       back to the state it was in before the file system ID and active
       partition values were changed.


Usage (mode 2 of 2):
~~~~~~~~~~~~~~~~~~~~

mbr hdnum entry [/ISACT] [/DEL] [/H] [/A] [/SET id] [/ISFSID id] [/REBOOT]

hdnum       Hard drive number whose MBR will be acted on (0-15).

entry       MBR entry number (0-3).

/ISACT      Returns ERRORLEVEL 1 if the entry (zero based) is marked active.

/DEL        Delete the entry.

/H       Unhide or Hide the FAT/FAT32/NTFS/HPFS entry.

/A          Set the entry active.

/SET        Set the file system id of the entry.

/ISFSID     Returns ERRORLEVEL 1 if the entry file system id matches id

/REBOOT     Reboot the computer after the selected action is carried out.


Examples of use:
~~~~~~~~~~~~~~~~

mbr 0 2 /isact

       MBR.EXE will set ErrorLevel to 1 if MBR entry 2 on hard drive 0 is
       marked active:

           @echo off
           mbr 0 2 /isact
           if errorlevel 1 goto label

mbr 0 2 /isfsid 0xC

       MBR.EXE will set ErrorLevel to 1 if MBR entry 2 on hard drive 0 has a
       file system ID of 0xC:

           @echo off
           mbr 0 2 /isfsid 0xC
           if errorlevel 1 goto label

mbr 2 1 /del

       MBR.EXE will delete MBR entry 1 on hard drive 2.

mbr 1 0 /h
mbr 1 0 /u

       The command lines above will, respectively:

         - Instruct MBR.EXE to hide MBR entry 0 on hard drive 1.
         - Instruct MBR.EXE to unhide MBR entry 0 on hard drive 1.

mbr 0 1 /a

       MBR.EXE will set MBR entry 1 on hard drive 0 active.

mbr 0 1 /a /reboot

       Same as above, except that the system will reboot immediately after
       MBR.EXE performs the requested action.

mbr 1 1 /set 0xD

       MBR.EXE will set the file system ID of MBR entry 1 on hard drive 1
       to 0xD.
+++++++++++++++++++++++++++++++++


     哪位仁兄实际使用·过,讲解一下心得。



[ 本帖最后由 wang755 于 2010-7-21 22:00 编辑 ]
2#
发表于 2010-2-9 11:57:23 | 只看该作者
晕倒。帮助文档不是已经在这里了吗?楼主你就不舍得花点时间自己学习一下吗?这些英语难吗?有初高中的水平就能看懂了吧。
回复

使用道具 举报

3#
发表于 2010-2-13 15:05:12 | 只看该作者
得花点时间自己学习一下英语
回复

使用道具 举报

4#
发表于 2010-2-24 12:10:09 | 只看该作者
谷歌翻译·········
回复

使用道具 举报

5#
发表于 2010-2-24 14:07:30 | 只看该作者
从哪里下载,能否提供下载?
回复

使用道具 举报

6#
发表于 2010-2-25 14:39:53 | 只看该作者
后悔英语老师死得早
回复

使用道具 举报

7#
发表于 2011-4-30 12:01:39 | 只看该作者
很有用的东西,我应该用得到
回复

使用道具 举报

8#
发表于 2011-4-30 12:13:02 | 只看该作者
原帖由 小咕咚 于 2010-2-24 14:07 发表
从哪里下载,能否提供下载?

是不是这个?没用过,你敢试一试!
MBR.rar (17.66 KB, 下载次数: 271)

[ 本帖最后由 2010yg 于 2011-4-30 12:22 编辑 ]
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|Archiver|捐助支持|无忧启动 ( 闽ICP备05002490号-1 )

闽公网安备 35020302032614号

GMT+8, 2026-2-26 01:16

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表