

Recently, some users are using the Win11 system. Due to a Win11 system reset error, the computer starts with a blue screen and the system prompts that the recovery environment cannot be found. So how should you solve this situation? Let's take a look at how the editor operates. I hope the following tutorials will be helpful to you.
Try to reinstall. After restarting, it prompts ‘Windows cannot complete the installation’ with error code 0x80070002-0x2009. Even the one-click recovery that comes with the system cannot be used. What's happening here? How to reinstall? Can the file not be retained? ”
If you try to boot your computer into recovery mode, you will find that there are no options to choose from in Troubleshooter. Under normal circumstances, there are many repair functions available under "Advanced Options" in "Troubleshooter". At this time, you cannot use these repair functions without connecting the Windows installation or recovery media. Typically, the main reason for the inability to recover the environment is disabling or accidentally deleting the Windows recovery environment.
Possible reasons for the prompt “Recovery environment not found”
Generally speaking, the main reason is that the Windows recovery environment is disabled or accidentally deleted. Of course, there are other reasons too
1. The Winre.wim file is damaged or missing
2. There is no recovery mode in BCD
3. There is an error in the Windows RE configuration file ReAgent.xml
4. There is a problem or damage to the Windows registry
Solution
Method 1: Enable Windows Recovery Environment
In the command prompt window, enter and press Enter to execute the reagentc /info command. If the prompt is disabled, enter and press Enter to execute the reagentc /enable command to re-enable it
Note: If the status of the recovery environment is enabled, but it still prompts that the recovery environment cannot be found, you should check whether the Winre.wim file is damaged or missing
Method 2: Repair damaged or missing Winre.wim file
1. Enter in the command prompt and press Enter to execute the dir /a /s c:winre.wim command
Please note: Under certain circumstances, the Winre.wim file may be stored in a location other than the C drive. You need to change c: in this command to the corresponding drive letter
2. After finding the Winre.wim file, enter the following command in the command prompt to copy the file to the default location
attrib -h -s c:Recovery3b09be7c-2b1f-11e0-b06a-be7a471d71d6winre.wim xcopy /h c:Recovery3b09be7c-2b1f-11e0-b06a-be7a471d71d6winre.wim c:WindowsSystem32Recovery
3. Replace the Winre.wim file path with the default configured path. Please enter the following command:
reagentc /setreimage /path C:windowssystem32recovery
4. Enable the recovery environment and check its status. Please enter the following command:
reagentc /enable reagentc /info
If the Winre.wim file is damaged, you can extract the Winre.wim file from another computer and then copy it to the correct location on your computer. Or if you have the Install.esd file on your computer, you can unzip the file and then put the Winre.wim file inside to the correct location. Then use the reagentc /setreimage /path C:RecoveryWindowsRE command to configure WinRE.wim as the system default recovery environment boot image.
Method 3: Using installation or recovery media
If you perform improper operations when resetting your computer, it may also cause the computer to not be able to find the recovery environment. So what should you do if you can't find the recovery environment when restoring the computer to factory settings? If you have a Windows 10/11 installation disc or recovery media, you can use it to reset or restore Windows 10/11 without fixing this error.
Create an installation CD on a Windows 10/11 computer that can run the same version normally.
Connect the CD to the computer with the problem and set it as the priority startup item.
Select "Next" in the pop-up window.
Click "Repair your computer" and then select "Troubleshoot".
Click "Advanced Options" and then select the recovery tool to fix the "Recovery Environment Not Found" problem.
At the end, if the problem cannot be solved, you can only reinstall the system!
The above is the detailed content of Solution to the blue screen prompt that the recovery environment cannot be found when booting the Win11 system. For more information, please follow other related articles on the PHP Chinese website!

在使用PHP开发Web应用时,经常会遇到各种各样的问题。其中,一些常见的问题是与MySQL数据库相关的问题。有一种问题是“PHPWarning:mysqli_query():Emptyquery”的错误。本文将介绍此错误的原因以及解决方法。首先,让我们看看这个错误表示什么。当您使用mysqli_query函数执行MySQL查询时,如果该查询为空,则会

在使用PHP进行开发的过程中,有时候会遇到“PHPFatalerror:Cannotredeclare”错误,这个错误通常会出现在如下情况:在PHP代码中多次include/require同一个文件。在代码中定义了和已有的函数/类重名的函数/类。这个错误会导致程序无法继续执行,为了解决这个问题,我们需要了解其产生原因和解决方法。产生原

在使用PHP编写代码时,我们经常会看到这样的错误提示:“PHPNotice:Undefinedproperty:stdClass::$”。这个错误提示通常是由于在使用对象的属性时,该属性不存在而引起的。在本文中,我们将讨论如何解决这个问题。首先,我们需要了解这个错误提示的原因。当我们使用对象的属性时,PHP会首先检查该属性是否存在。如果该属性不存在,

在使用PHP程序开发时,经常会碰到一些警告或者错误的提示信息。其中,可能出现的一个错误提示就是:PHPWarning:date()expectsparameter2tobelong,stringgiven。这个错误的提示信息意思是:函数date()的第二个参数期望是长整型(long),但是实际传递给它的是字符串(string)。那么,我们

当我们在使用PHP进行开发时,有时会遇到”Tryingtogetproperty‘的解决方法’ofnon-object”的错误提示。这个错误的原因一般是因为程序中对一个不存在或者未实例化的对象进行访问,导致了PHP解析器无法识别该对象的属性或方法。那么,如何解决这个错误呢?下面我将为大家介绍几种可能的解决方法。一、检查代码首先,我们需要将出错的代

TranslucentTB是寻求时尚简约桌面外观的Windows11爱好者广泛使用的工具,遇到了障碍。自从发布以来Windows11内部版本22621.1344(22H2)28年2023月日,TranslucentTB对大多数用户不起作用。此错误使用户努力应对其任务栏的有限自定义选项。用户在寻求克服这一挫折的解决方案时,挫败感显而易见。在最近的Windows11更新之后,TranslucentTB无法正常工作的问题已在多个在线平台上广泛报道,包括论坛和社交媒体。用户一直在分享他们的经验,拼命寻找

当使用PHP开发Web应用程序时,经常会遇到“PHPNotice:Undefinedindex:”这样的错误消息。此错误消息通常与数组相关。在PHP中,当我们使用未定义的数组索引时,就会收到这种类型的错误消息。这通常会发生在以下情况下:尝试访问不存在的数组元素尝试使用错误的键来访问数组在本文中,我们将探讨如何解决此错误,并提供一些常见的应用程序开发实践

PHPWarning:array_push()expectsparameter1tobearray的解决方法在PHP开发中,我们常常会遇到“TheWarning:array_push()expectsparameter1tobearray”错误。这个错误通常表示我们使用了一个不是数组的变量作为array_push的第一个参数。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver CS6
Visual web development tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
