Create a hidden partition in windows 7. How to create a hidden recovery partition yourself


So, you have finished installing the operating system, drivers, updates and programs, checked its performance and stability, were satisfied with the result obtained and want to be able to “roll back” to this system state in case of unforeseen circumstances. Windows 7 is equipped with fairly powerful backup tools that can reduce the time it takes to restore the system. Those who have bought new computers with Windows 7 pre-installed are familiar with the restore function, after which the operating system, and sometimes the contents of the entire hard drive, is returned to its factory state. In this case, user files located on the hard drive may be lost.
If you have an installation disk with the operating system, you are spared from such losses (How to reinstall Windows 7, saving settings and installed programs), but subsequent installation of drivers and updates is inevitable. I offer you a method that will significantly reduce the time spent setting up the system after reinstallation; moreover, it does not require an installation disk. The article uses materials from Vadim Sterkin’s blog and a video report by Valery Volobuev Setting up the Windows Recovery Environment in Windows 7. The algorithm described below does not require specific knowledge and is relatively easy to implement for a home user. We will perform the task in the following order:
  • prepare a partition for the future recovery partition;
  • create a system image in the Windows RE environment;
  • configure the recovery environment;
  • Let's reinstall and reconfigure the recovery environment.

Preparing the recovery partition

First of all, we need to create a partition on which we will subsequently place the operating system image file, as well as the file for deploying the recovery environment. There are many ways to perform this operation, I will use standard tools: Disk Management and the command line utility DISKPART. You can read about this in the article “Disk Management in Windows Vista and Windows 7”. We will determine the partition size based on the current occupancy of the partition with the operating system and the availability of free space. For example, if the system takes up about 20 gigabytes, the optimal size would be from 5 to 10 gigabytes. In my example, the section D:\ was first compressed

Figure 1 – compression of partition D:\

Then in the resulting unmarked area

Figure 2 – unallocated disk space after compression

Using the utility DISKPART a primary partition was created, formatted, and a label was assigned to it Recovery and letter R. (DISKPART was used due to the fact that using Disk Management, the fourth partition created will be an additional one. You can experiment with placing the recovery partition on an additional partition.) Run sequentially:
::Start DISKPART
Diskpart

Sel disk 0
::Creating a primary partition on the entire unallocated area of ​​the disk. If necessary, specify the partition number using the LIST PART command
Create partition primary
::Quick formatting of the created partition and assigning the “Recovery” label to it
Format LABEL=”Recovery” quick
::Assigning the letter R to a section:
Assign letter=R
::Stopping DISKPART
Exit

Figure 3 – work in DISKPART

Here and in what follows, we will work in a command line launched with administrator rights. Before moving on to capturing an operating system image, create a R:\ folder WinRE for storing it.

Figure 4 – WinRE folder at the root of the future recovery partition.

Creating an operating system image

First of all, study the article “Creating a customized operating system image”. It describes the principles and tools, namely the utility imagex.exe, part of the Windows AIK. Depending on the bitness of the system, you must use the appropriate version of this utility. I have posted both versions of them on the section D:\ in folder WAIKTools.

Figure 5 – WAIK Tools folder on a non-system partition

I also strongly recommend Vadim Sterkin’s article for review and guidance: “How to quickly determine drive letters in the recovery environment or Windows PE.” This knowledge will help us not to make mistakes in the command syntax for capturing an operating system image. Restart your computer and enter the recovery environment (to do this, press F8 after turning on your computer and select "Troubleshoot your computer" from the advanced boot options menu).

After downloading, launch the command line and text editor: notepad Using the “Open” menu (Ctrl + O) determine the partition letters. In my example, as can be seen from Figure 7, the system section received the letter D:\ , utility imagex.exe is in the folder E:\WAIKTools\ , and the section Recovery– letter F:\ .

Figure 7 – partition letters in the WindowsRE environment

One note: since we will not need to transfer the customized image to another computer, we will use the command given in the “Boot to Windows PE and save the image using the ImageX utility” section of the above article.
Run the command:

