Windows registry related

After uninstalling Chrome folder to delete all related files, search Google

如:C:\Users\Tony\AppData\Local\Google

Clean up the registry before you install Chrome:

Windows Registry Editor Version 5.00

; WARNING, this file will remove Google Chrome registry entries  
; from your Windows Registry. Consider backing up your registry before
; using this file: http://support.microsoft.com/kb/322756

; To run this file, save it as 'remove.reg' on your desktop and double-click it.

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\ChromeHTML] 
[-HKEY_LOCAL_MACHINE\SOFTWARE\Clients\StartMenuInternet\chrome.exe] 
[HKEY_LOCAL_MACHINE\SOFTWARE\RegisteredApplications]
"Chrome"=-

[-HKEY_CURRENT_USER\SOFTWARE\Classes\ChromeHTML] 
[-HKEY_CURRENT_USER\SOFTWARE\Clients\StartMenuInternet\chrome.exe] 
[HKEY_CURRENT_USER\SOFTWARE\RegisteredApplications]
"Chrome"=-

[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\Chrome]
[-HKEY_CURRENT_USER\Software\Google\Update\Clients\{8A69D345-D564-463c-AFF1-A69D9E530F96}]
[-HKEY_CURRENT_USER\Software\Google\Update\ClientState\{8A69D345-D564-463c-AFF1-A69D9E530F96}]

[-HKEY_CURRENT_USER\Software\Google\Update\Clients\{00058422-BABE-4310-9B8B-B8DEB5D0B68A}]
[-HKEY_CURRENT_USER\Software\Google\Update\ClientState\{00058422-BABE-4310-9B8B-B8DEB5D0B68A}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Google\Update\ClientStateMedium\{8A69D345-D564-463c-AFF1-A69D9E530F96}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Google\Update\Clients\{8A69D345-D564-463c-AFF1-A69D9E530F96}]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Google\Update\ClientState\{8A69D345-D564-463c-AFF1-A69D9E530F96}]

[-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Google\Update\Clients\{8A69D345-D564-463c-AFF1-A69D9E530F96}]
 

Delete traces of Remote Desktop 

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Terminal Server Client

Delete Default Servers and two nodes, an additional document to delete hidden files inside Default.rdp

Si Xun barcode software requires a user name and password appears, solutions

Delete the following node

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\SISS\isslabelprint

Barcode software database connection appears failed with error code: DBMS is not supported in your current installation

Missing msvcr71.dll file, you can use the 360 system first aid kit can also be downloaded

regsvr32 / s msvcr71.dll

And ntwdblib.dll two documents on windows / system32 and syswow64 inside 

Right in different directories shown below: Open a command window here, you can easily locate the command prompt to this directory, the registry as follows:

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT \ Directory \ shell \ OpenCmdHere]
@ = "Open Command Prompt Here"
"Icon" = "cmd.exe"

[HKEY_CLASSES_ROOT\Directory\shell\OpenCmdHere\command]
@="cmd.exe /s /k pushd "%V""

[HKEY_CLASSES_ROOT \ Directory \ Background \ shell \ OpenCmdHere]
@ = "Open command window here"
"Icon" = "cmd.exe"

[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
@="cmd.exe /s /k pushd \"%V\""

[HKEY_CLASSES_ROOT \ Drive \ shell \ OpenCmdHere]
@ = "Open command window here"
"Icon" = "cmd.exe"

[HKEY_CLASSES_ROOT\Drive\shell\OpenCmdHere\command]
@="cmd.exe /s /k pushd \"%V\""

[HKEY_CLASSES_ROOT \ LibraryFolder \ background \ shell \ OpenCmdHere]
@ = "Open command window here"
"Icon" = "cmd.exe"

[HKEY_CLASSES_ROOT\LibraryFolder\background\shell\OpenCmdHere\command]
@="cmd.exe /s /k pushd \"%V\""

 

Disable IE proxy settings

rem disable the proxy
REG the Add "HKCU \ Software \ in the Microsoft \ Windows \ CurrentVersion \ Internet Settings" / v ProxyEnable / t REG_DWORD / d 0 / f
 
rem delete the proxy IP address
reg delete "HKCU \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings "/ v ProxyServer / f
 
REM disable the automatic configuration script (address is also deleted)
REG the delete" HKCU \ Software \ in the Microsoft \ Windows \ CurrentVersion \ Internet Settings "/ v AutoConfigURL / f

rem 禁用自动检测设置
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v DefaultConnectionSettings /t REG_BINARY /d 4600000000 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Connections" /v SavedLegacySettings /t REG_BINARY /d 4600000000 /f

 

 

 

Published 46 original articles · won praise 9 · views 3669

Guess you like

Origin blog.csdn.net/weixin_41896770/article/details/100142478