Play with the computer | Take a look at Windows 10 registry system optimization [InsCode Stable Diffusion Meitu Event Phase 1]

Table of contents

What is a registry

composition

Hierarchy of the Windows Registry

How to create registry entries in Windows 11/10

1. Use Registry Editor

2. Use the command line

3. Use Notepad to create a REG file

Note: In this article, it is mainly to use Notepad to create a REG file to modify.

registry code

Modify status bar transparency

taskbar time display seconds

Turn on win10 eye protection

Right-click to add the copy folder path and open and restart the explorer with Notepad

Reduce Cortana performance and reduce cpu usage

turn off virtual memory

Close delivery optimization file

Remove the "Compress...and E-Mail" added by WinRAR in the right-click menu

remove right click print

When the file does not have an associated open program, it is forbidden to search for open types from the Internet

Close Open with Choose another app from the app store

Enable the built-in Administrator user to use APPS

turn off system restore

Turn off automatic app backup

Restore legacy volume settings

My computer does not show two U disks

Disable notification management

The language bar is hidden in the task bar, and the help button on the language bar is canceled

Turn off Program Compatibility Assistant

Remove Speech residue

Turn on IE Do Not Track

Remove antivirus right click, encrypt, open in portable mode, burn to disc, enhance storage device, send to disk drive

Removed few used file new menus

Quick access does not show frequently used folders and recently used files

Restore Command Prompt in Start menu

close filter

Clear default startup items

Disable automatic computer maintenance programs from running

System optimization related settings

Create a shortcut without showing the shortcut text

Prohibit all disks such as U disk from running automatically (keep CD from playing automatically)

Set the default reserved bandwidth to 0

Turn off Windows 10 message notifications

Solve the problem that the Windows 10 system taskbar is blocked by the on-screen keyboard

Set IE home page

Remove the smiley face on the right side of IE

Don't prompt for default browser, don't check downloader's signature

Disable default sharing (prohibit $C $D, prohibit $Admin)

Turn off the warning prompt when displaying protected files

Telemetry is set to "secure"

Turn off the automatic debugging function of the system to improve the running speed of the system

OEM information

shut down the sync host

Shut down the IPsec Policy Agent service

Turn off game recorder, onedrive, Cortana, Windows Defender

Do not allow suggestions to appear in the start menu

Do not automatically install games

Hide Task View, Action Center, Network Icons, People, Messenger panels

Displays the color of the start menu, taskbar, action center and title bar

Disable "Highlight newly installed programs"

Turn off security warnings for open programs

Hide seven folders on this computer

disable autoplay

Explorer minimized to show full path

Turn off video music preview

The charms are not displayed when the mouse is pointed to the upper right corner

Reduce shutdown wait time

Automatically restart the resource manager when the resource manager crashes

It is forbidden to open the browser as soon as the Internet is connected

Turn off User Account Control (UAC)

Remove Recycle Bin pinned to Start Screen and Start Menu

Hide my documents, show this computer

Disable messy right-click options

IE browser optimization

Automatically clear history when exiting IE browser

Optimize processor performance, memory settings, hard disk read and write

Windows update optimization

Disable Windows Updates for the Malicious Software Removal Tool

Disable remote modification of the registry

SSD Optimization

Network Optimization

Turn off sharing, firewall, remote assistance, homegroup

close bug report

Disable useless services

Disable driver signature

Do not show Windows Media Player first use dialog

Disable system restart on blue screen

Other messy optimizations

Optimize server domain name query timeout


What is a registry

The Windows Registry is a collection of settings that Windows and applications can use. It is a directory that stores settings and options for the Microsoft Windows operating system. It contains information and settings for all hardware, operating system software, most non-operating system software, users, computer preferences, and more.

 

composition

The registry consists of the following 5 root keys. The root key contains subkeys. Subkeys may also contain subkeys of their own and contain at least one value, called the default value. A key with all subkeys and values ​​is called Hive.

Each key has a data type - the data type:

  • REG_SZ, REG_BINARY,
  • REG_DWORD,
  • REG_QWORD,
  • REG_MULTI_SZ or
  • REG_EXPAND_SZ。

In this article, we will show you how to create registry entries in Windows 10.

Before starting, it's a good idea to back up your registry or create a system restore point.

The architecture of the Windows Registry is complex and incomprehensible to the average consumer. It is also recommended that you know the basics and not modify it unless you know what you are doing.

Hierarchy of the Windows Registry

To edit the registry, we use the built-in registry editor or regedit . It displays a tree-like navigation structure. At the top is Your Computer, then a list of folders and subfolders. These folders are called KEYS, and there are five fixed folder sets under Computer.

  1. HKEY_CLASSES_ROOT:  Contains file extension association information that helps the computer understand how to handle tasks when asked.
  2. HKEY_CURRENT_USER: It contains the current user's Windows and software configuration information.
  3. HKEY_LOCAL_MACHINE: It stores the configuration of the software installed on the computer and also stores the configuration of the Windows operating system
  4. HKEY_USERS: Here you can find the user-specific configuration for all users on this computer.
  5. HKEY_CURRENT_CONFIG:  pointer to HKEY_LOCAL_MACHINE

These are master keys because you cannot create new keys under your computer – but you can generate new keys under any of these master keys.

How to create registry entries in Windows 11/10

1. Use Registry Editor

Creating registry entries is easy. Right-click any folder or empty space and select New . You can create keys , string values, binary values, DWORD values ​​(32-bit), QWORD values ​​(64-bit), multi-string values, or expandable string values. This method is useful when you plan to make minor changes to fix problems on your computer. It might be application or OS level related.

  • To edit an existing value, double-click it to launch the editor.

  • To delete a key, right-click it and select Delete.
  • You also have options to rename, export, copy and set permissions.

2. Use the command line

You can also use the command line to manipulate registry keys as well as prompts, features, and security methods.

3. Use Notepad to create a REG file

Right-click on any existing key and export it. Open that file in Notepad, it will help you understand how to edit keys and their values. It's useful when you want to perform bulk edits and have a backup in place.

Note the version declaration, followed by a blank line, then the path in quotes, and finally another blank line. Once editing is complete, you can right-click and select Merge Files into Registry Hive.

Note: In this article, it is mainly to use Notepad to create a REG file to modify.

registry code

Modify status bar transparency

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"UseOLEDTaskbarTransparency"=dword:00000001

taskbar time display seconds

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowSecondsInSystemClock"=dword:00000001

Turn on win10 eye protection

[HKEY_CURRENT_USER\Control Panel\Colors]
"Window"="202 234 206"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\DefaultColors\Standard]
"Window"=dword:00caeace

Right-click to add the copy folder path and open and restart the explorer with Notepad

[HKEY_CLASSES_ROOT\Directory\shell\copypath]
@="复制文件夹路径"
[HKEY_CLASSES_ROOT\Directory\shell\copypath\command]
@="mshta vbscript:clipboarddata.setdata("text","%1")(close)"
[HKEY_CLASSES_ROOT*\shell\copypath]
@="复制文件路径"
[HKEY_CLASSES_ROOT*\shell\copypath\command]
@="mshta vbscript:clipboarddata.setdata("text","%1")(close)"
[HKEY_CLASSES_ROOT*\shell\Notepad]
@="用记事本打开"
[HKEY_CLASSES_ROOT*\shell\Notepad\Command]
@="notepad %1"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\RestartExplorer\Command]
@="tskill explorer"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\RestartExplorer]
@="重启资源管理器"
[HKEY_CLASSES_ROOT*\shell\runas]
@="获取最牛逼的权限"
[HKEY_CLASSES_ROOT*\shell\runas\command]
@="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:F"
"IsolatedCommand"="cmd.exe /c takeown /f "%1" && icacls "%1" /grant administrators:F"
[HKEY_CLASSES_ROOT\Directory\shell\runas]
@="获取最牛逼的权限"
"NoWorkingDirectory"=""
[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /grant administrators:F /t"
"IsolatedCommand"="cmd.exe /c takeown /f "%1" /r /d y && icacls "%1" /grant administrators:F /t"

Reduce Cortana performance and reduce cpu usage

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\TimeBroker]
"Start"=dword:00000004

turn off virtual memory

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Memory Management]
"PagingFiles"=hex(7):00,00

Close delivery optimization file

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Settings]
"DownloadMode"="0"

Remove the "Compress...and E-Mail" added by WinRAR in the right-click menu

[HKEY_CURRENT_USER\SOFTWARE\WinRAR\Setup\MenuItems]
"EmailArc"=dword:00000000
"EmailOpt"=dword:00000000

 

remove right click print


[-HKEY_CLASSES_ROOT\batfile\shell\print]
[-HKEY_CLASSES_ROOT\cmdfile\shell\print]
[-HKEY_CLASSES_ROOT\fonfile\shell\print]
[-HKEY_CLASSES_ROOT\htmlfile\shell\print]
[-HKEY_CLASSES_ROOT\inffile\shell\print]
[-HKEY_CLASSES_ROOT\inifile\shell\print]
[-HKEY_CLASSES_ROOT\InternetShortcut\shell\print]
[-HKEY_CLASSES_ROOT\E.Document\shell\print]
[-HKEY_CLASSES_ROOT\JSEFile\Shell\Print]
[-HKEY_CLASSES_ROOT\JSFile\Shell\Print]
[-HKEY_CLASSES_ROOT\otffile\shell\print]
[-HKEY_CLASSES_ROOT\pfmfile\shell\print]
[-HKEY_CLASSES_ROOT\regfile\shell\print]
[-HKEY_CLASSES_ROOT\ttcfile\shell\print]
[-HKEY_CLASSES_ROOT\ttffile\shell\print]
[-HKEY_CLASSES_ROOT\txtfile\shell\print]
[-HKEY_CLASSES_ROOT\VBEFile\Shell\Print]
[-HKEY_CLASSES_ROOT\VBSFile\Shell\Print]
[-HKEY_CLASSES_ROOT\WSFFile\Shell\Print]
[-HKEY_CLASSES_ROOT\zapfile\shell\print]

When the file does not have an associated open program, it is forbidden to search for open types from the Internet

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"NoInternetOpenWith"=dword:00000001

Close Open with Choose another app from the app store

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"NoUseStoreOpenWith"=dword:00000001

Enable the built-in Administrator user to use APPS

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"ConsentPromptBehaviorAdmin"=dword:00000005
"PromptOnSecureDesktop"=dword:00000001
"FilterAdministratorToken"=dword:00000001

turn off system restore

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore]
"RPSessionInterval"=dword:00000000
"DisableSR"=dword:00000001
"CreateFirstRunRp"=dword:00000000
[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SPP\Clients]
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore]
"DisableSR"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer]
"LimitSystemRestoreCheckpointing"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
"Enable"="n"

Turn off automatic app backup


[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\SettingSync]
"EnableBackupForWin8Apps"=dword:00000000

Restore legacy volume settings

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\MTCUVC]
"EnableMtcUvc"=dword:00000000

My computer does not show two U disks

[-HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
@="Removable Drives"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders{-F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
@="Removable Drives"
[-HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders{F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
@="Removable Drives"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\DelegateFolders{-F5FB2C77-0E2F-4A16-A381-3E560C68BC83}]
@="Removable Drives"

Disable notification management

[HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\Explorer]
"DisableNotificationCenter"=dword:00000001

The language bar is hidden in the task bar, and the help button on the language bar is canceled

[HKEY_CURRENT_USER\Software\Microsoft\CTF\MSUTB]
"ShowDeskBand"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar]
"ShowStatus"=dword:00000004
"ExtraIconsOnMinimized"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\CTF\LangBar\ItemState{ED9D5450-EBE6-4255-8289-F8A31E687228}]
"DemoteLevel"=dword:00000003

Turn off Program Compatibility Assistant

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AppCompat]
"DisablePCA"=dword:00000001

Remove Speech residue

[-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Speech]
[-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Speech Virtual]
[-HKEY_CURRENT_USER\SOFTWARE\Microsoft\Speech_OneCore]

Turn on IE Do Not Track

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"DoNotTrack"=dword:00000001

 

 

Delete include into library, restore previous version, share, grant access, enable Bitlocker, compatibility troubleshooting, right click on Intel, create new library


[-HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\Library Location]

[-HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers{596AB062-B4D2-4215-9F74-E9109B0A8153}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex\ContextMenuHandlers{596AB062-B4D2-4215-9F74-E9109B0A8153}]
[-HKEY_CLASSES_ROOT\AllFilesystemObjects\shellex\ContextMenuHandlers{596AB062-B4D2-4215-9F74-E9109B0A8153}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes*\shellex\ContextMenuHandlers\ModernSharing]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes*\shellex\ContextMenuHandlers\Sharing]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\Sharing]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shellex\ContextMenuHandlers\Sharing]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex\ContextMenuHandlers\Sharing]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LibraryFolder\background\shellex\ContextMenuHandlers\Sharing]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shell\encrypt-bde-elev]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shell\encrypt-bde]

[-HKEY_CLASSES_ROOT\batfile\ShellEx\ContextMenuHandlers\Compatibility]
[-HKEY_CLASSES_ROOT\cmdfile\ShellEx\ContextMenuHandlers\Compatibility]
[-HKEY_CLASSES_ROOT\exefile\shellex\ContextMenuHandlers\Compatibility]
[-HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\Compatibility]
[-HKEY_CLASSES_ROOT\Msi.Package\shellex\ContextMenuHandlers\Compatibility]

[-HKEY_CLASSES_ROOT\Directory\background\shellex\ContextMenuHandlers\igfxDTCM]

[-HKEY_CLASSES_ROOT.library-ms]

Remove antivirus right click, encrypt, open in portable mode, burn to disc, enhance storage device, send to disk drive

[-HKEY_CLASSES_ROOT*\shellex\ContextMenuHandlers\EPP]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\EPP]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\MenuMgr\ShellEx\ContextMenuHandlers\EPP]

[-HKEY_CLASSES_ROOT*\shellex\ContextMenuHandlers\Open With EncryptionMenu]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex\ContextMenuHandlers\EncryptionMenu]
[-HKEY_CLASSES_ROOT*\MenuMgr\ShellEx\ContextMenuHandlers\Open With EncryptionMenu]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\MenuMgr\ShellEx\ContextMenuHandlers{D6791A63-E7E2-4fee-BF52-5DED8E86E9B8}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\MenuMgr\ShellEx\ContextMenuHandlers{fbeb8a05-beee-4442-804e-409d6c4515e9}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\MenuMgr\ShellEx\ContextMenuHandlers\EnhancedStorageShell]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDrivesInSendToMenu"=dword:00000001

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects\shellex\ContextMenuHandlers{474C98EE-CF3D-41f5-80E3-4AAB0AB04301}]

Removed few used file new menus


[-HKEY_CLASSES_ROOT.docx\WPS.Docx.6]
[-HKEY_CLASSES_ROOT.pptx\WPP.PPTX.6]
[-HKEY_CLASSES_ROOT.xlsx\ET.Xlsx.6]
[-HKEY_CLASSES_ROOT.xdp\ShellNew]
[-HKEY_CLASSES_ROOT.as\ShellNew]
[-HKEY_CLASSES_ROOT.cpt\ShellNew]
[-HKEY_CLASSES_ROOT.contact\ShellNew]
[-HKEY_CLASSES_ROOT.jnt\jntfile\ShellNew]
[-HKEY_CLASSES_ROOT.zip\ShellNew]
[-HKEY_CLASSES_ROOT.ac6\ShellNew]
[-HKEY_CLASSES_ROOT\Briefcase\ShellNew]
[-HKEY_CLASSES_ROOT.vnd\ShellNew]
[-HKEY_CLASSES_ROOT.rtf\ShellNew]
[-HKEY_CLASSES_ROOT.glr\ShellNew]
[-HKEY_CLASSES_ROOT.bfc\ShellNew]
[-HKEY_CLASSES_ROOT.rtf\ShellNew]
[-HKEY_CLASSES_ROOT.bmp\ShellNew]
[-HKEY_CLASSES_ROOT.wav\ShellNew]
[-HKEY_CLASSES_ROOT.doc\ShellNew]
[-HKEY_CLASSES_ROOT.doc\WordPad.Document.1\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.bfc\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.bmp\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.doc\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.rar\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.rtf\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes.zip\ShellNew]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\FlashFXP.exe]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\moviemk.exe]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\mspaint.exe]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\shimgvw.dll]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\wordpad.exe]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Applications\zipfldr.dll]

Quick access does not show frequently used folders and recently used files

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"ShowFrequent"=dword:00000000
"ShowRecent"=dword:00000000

Remove the right button pinning to "Quick Access"

[HKEY_CLASSES_ROOT\Folder\shell\pintohome]
"Extended"=""

Restore Command Prompt in Start menu


[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"DontUsePowerShellOnWinX"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Xaml]
"AllowFailFastOnAnyFailureF"=dword:00000000
[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\BrowserEmulation]
"MSCompatibilityMode"=dword:00000001
"IntranetCompatibilityMode"=dword:00000000

close filter


[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Internet Explorer\PhishingFilter]
"EnabledV9"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"SmartScreenEnabled"="off"
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter]
"EnabledV9"=dword:00000000

Clear default startup items


[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]

Disable automatic computer maintenance programs from running


[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\ScheduledDiagnostics]
"EnabledExecution"=dword:00000000

System optimization related settings

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Command Processor]
"CompletionChar"=dword:00000040
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"AlwaysUnloadDll"=dword:00000001
"ReportAndContinue"=dword:00000000

Create a shortcut without showing the shortcut text

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer]
"link"=hex:00,00,00,00

Prohibit all disks such as U disk from running automatically (keep CD from playing automatically)

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDriveTypeAutoRun"=dword:000000ff
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDriveTypeAutoRun"=dword:000000ff
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR]
"AutoRun"=dword:000000ff
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\USBSTOR]
"AutoRun"=dword:000000ff
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\cdrom]
"Autorun"=dword:000000ff
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\cdrom]
"Autorun"=dword:000000ff

Set the default reserved bandwidth to 0

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters]
"Tcp1323Opts"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Psched]
"NonBestEffortLimit"=dword:00000000

Turn off Windows 10 message notifications

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell]
"UseActionCenterExperience"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ImmersiveShell\Launcher]
"DisableLightDismiss"=dword:00000001

 

 

Solve the problem that the Windows 10 system taskbar is blocked by the on-screen keyboard

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\StigRegKey\Typing\TaskbarAvoidanceEnabled]
"Enable"=dword:00000001

Set IE home page

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Start Page"="https://ww.pc528.net/"
"Default_Page_URL"="https://ww.csdn.net/"

Remove the smiley face on the right side of IE

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Restrictions]
"NoHelpItemSendFeedback"=dword:00000001

Don't prompt for default browser, don't check downloader's signature

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Check_Associations"="no"

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Download]
"CheckExeSignatures"="no"

Disable default sharing (prohibit $C $D, prohibit $Admin)

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters]
"AutoShareServer"=dword:00000000
"AutoShareWks"=dword:00000000

Turn off the warning prompt when displaying protected files

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden]
"WarningIfNotDefault"=-

Telemetry is set to "secure"

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection]
"AllowTelemetry"=dword:00000000

Turn off the automatic debugging function of the system to improve the running speed of the system

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug]
"Auto"="0"
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug]
"Auto"="0"

OEM information

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation]
"Manufacturer"="Demon_运维笔记 blog.demon.ren"
"SupportURL"="http://blog.demon.ren/"
"logo"="C:\Windows\System32\logo.bmp"

shut down the sync host

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\OneSyncSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OneSyncSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\OneSyncSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\OneSyncSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\UserDataSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UserDataSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\UserDataSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UserDataSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDPUserSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CDPUserSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDPUserSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CDPUserSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CDPSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\CDPSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PimIndexMaintenanceSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\PimIndexMaintenanceSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PimIndexMaintenanceSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\PimIndexMaintenanceSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UnistoreSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\UnistoreSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\UnistoreSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\UnistoreSvc_39a7b]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\DiagTrack]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\DiagTrack]
"Start"=dword:00000004

Shut down the IPsec Policy Agent service

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\PolicyAgent]
"Start"=dword:00000004

Turn off game recorder, onedrive, Cortana, Windows Defender

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\GameDVR]
"AppCaptureEnabled"=dword:00000000
[HKEY_CURRENT_USER\System\GameConfigStore]
"GameDVR_Enabled"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive]
"DisableFileSyncNGSC"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Search]
"AllowCortana"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]
"DisableAntiSpyware"=dword:00000001
"DisableRoutinelyTakingAction"=dword:00000001

Do not allow suggestions to appear in the start menu

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager]
"SystemPaneSuggestionsEnabled"=dword:00000000
"SubscribedContent-338388Enabled"=dword:00000000
"SubscribedContent-338389Enabled"=dword:00000001

Do not automatically install games

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent]
"DisableWindowsConsumerFeatures"=dword:00000001

Hide Task View, Action Center, Network Icons, People, Messenger panels

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"ShowTaskViewButton"=dword:00000000

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer]
"DisableNotificationCenter"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"HideSCAHealth"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"HideSCANetwork"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People]
"PeopleBand"=dword:00000000
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\People\ContactPanel]

Displays the color of the start menu, taskbar, action center and title bar

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize]
"ColorPrevalence"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM]
"ColorPrevalence"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]
"SmartScreenEnabled"="off"

Disable "Highlight newly installed programs"

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"Start_NotifyNewApps"=dword:00000000

Turn off security warnings for open programs

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Associations]
"ModRiskFileTypes"=".bat;.exe;.reg;.vbs;.chm;.msi;.js;.cmd"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Associations]
"ModRiskFileTypes"=".bat;.exe;.reg;.vbs;.chm;.msi;.js;.cmd"

Hide seven folders on this computer

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{f42ee2d3-909f-4907-8871-4c22fc0bf756}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{0ddd015d-b06c-45d5-8c4c-f59713854639}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{35286a68-3c57-41a1-bbb1-0eae73d76c95}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{a0c69a99-21c8-4671-8703-7934162fcf1d}\PropertyBag]
"ThisPCPolicy"="Hide"
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions{31C0DD25-9439-4F12-BF41-7FF4EDA38722}\PropertyBag]
"ThisPCPolicy"="Hide"

disable autoplay


[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\AutoplayHandlers]
"DisableAutoplay"=dword:00000001
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoDriveTypeAutoRun"=dword:000000dd

Explorer minimized to show full path

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\CabinetState]
"FullPath"=dword:00000001

Turn off video music preview

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mp4-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mp4-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.3gp-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.3gp-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.m4v-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.m4v-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mkv-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mkv-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.m4a-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.m4a-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mod-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mod-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.avi-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.avi-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.avi-ShellEx{3D1975AF-0FC3-463d-8965-4DC6B5A840F4}]
@=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.wmv-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.wmv-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.wmv-ShellEx{3D1975AF-0FC3-463d-8965-4DC6B5A840F4}]
@=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpg-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpg-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpg-ShellEx{3D1975AF-0FC3-463d-8965-4DC6B5A840F4}]
@=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpeg-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpeg-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mpeg-ShellEx{3D1975AF-0FC3-463d-8965-4DC6B5A840F4}]
@=""
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mov-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mov-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mp3-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.mp3-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.flac-ShellEx{e357fccd-a995-4576-b01f-234630154e96}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.flac-ShellEx{BB2E617C-0920-11D1-9A0B-00C04FC2D6C1}]
@="{9DBD2C50-62AD-11D0-B806-00C04FD706EC}"

The charms are not displayed when the mouse is pointed to the upper right corner

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\EdgeUI]
"DisableCharms"=dword:00000001

Reduce shutdown wait time

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
"WaitToKillServiceTimeout"="0"
[HKEY_CURRENT_USER\Control Panel\Desktop]
"HungAppTimeout"="3000"
"WaitToKillAppTimeout"="10000"

Automatically restart the resource manager when the resource manager crashes

[HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Winlogon]
"AutoRestartShell"=dword:00000001

It is forbidden to open the browser as soon as the Internet is connected

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\NetworkConnectivityStatusIndicator]
"NoActiveProbe"=dword:00000001

Turn off User Account Control (UAC)

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System]
"ConsentPromptBehaviorAdmin"=dword:00000000
"EnableLUA"=dword:00000000

Remove Recycle Bin pinned to Start Screen and Start Menu

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shellex\ContextMenuHandlers\PintoStartScreen]
[-HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers{a2a9545d-a0c2-42b4-9708-a0b2badd77c8}]

Hide my documents, show this computer

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
"{59031a47-3f72-44a7-89c5-5595fe6b30ee}"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel]
"{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000