"E:\WAIK Tools\amd64\imagex.exe" /capture D: F:\WinRE\install.wim "Windows 7 Ultimate SP1 Custom"

Necessary clarifications:

  • "E:\WAIK Tools\amd64\imagex.exe" - Path to the imagex.exe utility. Quotes are used to avoid problems with spaces in the folder name.
  • /capture D: - The key indicates the capture of the system image located on the D: partition (as seen in WindowsRE).
  • F:\WinRE\install.wim "Windows 7 Ultimate SP1 Custom" - Saving the captured image to the install.wim file (this is important, since in this case only this name is valid) in the F:\WinRE folder. A file comment is specified, and the default compression method is used (compress maximum).

Figure 8 - creating an operating system image in the Windows RE environment

Quit WindowsRE and reboot. Let's move on to the final stage of creating a recovery partition.

Setting up the recovery environment.

In addition to the operating system image file, I decided to place a file on the new partition that would boot into the recovery environment. With this arrangement, it will not depend on the partition with the operating system. As you know, the recovery environment is deployed from an image file WinRE.wim located in the folder Recovery at the root of the system partition. Access to this folder is blocked through Windows Explorer. The file attribute is hidden system. How to place the file in the location we choose?
Let's use command line utilities. First, disable the recovery environment. Please note that Any actions with the recovery environment must be preceded by disabling it! To do this, on the command line run

Reagentс /disable

After running this command the file WinRE.wim will move to the folder c:\Windows\System32\Recovery. From it we will copy the file to the folder R:\WinRE.
Use the command xcopy with key / h:

xcopy /h c:\Windows\System32\Recovery\winre.wim r:\WinRE

Figure 9 – copying the WinRE.wim file

And finally, a few final chords:

/ path ) to the system image file located in the folder specified by the key/ target
Reagentc /setosimage /path R:\WinRE /target c:\Windows
::Set custom path (key/ path ) to the system recovery environment deployment file located in the folder specified by the key/ target
Reagentc /setreimage /path R:\WinRE /target c:\Windows
::Enabling the recovery environment
Reagentc /enable
::Checking recovery environment settings
Reagentc/info

As can be seen from Figure 10, the setup was successful. Do not close the window - the command line will still be needed.

Figure 10 – setting up a custom recovery environment.

It will be interesting to see what changes have taken place in the section Recovery. To do this, enable the display of hidden and system files.

Figure 11 – changing the contents of the R section.

As you can see, the file WinRE.wim in folder WinRE no, but a folder appeared Recovery at the root of the section. Believe me, the file is now in it. I will not dwell on the structure of the Recovery folder - if you wish, you can study its contents, and also compare with the BCD parameters (using the command bcdedit /enum all). All that remains is to protect the section from accidental impact from users. To do this, you need to hide it from Explorer and exclude the ability to work with it in Disk Management. The utility will help us with this again Diskpart. On the command line, run sequentially (the disk and partition numbers correspond to the configuration given in the article):

::Start DISKPART
Diskpart
::Disk selection. If there are several of them, then the number of the required disk is determined by the LIST DISK command
Sel disk 0
::Selecting a section. If necessary, specify the partition number using the LIST PART command
Sel part 4
::Deleting a letter - the partition will be hidden in Windows Explorer
Remove
::Setting the section IDID=27.This ID is set specifically for recovery partitions. It becomes impossible to work with such a partition in Disk Management, which provides additional protection for it
Set id=27

Figure 12 - working with the recovery partition in DISKPART

Changes that have occurred in the system

Firstly, the partition is not visible in Windows Explorer, and it does not have a context menu in Disk Management.

Figure 13 – Explorer and Disk Management Manager.

Secondly, in the Advanced Recovery Methods window in the description of reinstalling Windows, there is no requirement to have an installation disk.

Figure 14 – Windows advanced recovery methods menu.

Thirdly, the recovery environment menu has changed:

Figure 15 – additional menu item in Windows recovery options in the recovery environment

This could have been the end of it. But there is a need to dwell on several nuances that arise after reinstalling the system in this manner. I will reinstall the system from the recovery environment.

Setting up a recovery environment after reinstalling the system

For the purity of the experiment, I will format the partition with the system and the partition with the download files. Moreover, I strongly recommend formatting the “System Reserved” section to avoid confusion with loading in the future.

Figure 16 – formatting partitions in the WindowsRE environment.

No user participation is required during the reinstallation process. You will receive a system identical to the one you had at the time you took the image.

Figure 17 – beginning of system reinstallation.

The only thing is that after reinstalling you need to make a few changes:

  1. Due to a complete rebuild of the BCD, the recovery environment must be reconfigured.
  2. hide section in explorer Recovery.
Disable the recovery environment with the command

Reagentc /disable

Turn on display of hidden and system files, open the folder WinRE on the section R:\ and make sure the file exists Winre.wim. If necessary, copy it from the folder Windows\System32\Recovery or from a folder R:\Recovery\xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx. After that delete the folder Recovery on the section R:\ .

Figure 18

Then enable the recovery environment: Reagentc /enable Make sure the settings are correct (note that the name of the folder where the WinRE.wim file is located in the Recovery folder is different. Therefore, before connecting the recovery environment, you can safely delete the old one.):

Reagentc/info

Figure 19 – connecting the recovery environment after reinstallation.

Remove the letter from the partition R:\

Diskpart
Sel disk 0
Sel part 4
Remove
Exit

Your computer is ready for a fresh reinstallation. One final note. While performing numerous reinstallations while preparing this article, I noticed the appearance of an incomprehensible folder in the list of available drives on the “System Protection” tab. This may be due to the missing folder in the system image SystemVolumeInformation or changing section IDs.

Figure 20 – phantom partition in the list of available disks on the “System Protection” tab.

To get rid of the strange folder, disable system protection on this phantom partition and enable it on the partition with the current system.

Conclusion

There are probably easier ways to make reservations, especially using different programs. I don’t pretend that you will definitely use the method described above, but I think it’s convenient and practical. Of course, the system will be updated over time. To keep the image up to date, periodically rewrite the file in Windows RE Install.wim.

The simplest answer to the question of what AOMEI OneKey Recovery is is a program for creating files to restore the system and return it to the parameters that it did not have at the time the files were created. This is a necessary function when it is necessary to restore a hard drive partition in the event of a system failure, frequent errors that cannot be resolved otherwise, etc. That is, this is some alternative to reinstalling the OS in case of irreparable violations in its operation.
System recovery is possible using a program with AOMEI OneKey Recovery

Creating a recovery partition

Creating a recovery partition should not be done when the system has been actively used for a long time. Because in this case, a lot of unnecessary and disposable software is already installed in it, and viruses, spyware and the like could also get into it. The ideal time for this is the period when a clean and complete reinstallation of the system has occurred. However, the system restored from such a save is not particularly functional, and therefore after reinstallation it is worth installing the necessary firewood and a minimum of important applications. Then generate a windows recovery partition. Thus, if a difficult situation arises, you will restore the system to its “clean” working state without unnecessary software and files.

To create a hidden recovery partition on your PC hard drive, follow these steps:

  • Allocate space on your hard drive for saving. This must be done before starting the program. To do this, press Win+R and enter diskmgmt msc in the field that opens. Press Enter. The Hard Media Management console will open;
Right-click on the last volume of Disk 0, as in the screenshot
  • In the drop-down menu, select Shrink volume to create a subspace for the recovery department;
  • Specify the amount to which you want to shrink the volume. This will be the volume of the future recovery storage. You need to specify a volume equal to that occupied by system files on drive C. In fact, the archive itself will be slightly smaller;
  • Confirm your choice and wait for the compression process to complete. Once a separate space has been allocated, you can proceed to the next steps.

