Reputation: 19
I need to run EFI shell commands to get the directory listing of EFI partition. Do i need to install some tool on my system(windows). How can i run EFI shell commands on windows?
Upvotes: 0
Views: 4281
Reputation: 19
We can access the EFI system partition by mounting it to some drive letter.
1) run diskpart
2) select disk on which the EFI partition system is present (eg: sel disk 0)
3) select EFI partition (eg. sel part 1)
4) assign drive letter (eg.assign letter=h)
5) exit
Upvotes: 1