Update README.md

master
xerox 4 years ago
parent 0a928f6d80
commit f9c848f680

@ -37,3 +37,10 @@ To compile Voyager for your desired Windows 10 version, please change the `WINVE
HXD to export the payload as a C array. Replace the array found in `PayLoad.c` with your payload. Next you are going to want to bundle the bootmgfw file with the newly compiled Voyager.efi file. Using the bundler I made: `efi-bundler.exe bootmgfw.efi voyager.efi`. HXD to export the payload as a C array. Replace the array found in `PayLoad.c` with your payload. Next you are going to want to bundle the bootmgfw file with the newly compiled Voyager.efi file. Using the bundler I made: `efi-bundler.exe bootmgfw.efi voyager.efi`.
To deploy this you must replace bootmgfw inside of your EFI partition. First you are going to mount the partition with `mountvol X: /S`, X: being the label you want to mount your EFI partition too. To deploy this you must replace bootmgfw inside of your EFI partition. First you are going to mount the partition with `mountvol X: /S`, X: being the label you want to mount your EFI partition too.
Then rename bootmgfw.efi found in: EFI\Microsoft\Boot to bootmgfw.efi.backup. Then rename bootmgfw.efi found in: EFI\Microsoft\Boot to bootmgfw.efi.backup.
```batch
mountvol X: /S
move X:\EFI\Microsoft\Boot\bootmgfw.efi X:\EFI\Microsoft\Boot\bootmgfw.efi.backup
move bootmgfw.efi X:\EFI\Microsoft\Boot\
shutdown /r
```
Loading…
Cancel
Save