All these points are required if you are going to create a hidden partition on your hard drive using onekey recovery. If you need an archive on external media, which can also be created using the program, then you can skip the above steps. The further algorithm must be repeated regardless of what medium you are going to record.

  • Enable Aomei onekey recovery;
  • In the menu that opens, select OneKey System Backup if you are placing data on a floppy or hard drive;
Fig.1. OneKey System Recover - if you need to restore the OS from a previously generated recovery storage (this function is launched not only from the software window, it can also be selected during boot)
  • To create a recovery archive, select the left button;
Fig.2. The program asks whether to create it on a hard drive or on external media
  • Choose what you need;
  • If you select a hard drive, a window with parameters will open;
Fig.3. You cannot configure it, so confirm your choice by clicking on Start Backup
  • If you are using an external drive, the screen will display less information, click Start Backup;
  • Wait until the files are created;
  • Restart your computer.

Depending on the parameters of the OS, PC, file size and future recovery archive, the creation process lasts from half an hour to an hour. A recovery section has now been created, which will allow you to return the OS to a working state without reinstallation.

Fig.4. Please note that when the computer boots, another item appears next to the standard options - Run AOMEI OneKey Recovery
  • When you click on it, you will begin system recovery. Moreover, it happens quickly.

To prevent this item from bothering you, remove it from the menu through the program or boot options. However, it is not advisable to get rid of it, because a situation may arise when logging into the OS is impossible without “rolling back” the OS. And when the item is not in the boot menu, it is only possible to restore the hard drive partition from the application. To remove it, boot into Windows and press Win+R. In the print field, type msconfig. Go to the Downloads tab and disable this feature. In addition, you can update or restore a hidden partition through the utility.

Features of the recovery system

The OneKey recovery system is freely available. You can download it from the developer’s official resource http://www.backup-utility.com/onekey-recovery.html. The advantages of this utility include ease of use. It is easy to install and even an inexperienced user can create a recovery storage with it. The operating speed is high compared to its closest competitors.

Another plus is versatility. Using the program, you can recover disk d or another from external media and from a hidden archive on a hard drive. Because the program creates the necessary archive both on removable media (flash drive or disk) and on local one (however, for this you will have to create additional storage on a hard drive).

You can perform a recovery using the utility both when the OS is running, from a running PC, and when booting, which is convenient when serious problems occur that make working on the PC impossible. The boot repair button is automatically built into the corresponding menu next to other options immediately after creating the repository. The rollback process is initiated by pressing button A while the computer is booting.

WATCH THE VIDEO

Now you know how to create a recovery partition.

Many users of Windows 7, as well as 8 and 8.1, are often unaware of the existence hidden section on your computer. Microsoft engineers hid it from the eyes of the average consumer (this is where the “popular” name came from - hidden section), this area on the disk. However, you can still see it in a special applet in the control panel called “ Disk Management" How to get there? Very simple! Open the Control Panel (in Windows 7 you can use the “Start” button, in Windows 8 through the search by entering “Control Panel” in the search bar):

And we got into the applet " Disk management».

That's hidden section- a shaded rectangle with a size of 300 MB in Windows 8, and if you have a “seven”, then it will be about 30 MB in size. Notice how he “plumped up” tenfold! :)

This area does not have a familiar drive letter, like the C:\ drive, for example. What is its purpose?

Hidden section (aka system reserved partition from English " System Reserved") in Windows 7 and later versions of Windows 8 and 8.1 is intended to protect system boot files OS (operating system).

Some technical information about what's there:

  • BCD- download storage configuration files
  • bootmgr- Windows system boot loader

Among ordinary users, there is an opinion that using this section you can restore the system in the event of any software failure. It is also often called recovery partition. This is a little not true specifically for Windows 7, because the size of this area ( System Reserved) barely exceeds 30 MB in the “seven”. All recovery files are located in the hidden Recovery folder. Previously, I described how easy and painless it is to produce.

In Windows 8, these files were moved to the System Reserved partition, which is why it became almost 3 times thicker - 300 MB in the “eight”.

Indeed, the recovery environment is entered from the hidden partition; however, the recovery image is then loaded from the hidden Recovery folder, which is physically located in the root of the C:\ drive in Windows 7.

At the same time, one must understand that hidden section it's not the same as system recovery partition. The first, as I already said, is reserved by the system for download files. The second is created by manufacturers of mobile computers (laptops, for example) to restore the PC to its original, or factory, state.

However, Windows 8 has its own recovery partition, separate from the laptop manufacturer's.

There may not be a hidden section

Yes, it may well be that you specifically may not have a hidden partition in the system. Why does this happen? In order for it to be created when installing the system on a computer, several conditions are necessary:

  1. First, the installation must be done from any external device, for example, a DVD or USB drive. In this case, it will not be possible to perform operations with partitions on a stationary disk.
  2. There should be no more than three main, that is, primary (primary) disk partitions before installing the system. If you already have four of them at the time of installation, then a hidden partition (100 MB) will not be created. The download files will simply be copied to the active partition. By the way, it is not a fact that they will be located on the partition with the system files. Like this!
  3. The partition in which Windows is installed must be the first in the literal sense of the word, that is, the topmost in the installation window.
  4. The OS installation area should not be marked. If there is no such area, you will have to first delete one of the main partitions and then create it again. Of course, if there is no need for a reserved area (System Reserved), then simply do not delete the previously created partition.

Here it is necessary to make a reservation that it is necessary to install on an active partition, since otherwise the partition that was active before installation may disappear (become invisible). The fact is that Windows it simply deletes its letter during its installation. However, the problem is solved in the Disk Management applet by setting the letter to the active partition.

Advantages of a hidden section

The most important advantage of the hidden section is download file protection from accidental change or damage. This partition is not negatively affected by disk space compression. You can completely safely restore the boot in case of failure, without reinstalling Windows.

Of course, a hidden partition is a significant help when it is necessary to restore the system due to operations performed by an inexperienced user.

Disadvantages of a hidden partition

These are not even disadvantages, but rather inconveniences. As I wrote above, they are related to the fact that when used together on one computer, say, Windows XP and Windows 7 and 8, it becomes necessary to assign a letter to a hidden disk partition, and then delete it in order to copy Windows XP boot files there.

So, a system-reserved hidden partition in the latest versions of Windows is an excellent way to protect important system boot files from rash user actions.

Preparing for work.

First of all, save all the data you have on the disk, as the disk will be completely formatted.

To successfully complete all operations, you will need the following:

1. Download and unpack the D2D.rar archive ( , ). Burn the contents of the archive onto a CD or any other medium;

2. Windows XP installation disk;

3. Acer Recovery CD and Application CD (these discs are supplied with the computer or you make them yourself after the first start of the computer and
corresponding utility request Acer eRecovery Management);

4. Program gdisk32.exe(you can find it in the D2D.rar archive in the Factory folder);

5. A program for working with archives (in this case you will need WinRAR or free 7-Zip);

6. Optimism and confidence in success!

If your computer was released before December 2005 and the backup archive was made using the ghost program, then you can use this image by first burning it to a CD. This boot disk will automatically create a hidden partition and copy the system image files (with the extension ghs, hdd), as well as the files in the patch folder, to the created hidden partition. So having recovery disks and a system disk created using the eRecovery program is a must. Be careful! All data on the hard drive will be destroyed! I wrote all the comments to the commands in English, sorry :)
If the NAPP version for your laptop model is 4.x.x. (Empowering Technology version for such computers is 2.0.x), then download these files for the hidden partition (link 1 and link 2) and follow the steps described below. Attention! This version of NAPP usually requires more space and the size of the hidden partition should be 5 GB or more! It is possible to change the current version of NAPP (3.3.x.x) to version 4.0.1.x (see "Addendum" at the end of the article).

Creating hard disk partitions and installing the operating system

Removing and creating hard disk partitions can be done directly in the Windows environment using the program gdisk32.exe. First of all, make sure you save all your data as it will be completely deleted from your computer.

