यदि आप संपूर्ण विंडोज रजिस्ट्री को हटाते हैं तो क्या होता है?

विषयसूची:

यदि आप संपूर्ण विंडोज रजिस्ट्री को हटाते हैं तो क्या होता है?
यदि आप संपूर्ण विंडोज रजिस्ट्री को हटाते हैं तो क्या होता है?

वीडियो: यदि आप संपूर्ण विंडोज रजिस्ट्री को हटाते हैं तो क्या होता है?

वीडियो: यदि आप संपूर्ण विंडोज रजिस्ट्री को हटाते हैं तो क्या होता है?
वीडियो: How to Add Email Account to Outlook 365 on MacOS - YouTube 2024, अप्रैल
Anonim
विंडोज रजिस्ट्री एक ऐसी जगह है जिसे अकेले पर्याप्त छोड़ दिया जाना चाहिए, लेकिन सिर्फ तर्क के लिए, यदि आप पूरी चीज को हटा देते हैं तो क्या होगा? आज के सुपर यूज़र क्यू एंड ए पोस्ट में पाठक की जिज्ञासा को पूरा करने के लिए संभावनाओं पर चर्चा की गई है।
विंडोज रजिस्ट्री एक ऐसी जगह है जिसे अकेले पर्याप्त छोड़ दिया जाना चाहिए, लेकिन सिर्फ तर्क के लिए, यदि आप पूरी चीज को हटा देते हैं तो क्या होगा? आज के सुपर यूज़र क्यू एंड ए पोस्ट में पाठक की जिज्ञासा को पूरा करने के लिए संभावनाओं पर चर्चा की गई है।

आज का प्रश्न और उत्तर सत्र हमारे पास सुपरयूसर की सौजन्य है - स्टैक एक्सचेंज का एक उपविभाग, क्यू एंड ए वेब साइट्स का एक समुदाय संचालित समूह।

विकिपीडिया की स्क्रीनशॉट सौजन्य।

प्रश्न

सुपर यूज़र रीडर SkYWAGz जानना चाहता है कि क्या होगा यदि संपूर्ण विंडोज रजिस्ट्री हटा दी गई थी:

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

क्या होता है यदि संपूर्ण विंडोज रजिस्ट्री हटा दी जाती है?

उत्तर

सुपरयूसर योगदानकर्ता डैनियल बी और सेंटडब्ल्यू के पास हमारे लिए जवाब है। सबसे पहले, डैनियल बी:

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.

एसटीडब्ल्यू से जवाब का पालन करें:

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.

स्पष्टीकरण में जोड़ने के लिए कुछ है? टिप्पणियों में विचार व्यक्त करो। अन्य तकनीक-समझदार स्टैक एक्सचेंज उपयोगकर्ताओं से अधिक उत्तरों पढ़ना चाहते हैं? यहां पूर्ण चर्चा धागा देखें।

सिफारिश की: