A practical registry Utility

Source: Internet
Author: User

Usage of the relevant registry:
When saving the following code as the Registry, note that the Windows Registry Editor Version 5.00 and the following line have an empty line.
If an SQL installation prompt is displayed, You can suspend the import to the Registry.

Copy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ Session Manager]
"PendingFileRenameOperations" = ""

Enable the automatic operation feature of the driveCopy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer]
"NoDriveTypeAutoRun" = hex :,

Disable the automatic operation feature of the optical drive hard driveCopy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer]
"NoDriveTypeAutoRun" = hex: BD, 00,00, 00

Cancel automatic disk ScanCopy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE \ SYSTEM \ ControlSet001 \ Control \ Session Manager]
"BootExecute" = hex (7): 61,00, 75,00, 6f, 00, 6b ,\
, 61, 00, 6f, 68, 00, 6b, 00, 2f, 00, 6b, 00, 3a, 00 ,\
20, 00, 2f, 00, 6b, 00, 3a, 00, 00, 2f, 00, 6b, 00, 3a, 00, 00, 2f, 00, 6b, \
00, 3a, 00, 00, 2f, 00, 6b, 00, 3a, 00, 2f, 00, 6b, 00, 3a, 48, 00, \
20, 00, 2f, 00, 6b, 00, 3a, 00, 00, 2a, 00, 00

: Note: This is to cancel Automatic scanning, from disk C to disk I. The above characters are in hexadecimal notation. You cannot see the meaning here,
: You need to import the key value to the Registry to see what it means.

[HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ Session Manager \ Memory Management \ PrefetchParameters]
"EnablePrefetcher" = dword: 00000000

: Note: The preceding section indicates that the pre-read value is set to 0, that is, the pre-read value is not preread. This is a combination of the pre-read value and the automatic scan is canceled. Otherwise, the instance is shut down illegally. next time
: An error message is displayed in the c: \ windows \ prefetch directory after the file is started to the desktop.
: Some computers with hard disks may occasionally encounter problems when the machine is repaired. Although the computer has been automatically scanned during startup
: However, the scan continues. This is the case every time you start the system. In this case, you need to modify the Registry to cancel the scan.
: Do not misinterpret the meaning here: it is only because it is automatically canceled. You can still manually scan it if it is not canceled manually.

If the task manager is disabled by viruses, You can unbind it from the local registry.Copy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ System]
"DisableTaskmgr" = dword: 00000000

Fix EXE file associationCopy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT \ exefile]
@ = "Application"
"EditFlags" = hex: 38,07, 00,00
"TileInfo" = "prop: FileDescription; Company; FileVersion"
"InfoTip" = "prop: FileDescription; Company; FileVersion; Create; Size"

[HKEY_CLASSES_ROOT \ exefile \ DefaultIcon]
@ = "% 1"

[HKEY_CLASSES_ROOT \ exefile \ shell]

[HKEY_CLASSES_ROOT \ exefile \ shell \ open]
"EditFlags" = hex: 00, 00, 00

[HKEY_CLASSES_ROOT \ exefile \ shell \ open \ command]
@ = "\" % 1 \ "% *"

[HKEY_CLASSES_ROOT \ exefile \ shell \ runas]

[HKEY_CLASSES_ROOT \ exefile \ shell \ runas \ command]
@ = "\" % 1 \ "% *"

[HKEY_CLASSES_ROOT \ exefile \ shellex]

[HKEY_CLASSES_ROOT \ exefile \ shellex \ DropHandler]
@ = "{86C86720-42A0-1069-A2E8-08002B30309D }"

[HKEY_CLASSES_ROOT \ exefile \ shellex \ PropertySheetHandlers]

[HKEY_CLASSES_ROOT \ exefile \ shellex \ PropertySheetHandlers \ PifProps]
@ = "{86F19A00-42A0-1069-A2E9-08002B30309D }"

[HKEY_CLASSES_ROOT \ exefile \ shellex \ PropertySheetHandlers \ ShimLayer Property Page]
@ = "{513D916F-2A8E-4F51-AEAB-0CBC76FB1AF8 }"

[HKEY_CLASSES_ROOT \ exefile \ shellex \ PropertySheetHandlers \ {B41DB860-8EE4-11D2-9906-E49FADC173CA}]
@ = ""

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \. exe]
@ = "Exefile"
"Content Type" = "application/x-msdownload"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \. exe \ PersistentHandler]
@ = "{098f2470-bae0-11cd-b579-08002b30bfeb }"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile]
@ = "Application"
"EditFlags" = hex: 38,07, 00,00
"TileInfo" = "prop: FileDescription; Company; FileVersion"
"InfoTip" = "prop: FileDescription; Company; FileVersion; Create; Size"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ DefaultIcon]
@ = "% 1"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shell]

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shell \ open]
"EditFlags" = hex: 00, 00, 00

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shell \ open \ command]
@ = "\" % 1 \ "% *"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shell \ runas]

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shell \ runas \ command]
@ = "\" % 1 \ "% *"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex]

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex \ DropHandler]
@ = "{86C86720-42A0-1069-A2E8-08002B30309D }"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex \ PropertySheetHandlers]

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex \ PropertySheetHandlers \ PifProps]
@ = "{86F19A00-42A0-1069-A2E9-08002B30309D }"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex \ PropertySheetHandlers \ ShimLayer Property Page]
@ = "{513D916F-2A8E-4F51-AEAB-0CBC76FB1AF8 }"

[HKEY_LOCAL_MACHINE \ SOFTWARE \ Classes \ exefile \ shellex \ PropertySheetHandlers \{ B41DB860-8EE4-11D2-9906-E49FADC173CA}]
@ = ""

"Happy basketball Dream. The author of computer company special edition borrowed it.

Failed to import the KB905474 genuine verification patch to the system and the registry can be cracked.Copy codeThe Code is as follows: Windows Registry Editor Version 5.00

-[HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ y Y \ WgaLogon]

Each time before entering the desktop, a small five-pointed star prompt appears in the lower right corner of the screen, because a startup Item is added to the registry, and the position is as above. Delete it and it will not start. If you want to clean up a bit, restart your computer and delete c: \ windows \ system32 \ wgatray.exe. OK. Remember not to install the KB905474 patch again next time.

Disable RegistryCopy codeThe Code is as follows: Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem]
"DisableRegistryTools" = dword: 00000000

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.