1. Copy the file gdisk32.exe to a location convenient for you, for example, to drive C:

2. Launch the command line (Start-> Execute enter cmd and press Enter) or as shown in the screenshot:

3. Enter the command C:gdisk32 1 and press "Enter" to display all available partitions on the hard drive.

4. Enter the command C:gdisk32 1 /del /all and press "Enter" to delete all hard drive partitions:

C:gdisk32 1 /cre /pri /V:PQService /SZ:3500 /for /ntfat16– this is a command for creating the first section, which will be hidden in the future. Team /SZ:3500 specifies the partition size in MB. You can choose it as you wish, but there must be enough space for all the files in the hidden partition, including system image files.

C:gdisk32 1 /cre /pri /V:ACER /SZ:20000 /for– a command to create a partition where the operating system itself will be located. You can also choose the size at your discretion.

C:gdisk32 1 /cre /pri /V:ACERDATA /for– command to create the last, third section. It is not necessary to specify a size and the partition will be created based on the entire remaining hard disk space.

To the question “A primary DOS partition already exists. Create another? We answer by pressing the key “ Y».
As a result, you will get the following disk layout (when you enter the command C:gdisk32 1):

Note: in this example (screenshot), do not pay attention to the sizes of the disks - you will have your own (of course, larger ones) and are shown here only as an example.

Before installing the operating system, you must make the first partition hidden and the second partition active. To do this, use the following commands:
C:gdisk32 1 /hide /P:1- the first partition has become hidden, but there is no active partition on the disk, so the next step is:
C:gdisk32 1 /act /P:2- now the second section has become active.

6. The hard disk structure has been created. Now you can start installing MS Windows XP (any version). Install the installation CD with MS Windows XP and reboot the computer. Press F12 during boot (a window will appear where you can choose to boot from CD/DVD). Otherwise, you need to go into the BIOS and select boot from CD/DVD. Follow the instructions of the installation program. To install the operating system, select partition 2, this is required.

We install the operating system in the usual way. After installing the operating system, go to “Start -> Control Panel -> Administrative Tools -> Computer Management -> Disk Management” (or right-click on “My Computer” - “Manage -> Disk Management”) and make sure that the system is installed in the right place. If the last partition is not allocated, you can easily create a main partition from it by right-clicking it. It can be either FAT32 or NTFS.

After all of the above, your hard drive structure should look something like this:

It is advisable to immediately change the drive letters ACERDATA (E:) and CD-ROMa (D:). To do this, right-click on the selected device and select “change drive letter or drive path...”. For CD-ROMa we set the letter F:, then for the ACERDATA drive we select the letter D:. Next, apply the letter E to the CD-ROM: As a result, we get the following:

Creating a hidden section "PQService".

1. Now we need the gdisk32.exe file again. Let's copy it to a location convenient for you (for example, to the root of the C: drive). On the command line (this has already been described above), enter the command C:gdisk32 1 and look at the disk structure:

The first section is hidden (Status - H) and to work with it you need to open it. To do this, use the command here C:gdisk32 1 /-hide /P:1 and press “Enter”.

For the changes to take effect, you must restart your computer. After the restart, you will see the following picture in Windows Explorer (the “PQService” disk has appeared):

2. The next step is to copy the entire contents of the D2D.rar archive to the “PQService” drive (F:)

After that, copy the contents of the folders IMAGES And PATCH, located on the Acer Recovery CD/DVD, and place it in the folders accordingly IMAGES And PATCH located on the “PQService” disk in the folder D2D. We also copy files from Acer Recovery CD/DVD RCD.dat And SCD.dat(if there is, then SWCD.dat) to the root of the “PQService” disk.

After copying the files to the D2DImages folder, you must also create three files here (in this folder) with the name corresponding to the name of the image file. For example, your image file is 71EO4303.wsi, then the files will have names 71EO4303.P1 71EO4303.P2 71EO4303.ALL (only the extensions are different). In the contents of the files, you also need to write down the name of the system image archive (see below - instead of ******, put the name of your image):

