Skip to content

Instantly share code, notes, and snippets.

@ionar
Created June 6, 2023 14:13
Show Gist options
  • Select an option

  • Save ionar/e3a82bfc060d297645519c8a768defe1 to your computer and use it in GitHub Desktop.

Select an option

Save ionar/e3a82bfc060d297645519c8a768defe1 to your computer and use it in GitHub Desktop.
Reconstruir manualmente partição boot do windows 10
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