Created
June 6, 2023 14:13
-
-
Save ionar/e3a82bfc060d297645519c8a768defe1 to your computer and use it in GitHub Desktop.
Reconstruir manualmente partição boot do windows 10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Usando o pendrive de instalação do Windows10 mesmo, escolher a opção Reparar. Então seguir os passos: | |
| 1-Dentro do diskpart localizar a partição efi | |
| 2-select disk x | |
| 3-select partition x | |
| 4-delete partition override | |
| 5-create partition efi | |
| 6-format quick fs=fat32 | |
| 7-assign letter=s | |
| 8-sai do diskpart | |
| 9-bcdboot c:\windows /f UEFI /s s: | |
| Assim a partição já está reconstruída para um sistema UEFI. | |
| Se for um sistema BIOS Legacy tentar com os comando de recuperação abaixo: | |
| 1-bootsect /nt60 all /force /mbr | |
| 2-bootrec /fixmbr | |
| 3-bootrec /fixboot | |
| 4-bootrec /ScanOs | |
| 5-bootrec /RebuildBcd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment