stub topic

This commit is contained in:
Greg Lindsay 2017-02-28 16:59:38 -08:00
parent 4582fb684d
commit a7c17cf6c3

View File

@ -23,6 +23,7 @@ This topic contains ...:
- [Background](#background): A.<BR>
- [Requirements](#requirements): B.<BR>
- [How to use MBR2GPT](#how-to): BB
- [Syntax](#syntax): C.
- [Command line options](#command-line-options): D.
- [Examples](#examples): E.
@ -58,10 +59,63 @@ The following ...
Table or list here
## How to use MBR2GPT
## Syntax
### Command line options
| Option | Description |
|----|-------------|
|/disk:\<diskNumber\>| This option specifies the Diskpart-reported disk number of the disk to be converted to GPT. If the option isnt specified, the system disk is used. (System disk is determined using the same mechanism behind Diskparts “SELECT DISK SYSTEM” command.) |
|opt|desc|
|opt|desc|
|opt|desc|
|opt|desc|
|opt|desc|
|opt|desc|
### Help
```
C:\> mbr2gpt /?
Converts a disk from MBR to GPT partitioning without modifying or deleting data on the disk.
MBR2GPT.exe /validate|convert [/disk:<diskNumber>] [/logs:<logDirectory>] [/map:<source>=<destination>] [/allowFullOS]
Where:
/validate
- Validates that the selected disk can be converted
without performing the actual conversion.
/convert
- Validates that the selected disk can be converted
and performs the actual conversion.
/disk:<diskNumber>
- Specifies the disk number of the disk to be processed.
If not specified, the system disk is processed.
/logs:<logDirectory>
- Specifies the directory for logging. By default logs
are created in the %windir% directory.
/map:<source>=<destination>
- Specifies the GPT partition type to be used for a
given MBR partition type not recognized by Windows.
Multiple /map switches are allowed.
/allowFullOS
- Allows the tool to be used from the full Windows
environment. By default, this tool can only be used
from the Windows Preinstallation Environment.
```
### Examples
## Conversion workflow