Disable messy right-click options

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes*-shellex\ContextMenuHandlers\WorkFolders]
@="{E61BF828-5E63-4287-BEF1-60B1A4FDE0E3}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background-shellex\ContextMenuHandlers\WorkFolders]
@="{E61BF828-5E63-4287-BEF1-60B1A4FDE0E3}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects-shell\LaunchWorkfoldersControl]
"ProgrammaticAccessOnly"=""
"MuiVerb"="@%SystemRoot%\system32\WorkfoldersControl.dll,-1"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\AllFilesystemObjects-shell\LaunchWorkfoldersControl\command]
"DelegateExecute"="{47405ACE-008F-43AB-B6F0-91875029ADC7}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex-ContextMenuHandlers\Offline Files]
@="{474C98EE-CF3D-41f5-80E3-4AAB0AB04301}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shellex-ContextMenuHandlers\Offline Files]
@="{474C98EE-CF3D-41f5-80E3-4AAB0AB04301}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes*\shellex-ContextMenuHandlers\Sharing]
@="{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex-ContextMenuHandlers\Sharing]
@="{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shellex-ContextMenuHandlers\Sharing]
@="{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex-ContextMenuHandlers\Sharing]
@="{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\LibraryFolder\background\shellex-ContextMenuHandlers\Sharing]
@="{f81e9010-6ea4-11ce-a7ff-00aa003ca9f6}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex-ContextMenuHandlers{fbeb8a05-beee-4442-804e-409d6c4515e9}]
@=""

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.rar-ShellNew]
"FileName"="C:\Program Files\WinRAR\rarnew.dat"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.zip-ShellNew]
"FileName"="C:\Program Files\WinRAR\zipnew.dat"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes.contact-ShellNew]
"MenuText"=hex(2):40,00,25,00,43,00,6F,00,6D,00,6D,00,6F,00,6E,00,50,00,72,
00,6F,00,67,00,72,00,61,00,6D,00,46,00,69,00,6C,00,65,00,73,00,25,00,5C,00,
73,00,79,00,73,00,74,00,65,00,6D,00,5C,00,77,00,61,00,62,00,33,00,32,00,72,
00,65,00,73,00,2E,00,64,00,6C,00,6C,00,2C,00,2D,00,31,00,30,00,32,00,30,00,
33,00,00,00
"iconpath"=hex(2):25,00,50,00,72,00,6F,00,67,00,72,00,61,00,6D,00,46,00,69,
00,6C,00,65,00,73,00,25,00,5C,00,57,00,69,00,6E,00,64,00,6F,00,77,00,73,00,
20,00,4D,00,61,00,69,00,6C,00,5C,00,77,00,61,00,62,00,2E,00,65,00,78,00,65,
00,2C,00,31,00,00,00
"command"=hex(2):22,00,25,00,70,00,72,00,6F,00,67,00,72,00,61,00,6D,00,46,
00,69,00,6C,00,65,00,73,00,25,00,5C,00,57,00,69,00,6E,00,64,00,6F,00,77,00,
73,00,20,00,4D,00,61,00,69,00,6C,00,5C,00,57,00,61,00,62,00,2E,00,65,00,78,
00,65,00,22,00,20,00,2F,00,43,00,72,00,65,00,61,00,74,00,65,00,43,00,6F,00,
6E,00,74,00,61,00,63,00,74,00,20,00,22,00,25,00,31,00,22,00,00,00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex-ContextMenuHandlers{D6791A63-E7E2-4fee-BF52-5DED8E86E9B8}]
"{D6791A63-E7E2-4fee-BF52-5DED8E86E9B8}"="Portable Devices Menu"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Drive\shellex-ContextMenuHandlers\EPP]
@="{09A47860-11B0-4DA5-AFA5-26D86198A780}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shellex-ContextMenuHandlers\EPP]
@="{09A47860-11B0-4DA5-AFA5-26D86198A780}"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes*\shellex-ContextMenuHandlers\EPP]
@="{09A47860-11B0-4DA5-AFA5-26D86198A780}"

IE browser optimization


[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\TabbedBrowsing]
"WarnOnClose"=dword:00000000
"OpenInForeground"=dword:00000001
"ShortcutBehavior"=dword:00000001
"PopupsUseNewWindow"=dword:00000002

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\BrowserEmulation]
"AllSitesCompatibilityMode"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]
"Use FormSuggest"="yes"
"DisableFirstRunCustomize"=dword:00000001
"NoUpdateCheck"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Suggested Sites]
"Enabled"=dword:00000000

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Attachments]
"SaveZoneInformation"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]
"Locked"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"MaxConnectionsPer1_0Server"=dword:0000000a
"MaxConnectionsPerServer"=dword:0000000a

Automatically clear history when exiting IE browser

[HKEY_LOCAL_MACHINE\SOFTWARE\Software\Microsoft\Internet Explorer\Privacy]
"ClearBrowsingHistoryOnExit"=dword:00000001 

