Thank you for sharing the directory listing of S:. Based on the contents, this does
not look like a standard EFI System Partition (ESP). A typical EFI partition should contain only a few small folders and files like:
\EFI\
(folder)
- Inside
\EFI\
, subfolders like Microsoft\
, and files like bootx64.efi
- No large application files or project folders
Your S:\ contains numerous applications, folders (e.g., Bryces_projects, LDPlayer, Program Files, etc.), and even a
Windows
folder—
this is not suitable as an EFI partition. This likely means:
- The actual EFI partition is either not mounted, is corrupted, or has been overwritten.
- The disk structure has been altered, and Windows boot files have nowhere proper to go.
What To Do Next
1. Recheck All Small FAT32 Partitions
Your EFI partition should be a small (100–500 MB), FAT32-formatted partition. On your previous list, double-check which volume fits this description
and appears empty or only contains an \EFI folder.
- From your prior diskpart, Volume 4 (G
or Volume 9 (FAT, 32 MB, Removable) could be candidates.
- Try assigning letters to each small, FAT32 partition (not the large NTFS partitions).
Example for volume 9:
Code:
diskpart
select volume 9
assign letter=Z
exit
dir Z:\
- If you see an
EFI
folder here, that's your ESP.
2. If EFI Folder Is Missing Everywhere
If you don't find a valid EFI partition, you’ll need to create or reformat one.
Do
not do this unless none of the small, FAT32 partitions show an
EFI
folder!
3. Once You Find a Valid ESP
If you find a partition (say,
Z:
) that has an
EFI
folder or is empty (no huge apps), then run:
bcdboot C:\Windows /l en-us /s Z: /f UEFI
- Adjust
C:\Windows
to match your Windows install location as needed.
4. If You Only See Data/Apps and No EFI Partition Exists
Do not format anything until you confirm with me!
- Post the output of
diskpart list disk
and diskpart list volume
again, so I can double-check your structure.
Summary:
You tried to use a partition full of app and user data as your EFI System Partition—which will never work.
You must locate (or create) the small, system FAT32 partition meant exclusively for boot/EFI files.
Let me know what you see on those other small FAT32 volumes, or post new diskpart screenshots if you’re unsure. I’ll guide you step-by-step from there!