Contents of file ******.P1


OPNUMBERS=1


OPERATION=RESTOREDRIVE
SOURCE=Z:Images******.WSI
DES=\HARDDISK0PARTITION1
FORMAT=ORIGINAL
TITLE=RESTORE PARTITION

Contents of file ******.P2


OPNUMBERS=1


OPERATION=RESTOREDRIVE
SOURCE=Z:Images******.WSI
DES=\harddisk0partition2
FORMAT=ORIGINAL
TITLE=RESTORE PARTITION
CHANGECD=Please insert next disk and Click to Continue.

Contents of the file ******.ALL


OPNUMBERS=2


OPERATION=PARTITIONDISK
DES=0
Partitions=100%b,
TITLE=CREATE PARTITION


OPERATION=RESTOREDRIVE
SOURCE=Z:Images******.WSI
DES=\HARDDISK0PARTITION1
FORMAT=ORIGINAL
TITLE=RESTORE PARTITION
CHANGECD=Please insert next disk and Click to Continue.

These files are necessary for the correct creation of recovery discs.

Now you need to change the obr3.ini file (see screenshots below). Open it in notepad and find the lines

ImageFileName=
ImageFileNumber=

Enter the name of your system image (see D2DIMAGESacerxxxx.wsi) and the number of files, for example:
ImageFileName=acerxxxx.wsi
ImageFile-Number=42

(count only image files, do not count files with the extension .ALL .P1 .P2). Save the file. Next, I highly recommend copying two files mbrwrwin.exe And rtmbr.bin(from the root of the “PQService” drive) to the root of the C: drive. These files will come in very handy soon.

3. Next, you need to restore the bootloader of the first partition so that in the future you can boot the recovery system from it.
To do this, restart the computer and boot it from the Windows XP installation CD.
When the installer displays installation options, select “...using the console
recovery", that is, press R.

So, you now see two systems: 1:minint and 2:windows. For example, D:minint and C:Windows.

You need to go to one of them by typing 1 or 2 . If you don't have an administrator password, just press "enter". Next, enter the command fixboot D:(be careful, the name of the disk where minint is located may be different for you, here D: is given as an example). Confirm the bootloader entry by pressing Y and that's all. Team exit will restart your computer. The system will boot normally.

4. Now you need to make the first section hidden and working. To do this, we use the files copied earlier mbrwrwin.exe And rtmbr.bin in the root of drive C: Launch the command line by clicking “start all programs standard command line”, in the window that appears enter C: mbrwrwin install overwrite rtmbr.bin and press “Enter”. You will see a message that the bootloader installation was successful.

You can safely restart your computer.

5. After rebooting the system, make sure that the first partition has become hidden and its configuration EISA(there should be a warning that the installation of new devices is complete and you need to restart the computer, which is what we do). Next, go and look at “control panel – administration – computer management – ​​disk management”.

If everything is in order, you can try to use the recovery function by simultaneously pressing the AltF10 buttons when booting the computer. If everything starts and you see the Acer Recovery Management Environment window, congratulations, restore the factory configuration.

An image of drivers and programs preinstalled on the computer (AUTORUN folder)

The AUTORUN folder contains a file (SFX archive) that contains drivers and programs for your laptop. I hope you have an Application CD. Copy the entire contents of this disk to your hard drive in some folder (for example, Autorun). Having selected all the files from this folder, add them to the SFX archive with the following parameters (the “General” tab): “extract path” - C:windowssystem32autorun; “Run after unpacking” CheckFiles.exe; celebrate "Absolute Path" And "Save and restore paths". In the tab "Modes" celebrate "Hide All" And "Overwrite all files without prompting".

Autorun.exe. When you open the file properties you should see the following:

That's it, copy it to a folder AUTORUN in a hidden section. The hidden partition has been restored.

If you do not have such a disk, you can make it yourself by downloading the “skeleton” of the disk and placing your drivers and programs in the appropriate folders.

Useful tips