Optimize processor performance, memory settings, hard disk read and write

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\PriorityControl]
"Win32PrioritySeparation"=dword:00000026
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Memory Management]
"IoPageLockLimit"=dword:08000000
"Disablepagingexecutive"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager]
"AutoChkTimeOut"=dword:00000005
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"NoLowDiskSpaceChecks"=dword:00000001

Windows update optimization


[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"AutoInstallMinorUpdates"=dword:00000001
"NoAutoRebootWithLoggedOnUsers"=dword:00000001
"AUOptions"=dword:00000001
"NoAutoUpdate"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"ExcludeWUDriversInQualityUpdate"=dword:00000001

Disable Windows Updates for the Malicious Software Removal Tool

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MRT]
"DontOfferThroughWUAU"=dword:00000001

Disable remote modification of the registry


[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\SECUREPIPESERVERS\WINREG]
"remoteregaccess"=dword:00000001

SSD Optimization


[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Dfrg\BootOptimizeFunction]
"Enable"="n"
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Memory Management\PrefetchParameters]
"EnablePrefetcher"=dword:00000000

Network Optimization

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]
"nonetcrawling"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Dnscache\Parameters]
"maxnegativecachettl"=dword:00000000
"maxcachettl"=dword:00002a30
"maxcacheentryttllimit"=dword:00002a30
"netfailurecachetime"=dword:00000000
"negativesoacachetime"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\Tcpip\Parameters]
"MaxConnectionsPerServer"=dword:00000000
"Tcp1323Opts"=dword:00000001
"SackOpts"=dword:00000001
"TcpMaxDupAcks"=dword:00000002
"NameSrvQueryTimeout"=dword:00000bb8
"EnablePMTUDiscovery"=dword:00000001
"EnablePMTUBHDetect"=dword:00000001
"DefaultTTL"=dword:00000040
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\LanmanWorkstation\Parameters]
"MaxCollectionCount"=dword:00000020
"MaxThreads"=dword:0000001e
"MaxCmds"=dword:0000001e

Turn off sharing, firewall, remote assistance, homegroup

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\LanmanServer\Parameters]
"AutoShareServer"=dword:00000000
"AutoShareWks"=dword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile]
"EnableFirewall"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\DomainProfile]
"EnableFirewall"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\SharedAccess\Parameters\FirewallPolicy\PublicProfile]
"EnableFirewall"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\DomainProfile]
"EnableFirewall"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PrivateProfile]
"EnableFirewall"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsFirewall\PublicProfile]
"EnableFirewall"=dword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Remote Assistance]
"fAllowToGetHelp"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services]
"fAllowToGetHelp"=dword:00000000
"fAllowUnsolicited"=dword:00000000
"fDenyTSConnections"=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\HomeGroup]
"DisableHomeGroup"=dword:00000001

close bug report

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Windows Error Reporting]
"Disabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PCHealth\ErrorReporting]
"DoReport"=dword:00000000
"ShowUI"=dword:00000000

Disable useless services

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\PcaSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\RemoteRegistry]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\iphlpsvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\WSearch]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\WerSvc]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\HomeGroupProvider]
"Start"=dword:00000004
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\SQMClient\Windows]
"CEIPEnable"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\ScheduledDiagnostics]
"EnabledExecution"=dword:00000000

Disable driver signature

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Driver Signing]
"Policy"=hex:01
[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows NT\Driver Signing]
"BehaviorOnFailedVerify"=dword:00000000

Do not show Windows Media Player first use dialog

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer]
"GroupPrivacyAcceptance"=dword:00000001

Disable system restart on blue screen

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\CrashControl]
"AutoReboot"=dword:00000001

Other messy optimizations

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OneDrive]
"DisableFileSyncNGSC"=dword:00000001

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\FsDepends\Parameters]
"VirtualDiskExpandOnMount"=dword:00000004

[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Windows Error Reporting]
"LoggingDisabled"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Configuration]
"DisableComponentBackups"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
"ReportBootOk"="0"

[HKEY_CURRENT_USER\Control Panel\Keyboard]
"InitialKeyboardIndicators"="80000002"

Optimize server domain name query timeout

[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\VxD\MSTCP]
"NameSrvQueryTimeout"=dword:00000000

Guess you like

Origin blog.csdn.net/qq_22903531/article/details/131568557