Какво се случва, ако изтриете целия регистър на Windows?

Съдържание:

Какво се случва, ако изтриете целия регистър на Windows?
Какво се случва, ако изтриете целия регистър на Windows?

Видео: Какво се случва, ако изтриете целия регистър на Windows?

Видео: Какво се случва, ако изтриете целия регистър на Windows?
Видео: Почта на Mac book - настройка - YouTube 2024, Може
Anonim
Регистърът на Windows е едно място, което трябва да остане достатъчно добре сам, но само заради аргумента, какво би станало, ако изтриете цялото нещо? Днешният пункт SuperUser Q & A обсъжда възможностите, за да задоволи любопитството на читателя.
Регистърът на Windows е едно място, което трябва да остане достатъчно добре сам, но само заради аргумента, какво би станало, ако изтриете цялото нещо? Днешният пункт SuperUser Q & A обсъжда възможностите, за да задоволи любопитството на читателя.

Днешната сесия за въпроси и отговори ни идва с любезното съдействие на SuperUser - подразделение на Stack Exchange - обединяване на уеб сайтове с въпроси и отговори.

Screenshot от Уикипедия.

Въпроса

Reader на SuperUser SkYWAGz иска да знае какво ще се случи, ако целият системен регистър на Windows бъде изтрит:

I have been wondering what would happen if I deleted the entire Windows registry (using the following code for instance). Would my PC stop working?

  • cd %TMP%
  • reg query HKCR> RegTest.txt
  • reg query HKCU>> RegTest.txt
  • reg query HKLM>> RegTest.txt
  • reg query HKU>> RegTest.txt
  • reg query HKCC>> RegTest.txt
  • @pause && cls
  • for /f “delims=” %%I in (RegTest.txt) do reg delete “%%I” /va /f

Какво се случва, ако целият системен регистър на Windows бъде изтрит?

Отговорът

Сътрудниците на SuperUser Daniel B и StW имат отговор за нас. Първо, Даниел Б:

You cannot delete the root nodes since they do not physically exist. You can, however, delete their contents via Regedit (as opposed to reg).

Regedit hangs as soon as I try to delete HKLMSYSTEM. After resetting the VM (because I am lazy), I get the following screen (the operating system is Windows XP):

(Translation: “Windows could not start because the following file is missing or corrupt: WINXPsystem32configSYSTEM”)
(Translation: “Windows could not start because the following file is missing or corrupt: WINXPsystem32configSYSTEM”)

So yes, deleting stuff from the registry will absolutely positively kill Windows. And unless you have a backup, restoring it is impossible.

Последвано от отговора на StW:

Windows stores a lot of critical information in the registry, which is loaded (at least a part of it) during an early stage while booting. If you remove this information, Windows will be unable to find and load critical system files and thus be unable to boot.

Such critical information is the list of device drivers needed for booting the system. This may include:

  • Disk drivers (Floppies, Hard-Disks, CDs, USB Devices, …)
  • Bus drivers (IDE, SATA AHCI, …)
  • File system drivers (FAT, NTFS, …)

However, by default Windows stores a backup copy of the registry. If you have enabled System Restore, you can find such copies in the (hidden) System Volume Information Folder inside the root folder of the system partition. Additionally, even if you do not have System Restore enabled, Windows saves a backup copy of the registry in %WINDIR%System32configRegBack.

You can manually copy the backup files into %WINDIR%System32config to restore the registry data.

Имате ли нещо, което да добавите към обяснението? Звучи в коментарите. Искате ли да прочетете повече отговори от други потребители на Stack Exchange? Вижте цялата тема на дискусията тук.

Препоръчано: