Я застрял в оболочке EFI при включении компьютера [ИСПРАВЛЕНО]
Bootloops и BSOD – это то, с чем сталкивается каждый пользователь ПК. Важно не паниковать и не пытаться определить причину проблемы. В этом случае некоторые пользователи застряли в EFI Shell после перезагрузки компьютера.
Для некоторых ошибка предшествовала внезапному отключению, в то время как другие не испытывали ничего необычного до ошибки EFI Shell. Мы нашли 3 возможных решения этой проблемы и поместили их ниже.
Как исправить ошибки EFI Shell при загрузке ПК
- Подключите жесткий диск в другой порт
- Отключить MSI Fast Boot или UEFI Boot в BIOS
- Удалить CMOS аккумулятор
Решение 1. Подключите жесткий диск к другому порту
Первый шаг, с которым мы сталкиваемся как возможное решение, – это изменение порта жесткого диска. По-видимому, переключая порты SATA, некоторым пользователям удалось получить EFI (Extensible Firmware Interface). Это, конечно, указывает на некоторые аппаратные проблемы, поэтому, даже если ваш компьютер может загрузиться в систему, всегда есть страх перед HDD или, что менее вероятно, проблемами с материнской платой.
Кроме того, если вы застряли в цикле загрузки, попробуйте выключить компьютер и переключить слоты оперативной памяти. Если у вас есть две RAM-карты, поменяйте их местами. Также рекомендуется отключить все USB-устройства, за исключением клавиатуры.
Попробуйте загрузиться снова и ищите изменения. Если вы можете получить доступ к настройкам загрузки, убедитесь, что жесткий диск находится в верхней части списка. Если вы не видите свой жесткий диск в списке загрузочных дисков, мы, скорее всего, обратимся к проблеме с оборудованием.
Решение 2. Отключите MSI Fast Boot или UEFI Boot в BIOS
Каждый OEM материнской платы имеет несколько конкретных настроек. Хотя некоторые из них являются уловками, такие функции, как MSI Fast Boot, часто используются для ускорения загрузки в систему.
Однако, похоже, что эта функция не работает должным образом с Windows 10. Некоторые пользователи смогли выйти из оболочки EFI, отключив эту функцию.
Кроме того, если у вас UEFI загружается где-то в настройках EFI, отключите его. Это еще одна возможная причина проблемы. Кроме того, попробуйте сбросить настройки EFI до заводских настроек по умолчанию. Таким образом, вы будете уверены, что никаких изменений не было.
- ОТНОСИТЕЛЬНО: 5 лучших программ для восстановления загрузки Windows 10, чтобы оживить ваш компьютер в 2019 году
Решение 3 – Удалить батарею CMOS
Наконец, если ни один из предыдущих шагов не вывел вас из EFI Shell, мы можем предложить только одно решение. А именно, конфигурация BIOS/UEFI может быть повреждена, и единственный реальный способ решить эту проблему в этом текущем состоянии – извлечь батарею CMOS.
Таким образом, вся кэшированная конфигурация будет сброшена, и вы сможете загрузить систему. Конечно, это означает, что все жесткие диски работоспособны.
Это не совсем сложно. Просто выключите компьютер и удалите все кабели. Получите доступ к внутренней части корпуса, и где-то посередине материнской платы вы увидите батарею для ручных часов. Удалите его и вставьте снова. Подключи все и попробуй еще раз. Если жесткий диск распознан и установлен в качестве первого варианта загрузки, рассмотрите возможность переустановки системы. Просто не забудьте сделать резервную копию ваших файлов.
Если у вас есть альтернативные решения, о которых мы забыли упомянуть, обязательно сообщите нам об этом в разделе комментариев ниже.
Efi shell как выйти
I am running a virtual machine for Mac OSX and it always boots into EFI shell, I just want a simple explanation of what this is and how, if possible, to exit it.
1 Answer 1
The EFI shell is a command-line tool similar in concept to bash in Linux/Unix/OS X or a Command Prompt window in Windows. It lets you view, delete, edit, and rename files, to update EFI boot manager entries, and so on. You can exit from the shell by typing exit ; however, in the case of VirtualBox, this will probably bring you to an EFI menu that can be just as confusing.
If you’ve installed an OS in your VirtualBox session, chances are it installed a boot loader on the EFI System Partition (ESP). Most OSes register these boot loaders with the firmware, which remembers them and boots them automatically. One quirk of VirtualBox is that it usually forgets these boot manager entries. The result is that the VM boots up into the EFI shell by default. There are several ways to deal with this problem, including:
- You can launch the boot loader manually by using the EFI shell:
- Type fs0: to access the first filesystem, which is usually the ESP.
- Type cd EFI\ , where is the name of the directory where your OS installed its boot loader. (You haven’t said what OS you’ve installed, so I can’t be sure what that is. Typing ls EFI will show you what’s there.)
- Launch the boot loader by typing its name. Again, I can’t know what that is. For Linux, it’s usually grubx64.efi . For Windows, it’s bootmgfw.efi .
- Automate the above procedure with an EFI shell startup script ( startup.nsh in the root directory of the ESP).
- Rename the boot loader to EFI\BOOT\bootx64.efi , which is the fallback filename:
- Type fs0: to access the first filesystem, which is usually the ESP.
- Type mv EFI\ EFI\BOOT to rename the directory in which the boot loader resides. As above, you’ll have to determine what is yourself.
- Type mv EFI\BOOT\ EFI\BOOT\bootx64.efi , where is the boot loader’s name, such as grubx64.efi for most Linux installations.
- Register the boot loader with the VirtualBox firmware by using the shell’s tools. I don’t know of a concise description of how to do this on the web, offhand, and I don’t have time to write it up here. It’s likely to be frustrating without precise instructions because there are a lot of non-obvious pitfalls you must avoid.
Personally, the solution I most often use is to rename the boot loader from the OS’s default to EFI\BOOT\bootx64.efi . This is the easiest to implement and it works well enough. One drawback to this approach is that if your OS ever updates the boot loader, the update will probably go to the original location, so you’ll have to repeat the process if you want to use the updated boot loader.
How to get out of EFI shell in virtual box
I am running a virtual machine for Mac OSX and it always boots into EFI shell, I just want a simple explanation of what this is and how, if possible, to exit it.
![]()
1 Answer 1
The EFI shell is a command-line tool similar in concept to bash in Linux/Unix/OS X or a Command Prompt window in Windows. It lets you view, delete, edit, and rename files, to update EFI boot manager entries, and so on. You can exit from the shell by typing exit ; however, in the case of VirtualBox, this will probably bring you to an EFI menu that can be just as confusing.
If you’ve installed an OS in your VirtualBox session, chances are it installed a boot loader on the EFI System Partition (ESP). Most OSes register these boot loaders with the firmware, which remembers them and boots them automatically. One quirk of VirtualBox is that it usually forgets these boot manager entries. The result is that the VM boots up into the EFI shell by default. There are several ways to deal with this problem, including:
- You can launch the boot loader manually by using the EFI shell:
- Type fs0: to access the first filesystem, which is usually the ESP.
- Type cd EFI\
, where is the name of the directory where your OS installed its boot loader. (You haven’t said what OS you’ve installed, so I can’t be sure what that is. Typing ls EFI will show you what’s there.) - Launch the boot loader by typing its name. Again, I can’t know what that is. For Linux, it’s usually grubx64.efi . For Windows, it’s bootmgfw.efi .
- Automate the above procedure with an EFI shell startup script ( startup.nsh in the root directory of the ESP).
- Rename the boot loader to EFI\BOOT\bootx64.efi , which is the fallback filename:
- Type fs0: to access the first filesystem, which is usually the ESP.
- Type mv EFI\
EFI\BOOT to rename the directory in which the boot loader resides. As above, you’ll have to determine what is yourself. - Type mv EFI\BOOT\
EFI\BOOT\bootx64.efi , where is the boot loader’s name, such as grubx64.efi for most Linux installations.
- Register the boot loader with the VirtualBox firmware by using the shell’s tools. I don’t know of a concise description of how to do this on the web, offhand, and I don’t have time to write it up here. It’s likely to be frustrating without precise instructions because there are a lot of non-obvious pitfalls you must avoid.
Personally, the solution I most often use is to rename the boot loader from the OS’s default to EFI\BOOT\bootx64.efi . This is the easiest to implement and it works well enough. One drawback to this approach is that if your OS ever updates the boot loader, the update will probably go to the original location, so you’ll have to repeat the process if you want to use the updated boot loader.
Как выйти из Efi Shell и security boot fail при загрузки Windows с флешки?

✅В данной инструкции вы узнаете, почему при покупке ноутбука Acer без операционной системы у вас постоянно вылетает efi shell и не дает установить Windows с флешки выдавая ошибку security boot fail и так постоянно, это не смотря на то, что мы используем команду exit и видим нашу флешку в загрузчике, но в биосе все равно не может войти.
Всем привет! сегодня я Вам расскажу как я купил ноутбук Acer extensa 15 без операционной системы и никак не могу установить windows 10 т.к. винда не хотел загружаться с флешки и даже не давала зайти в Bios.
Я уже писал инструкцию как установить windows на Efi shell но мне писали многие читатели что инструкция не рабочая т.к. команда EXIT хоть и выводила из режима UEFI Shell но войти в биос не давала и снова возращала в точку загрузки UEFI Shell и так постоянно и до бесконечности.
не буду описывать весь процесс перебора проб и ошибок чтобы не утомлять и не захламлять статью, а сразу перейду к делу.
Уже как год или больше я записываю образ windows на флешку через программу Rufus, на сегодняшний момент у меня была версия 3.13 через которую и записывал все флешки