Author Topic: How to directly jump to any Registry key in Registry Editor with just one click  (Read 15273 times)

Online javajolt

  • Administrator
  • Hero Member
  • *****
  • Posts: 35125
  • Gender: Male
  • I Do Windows
    • windows10newsinfo.com
If you find yourself playing with Registry Editor and tweaking your system quite frequently, you might as well feel bored manually navigating to different registry keys. While it gives you an idea of a basic hierarchy of registry keys, it can get tiring. Today, we are going to look at different ways using which you can directly jump to any desired registry key with a single keystroke. You can directly jump & go to your desired Registry Key in the Windows Registry Editor, using a Batch Script, VB Script, Microsft RegJump or portable freeware Registry Key Jumper.

UPDATE: Users of Windows 10 v1703 can use the Address Bar to jump directly to any registry key.



Directly jump to any Registry key

Now, you might have noticed that whenever you open registry editor, it automatically lands on the registry key that was last viewed. That’s because the Registry Editor saves the last key at a separate location and it refers that location while launching the editor. When you want to open Registry Editor to any desired key path, the idea is to save this path in the value field of LastKey so that next time you open Registry Editor, it launches at your desired key path.

There are three ways you can jump directly to the desired registry key. Let us take a look at them.

1] Using a Batch Script

You can create a simple batch script and use it to jump to any registry key. Open Notepad, paste the below script text in it and save the file as regjump.bat at any location.

Quote
@ECHO OFF & setlocal
SET /P "showkey=Please enter the path of the registry key: "
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit" /v "LastKey" /d "%showkey%" /f
start "" regedit


Now, copy the registry path that you want to navigate to and paste it in the command line prompt after launching the batch program. The program will set this registry path in the value field of LastKey and launch Registry Editor at your desired key path.

2] Using a VB Script

You can also use a VB Script to open Registry Editor at any key location. Just as above method, open Notepad and paste the below VB script in plain text format. Save the file as regjump.vbs at any location on your computer.

Quote
Set WshShell = CreateObject("WScript.Shell")
Dim JumpToKey
JumpToKey=Inputbox("Which registry key would you like to open?")
WshShell.RegWrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit\Lastkey",JumpToKey,"REG_SZ"
WshShell.Run "regedit", 1,True
Set WshShell = Nothing


This script also follows the same approach where it assigns the absolute key path in the value field of LastKey and then opens registry editor at this location.

3] Using RegJump from Microsoft

If you want to save yourself from the extra labor of creating the script, you can take advantage of a small utility that is offered directly by Microsoft and is available for download at Microsoft website. Although, the basic functionality of this applet is still the same. It accepts the keys in standard form (e.g. HKEY_LOCAL_MACHINE) and abbreviated form (e.g. HKLM).

To run the program, just launch the .exe file and run the command in below format:

Quote
regjump HKLM\Software\Microsoft\Windows


You can also copy an absolute key path and just fire the regjump command which will take the path from the clipboard and launch registry editor at that location.

4] Use 3rd-party freeware called Registry Key Jumper



Registry Key Jumper is a portable freeware that simplifies navigation in the Windows registry. Simply copy a registry key and then click on Jump to Key to go directly to that Registry Key. It is available for download here.

twc
« Last Edit: April 16, 2017, 05:09:39 PM by javajolt »