Sunday, November 6, 2016

Windows Registry Tweak that my come handy

Windows Registry Tweak that my come handy


           Some useful windows registry tweak that my come handy. Everything is pretty much labeled as to what it does. Just Copy and Paste the code to notepad and Save with .reg file extention and double click the file to import it to the registry.

Remove Shortcut To ... Prefix when you create new Shortcut
 Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorer]
"link"=hex:00,00,00,00

Add Disk Cleanup on Right Click of a Drive
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDriveshellDisk Cleanupcommand]
@="cleanmgr.exe /d %1"

This allows you to disable the new Search Assistant Dog and use the traditional search interface in Windows Explorer.
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerCabinetState]
"FullPath"=dword:00000000
"FullPathAddress"=dword:00000001
"Use Search Asst"="no"
"Settings"=hex:0c,00,02,00,1b,01,e7,77,60,00,00,00

Disables "Take A Tour" Bubble Pop-up in windows
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionAppletsTour]
"RunCount"=dword:00000000

Disable USB Autorun
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionIniFileMappingAutorun.inf]
@="@SYS:DoesNotExist"

Speedup the Windows XP Start Menu
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERControl PanelDesktop]
"MenuShowDelay"="2"

Enable to extract MSI files by right click
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USERSoftwareClassesMsi.PackageshellUnpack MSIcommand]
@="msiexec.exe /a "%1" /qb TARGETDIR="%1-Unpacked""

Tweak that allows renaming of Recycle Bin

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTCLSID{645FF040-5081-101B-9F08-00AA002F954E}ShellFolder]
"Attributes"=hex:50,01,00,20
"CallForAttributes"=dword:00000000

Disable Automatic Restart in the event of a Blue Screen of Death
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlCrashControl]
"AutoReboot"=dword:00000000

To remove language bar from Taskbar
Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOTCLSID{540D8A8B-1C3F-4E32-8132-530F6A502090}]
@="Language bar"
"MenuTextPUI"="@%SystemRoot%System32msutb.dll,-325"

When you right click on a Drive or Folder. This tweak adds Command Prompt here on Right Click Menu 
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOTDirectoryshellCommand Prompt Here]
@="Command &Prompt Here"
[HKEY_CLASSES_ROOTDirectoryshellCommand Prompt Herecommand]
@="cmd.exe /k cd %1 "
[HKEY_CLASSES_ROOTDriveshellCommand Prompt Here]
@="Command &Prompt Here"
[HKEY_CLASSES_ROOTDriveshellCommand Prompt Herecommand]
@="cmd.exe /k cd %1 "
[HKEY_CLASSES_ROOT*shellCommand Prompt Here]
@="Command &Prompt Here"
[HKEY_CLASSES_ROOT*shellCommand Prompt Herecommand]
@="cmd.exe "%1""""
"


Available link for download