1

Based on the following question: How to access efi partition on windows 10?

I have been unable to open the EFI partition by running the commands below:

mountvol

start \\?\Volume{xxxxxxx-ec0e-43ab-82ce-xxxxxxxxx}\

enter image description here

It says to look on the security tab, but upon opening the properties for the EFI partition there is no security tab!

Any suggestions would be helpful.

EDIT

Thanks for the replies. So I ran the following command to mount the drive.

mountvol S: /s

Then the following command to open up either Explorer++ or notepad.exe

"C:\Users\Admin\Downloads\Explorer++.exe"

notepad.exe

However, when finding the S:\EFI\Boot\bootx64.efi file and trying to copy it over to the C:\ drive I am getting the following error:

enter image description here

EDIT 2

Using notepad.exe or Explorer++ does not work for copying files to the C:\ drive. However, I was able to use the following command to copy files over from the EFI partition to the C:\ drive.

copy S:\EFI\Boot\bootx64.efi C:\Users\Admin\Downloads\
Pie
  • 841

3 Answers3

0

I get the same issue using start ((Get-Partition | ? IsSystem).AccessPaths[0]).

You can however mount the EFI partition using mountvol s: /s from Administrator command prompt (changing s: to another letter if you wish).

PS C:\WINDOWS\system32> mountvol s: /s
PS C:\WINDOWS\system32> ls s:                                                                                           

    Directory: s:\


Mode                LastWriteTime         Length Name
----                -------------         ------ ----
da----       01/12/2019     09:47                EFI
d-----       15/10/2019     16:08                temp
-a----       26/11/2019     09:31        6285696 vmlinuz-linux
-a----       21/11/2019     09:24        3120640 intel-ucode.img
-a----       26/11/2019     09:31        9709791 initramfs-linux.img
-a----       31/05/2019     17:19            503 refind_linux.conf
-a----       19/04/2019     13:45             87 keybindings.txt
-a----       15/11/2019     07:15           4119 BOOTLOG
-a----       05/07/2019     21:17       15552054 screenshot_001.bmp
-a----       05/07/2019     21:17       15552054 screenshot_002.bmp
-a----       26/11/2019     09:31       29906590 initramfs-linux-fallback.img


PS C:\WINDOWS\system32> mountvol s: /d 

As the volume is mounted in administrator context it will not be visible in Explorer nor non-administrator command prompt.

You can however then run programs as administrator to access files on EFI partition. For example notepad.exe running as Administrator can see s: :

Screenprint

lx07
  • 3,266
0

The official way of mounting it is mountvol (drive letter) /S. You may then access it via CMD (administrator) or for a GUI you can download Explorer++ for free. Make sure to run it as administrator. To unmount the volume run mountvol (same drive letter as before) /D. Hope this helps

ut793
  • 95
0

Try the solution I have posted here.

It should work with any program that can open a file directly from the command prompt

davejoem
  • 111