You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
931 B
43 lines
931 B
# windows-rebuild-bcd-boot
|
|
|
|
Utiliser DISKPART pour créer ou préparer une partition de démarrage
|
|
|
|
Type and run the command:
|
|
|
|
diskpart
|
|
|
|
Type and run the command:
|
|
|
|
select disk 0
|
|
|
|
Type and run the command:
|
|
|
|
list vol
|
|
|
|
Verify that the EFI partition (EPS - EFI System Partition) is using the FAT32 file system. Assign a drive letter to it that is not already in use:
|
|
|
|
Type and run the command:
|
|
|
|
select vol <number of volume>
|
|
|
|
Type and run
|
|
|
|
format fs=fat32
|
|
|
|
Type and run the command:
|
|
|
|
assign letter=<drive letter>
|
|
|
|
Type and run the command:
|
|
|
|
exit
|
|
|
|
|
|
Pour réparer ou créer / recréer / refaire le magasin bcd
|
|
|
|
|
|
bcdboot c:\Windows /s <boot letter>: /f ALL (You can add a switch before /s for the computer locale: /l <language code>. By default, /l en-us English USA is used.)
|
|
|
|
Optionnel
|
|
bootrec /rebuildbcd
|