If you're having trouble seeing a hidden section, making it visible is quite simple. You need to run the command again mbrwrwin.exe(now you can take it in the folder C:AcerEmpowering TechnologyeRecovery..or in another place, depending on the laptop model) Do it mbrwrwin mount hd0:1 J: Where J: any letter of the alphabet you like (the main thing is that you do not have disks with such a letter in the system). Now in Explorer you can easily work with the first partition, as with a regular hard drive partition.
You can also use a special utility to mount a hidden partition. It also asks you to select a drive letter and partition.
And here you can see information on the types (ID) of all existing sections :)
Partition types: List of partition identifiers for PCs

ADDITION

You can change the NAPP version of your hidden partition from version 3.3.x. (not 3.2.x.!!!) to version 4.0.10 to allow the eRecovery program to work with NTFS and Empowering Technology version 2.0.x. To do this, mount the hidden partition (see above), open the napp.dat file in Notepad and look at your version of NAPP. Make sure the version is 3.3.x. Take the files of this archive (napp4.addon) and unpack them directly into a hidden partition (to the root), replacing the files if the program asks. The rcd.dat, scd.dat and swcd.dat files remain intact. You should only edit the obr3.ini and obr3.acr files in notepad, replacing the "*" symbol with your values. After this, you can safely install Empowering Technology version 2.0.x. and eRecovery for this version (you need to reinstall eRecovery version 2.0.xxxx) will work.
PS. How to run Empowering Technology for Windows XP in Russian. The latest Empowering applications for Vista work in Russian without problems. Versions tested for XP:
Empowering Technology 2.3.4001 and 2.3.5003,
eNet 2.5.4003,
ePower 2.0.4002 and 2.0.5006,
ePresentation 2.0.4000,
eData 2.0.4088,
eLock 2.1.4003,
eRecovery 2.0.4003 and 2.0.5001 (work in ET versions 2.3.4001 and 2.3.5003, respectively),
eSettings 2.3.4005,
ePerformance 2.0.2007.
Of these applications, only the Framework itself, eData Security, eRecovery and eSettings work in Russian. I haven’t checked the availability of newer versions yet, but the “Russian language” may be implemented there. So, to be able to work in Russian, open the registry editor (command line - enter the regedit command). We are looking for the following thread:
HKEY_LOCAL_MACHINESOFTWAREAcerEmpowering Technology 2.0Framework
Find the line MachineType and use the right button (change) to change the value 0 to 1
After this, ET will be displayed in Russian and all applications that support Russian will also be in Russian.

Good luck!

P.S. I changed the wallpaper when loading the Acer eRecovery Management Environment utility. This image appears when you boot the Acer NAPP CD version 5 to create a recovery shell with Windows Vista preinstalled.
And one more thing... programs for working with hard drive partitions are enemy number one for your computer! Use the operating system itself or a program developed by your computer manufacturer.

The material was prepared specifically for http://site (author – Guryev Denis, GDenis)
e-mail [email protected]
(modification of material, copying and distribution only with the permission of the author)

Views: 174,815 →
Editor's Choice
Purpose of the study: With the help of literary and Internet sources, find out what crystals are, what science studies - crystallography. To know...

WHERE DOES PEOPLE'S LOVE FOR SALTY COME FROM? The widespread use of salt has its reasons. Firstly, the more salt you consume, the more you want...

The Ministry of Finance intends to submit a proposal to the government to expand the experiment on taxation of the self-employed to include regions with high...

To use presentation previews, create a Google account and sign in:...
William Gilbert formulated a postulate approximately 400 years ago that can be considered the main postulate of the natural sciences. Despite...
Functions of management Slides: 9 Words: 245 Sounds: 0 Effects: 60 The essence of management. Key concepts. Management Manager Key...
Mechanical period Arithmometer - a calculating machine that performs all 4 arithmetic operations (1874, Odner) Analytical engine -...
To use presentation previews, create a Google account and sign in:...
Preview: To use presentation previews, create a Google account and...