meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| windows:windows10:uefi_boot [2020/09/18 14:04] – niziak | windows:windows10:uefi_boot [2026/02/03 10:39] (current) – niziak | ||
|---|---|---|---|
| Line 10: | Line 10: | ||
| With command prompt: | With command prompt: | ||
| + | |||
| + | <code shell> | ||
| + | mbr2gpt /validate / | ||
| + | |||
| + | disk layout failed for disk 0 | ||
| + | </ | ||
| + | |||
| + | It means that there is no space for EFI parition or MBR disk contains already 4 partitions. | ||
| + | |||
| + | The common cause is that Windows creates more recovery partitions if default is too small (created as first and cannot be expanded later). | ||
| + | So probably one used is the recovery partition just after system or data partition. In this combination Windows can expand recovery partition if needed by shrinking data partition. More info here: [[https:// | ||
| + | |||
| + | To detect which recovery is used: | ||
| + | |||
| + | <code shell> | ||
| + | diskpart | ||
| + | list disk | ||
| + | select disk 0 | ||
| + | detail disk | ||
| + | Volume ### Ltr Label Fs | ||
| + | ---------- | ||
| + | Volume 1 | ||
| + | Volume 2 | ||
| + | Volume 3 | ||
| + | Volume 4 NTFS | ||
| + | |||
| + | select partition 4 | ||
| + | delete partition override | ||
| + | </ | ||
| + | |||
| <code shell> | <code shell> | ||
| diskpart | diskpart | ||
| Line 25: | Line 55: | ||
| bcdboot X:\windows /s S: | bcdboot X:\windows /s S: | ||
| + | bootrec /rebuildbcd | ||
| </ | </ | ||