Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 16-03-2008, 02:55 PM   #1 (permalink)
Alpha Geek
 
adi007's Avatar
 
Join Date: Sep 2007
Location: hassan
Posts: 717
Cool Reg Jump: Jump into the registry


Found an interesting registry path…. dunno how to remember this path for future use….. Well u can add the key path in the Favorites.But lets assume u reinstalled the Windows and now u need that registry path….What to do…?

OR
In some article or tutorial it is specified to navigate to some reg path like HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Explorer\Advanced\Folder … and do something.. But ur bored or too lazy (like me) to manually navigate via regedit..?


OR
Want to jump directly to a specific registry path in one go?

The answer to all this is REG JUMP from Sysinternals (now a wholly owned subsidiary of Microsoft Corporation)

First download this freeware(40 KB) from http://www.microsoft.com/technet/sys...s/Regjump.mspx


Then Copy regjump.exe file to “\WINDOWS\system32\” folder
Ex: C:\WINDOWS\system32\

Now open command prompt or dos prompt, type regjump and press enter
u must get like this…



But if u get like this


That means that u have not copied the file correctly into “\WINDOWS\system32\” folder.Do it correctly

Now let us learn how to navigate…Before doing so there are some conventions used in regjump to represent the hives(simply main root of the reg path)..

HKEY_CLASSES_ROOT--->HKCR
HKEY_CURRENT_USER--->HKCU
HKEY_LOCAL_MACHINE-->HKLM

HKEY_USERS--->HKU
HKEY_CURRENT_CONFIG-->HKCC


All other’s are same..i.e, if ur desired path is “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Cur rentVersion\Explorer”

Then u have to regard it as “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ex plorer”

Hope u understood
Now type in cmd prompt

Code:
regjump HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
and press enter.

Regedit will open and will jump automatically to the specified path…..

Now let’s create a batch file to do this….
Open notepad and type the following

Code:
regjump HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
Save the file as “my key.bat” including quotes. Select any name but .bat is mandatory


Now open the .bat file u created..
Regedit will open and will jump automatically to the specified path…..

Like this u can make ur own batch files which will automatically open the required path in registry….

This tutorial is over but here are some points that I wish to share…
Quote:

Q: Why we have to copy regjump.exe to “\WINDOWS\system32\”?
A: good question. Let me explain it in my own words.
Whenever u type any command in cmd prompt and press enter, if it’s not an inbuilt command (like dir, cls, cd etc, often called internal commands during dos times…), then it will search or find the command (mainly exe file) in some path and will execute it. By default it will do this for paths (u can add more path;go to next question to find how)

Code:
%SystemRoot%\system32\
%SystemRoot%
%SystemRoot%\System32\Wbem
That’s why I have told to copy regjump.exe file to \WINDOWS\system32\” which is one of the path it searches..

Q: Ok, but what if I don’t want to copy regjump.exe to \WINDOWS\system32\” I copied it to some ‘D:\regjump\’ folder Is there any way to make it work the same?
A: Yes there is a way. Adding the path of folder containing regjump.exe to the system variable called ‘Path’..
Right click on my computer icon and select properties…
Click the Advanced tab; click “Environmental Variables” button present at the bottom;
U can see two variables User and System variables. In the System variable select ‘Path’ and press Edit button; Another window opens; now don’t edit the variable name but u must add the path of folder containing regjump i.e., in our case it’s ‘D:\regjump\’ to the variable value It is important to note that each path must be separated by semicolon..so before appending D:\regjump\ to the path add semicolon at the beginning to separate it from the previous path. Adding semicolon at the end is optional .i.e.,

If the variable value before addition is something like

Code:
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem
Then after addition of folder containing regjump path it should be

Code:
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;D:\regjump\
Note that u can add semicolon at the end too but it’s not mandatory.

Press Ok and again press Ok and again Ok…


Open cmd prompt and type regjump u must get the same dialog as shown above in the tut.

Q: I hate typing regjump name can’t I use name like jump or something like goreg..
A: Sure u can. it’s so simple…. just rename the file regjump to something u like..And remember to replace the regjump name with the name u had given
That’s it …
Hope u liked the tutorial…Don’t forget to give me responses and feedbacks…

Source
__________________
doiteasily.com ►easy way(s) to do certain things
Tech Word of the day : ADSL
Aditech Blog ► There is something for everyone
Terminal Command of the day
regtweak.info ► Windows Registry hacks and tricks

Last edited by adi007; 16-03-2008 at 03:24 PM.
adi007 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 16-03-2008, 03:08 PM   #2 (permalink)
ico
.
 
ico's Avatar
 
Join Date: Jun 2007
Location: New Delhi
Posts: 8,936
Default Re: Reg Jump: Jump into the registry

But that Regjump .bat file isn't going to work in the computers which don't have Regjump. Microsoft should release it as an update so that every computer has it.

Thanx for the tutorial......
__________________
.
ico is offline  
Old 16-03-2008, 03:15 PM   #3 (permalink)
Alpha Geek
 
adi007's Avatar
 
Join Date: Sep 2007
Location: hassan
Posts: 717
Default Re: Reg Jump: Jump into the registry

yup you are right...
regjump is required....it's just 40KB
I just hope that they include it in the next service pack.....
__________________
doiteasily.com ►easy way(s) to do certain things
Tech Word of the day : ADSL
Aditech Blog ► There is something for everyone
Terminal Command of the day
regtweak.info ► Windows Registry hacks and tricks
adi007 is offline  
Old 17-03-2008, 01:49 AM   #4 (permalink)
Yahoooooo! Bot
 
techy_geek's Avatar
 
Join Date: Mar 2008
Location: in ur heart...!!!
Posts: 13
Default Re: Reg Jump: Jump into the registry

thanks a lot
techy_geek is offline  
Old 17-03-2008, 12:24 PM   #5 (permalink)
Alpha Geek
 
adi007's Avatar
 
Join Date: Sep 2007
Location: hassan
Posts: 717
Default Re: Reg Jump: Jump into the registry

You're welcome...
BTW i am designing a softy which does it automatically...
all u have to do is run the softy..the softy runs in background...
just copy the regpath text....it will automatically navigate to the required reg path....
I need to obtain the permission from the regjump creator though...
__________________
doiteasily.com ►easy way(s) to do certain things
Tech Word of the day : ADSL
Aditech Blog ► There is something for everyone
Terminal Command of the day
regtweak.info ► Windows Registry hacks and tricks
adi007 is offline  
Old 17-03-2008, 12:24 PM   #6 (permalink)
The Frozen Nova
 
casanova's Avatar
 
Join Date: Sep 2004
Location: Trespasser in Virtual Land
Posts: 1,641
Default Re: Reg Jump: Jump into the registry

Good tut. Thanks.
__________________
I dream of a better tomorrow... where chickens can cross roads and not have their motives questioned.

www.nerdweed.blogspot.com
casanova is offline  
Old 17-03-2008, 09:35 PM   #7 (permalink)
Distinguished Member
 
anandk's Avatar
 
Join Date: Mar 2005
Location: Pune
Posts: 3,783
Default Re: Reg Jump: Jump into the registry

Really nice work there !
__________________
> www.TheWindowsClub.com <
= www.WinVistaClub.com =
Microsoft® MVP
anandk is offline  
Old 17-03-2008, 09:57 PM   #8 (permalink)
Alpha Geek
 
adi007's Avatar
 
Join Date: Sep 2007
Location: hassan
Posts: 717
Default Re: Reg Jump: Jump into the registry

^^Thanks sir
__________________
doiteasily.com ►easy way(s) to do certain things
Tech Word of the day : ADSL
Aditech Blog ► There is something for everyone
Terminal Command of the day
regtweak.info ► Windows Registry hacks and tricks
adi007 is offline  
Old 18-03-2008, 09:04 PM   #9 (permalink)
Fast 'N' Furious
 
topgear's Avatar
 
Join Date: Jul 2006
Location: Geek's Heaven
Posts: 11,169
Default Re: Reg Jump: Jump into the registry

Nice Find.
Thanks for the tutorial.
__________________
ToPsPeEeD = FaSt BuT StEaDy

AMD Radeon HD 6850 OverClocked to 1 Ghz !!!

Blog : http://topgeartopspeed.wordpress.com/
----------------------------------------------------
Never buy viewsonic products : http://tinyurl.com/ykwx4oa
topgear is offline  
Old 18-03-2008, 09:34 PM   #10 (permalink)
In The Zone
 
pushkaraj's Avatar
 
Join Date: Oct 2006
Location: Mumbai
Posts: 430
Default Re: Reg Jump: Jump into the registry

Nice tut, adi. Keep up the good work
__________________
The statistics on sanity are that 1 out of every 4 humans is suffering from some form of mental illness:shock:
Think of your 3 best friends. If they are OK, then it's YOU:grin::grin::grin:
pushkaraj is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to disable USB Drives (jump/flash/external/etc.) dinesh_ymca Tutorials 12 19-11-2007 06:26 PM
Tweaking the Vista Registry, The importance of backing up the "Vista" registry Ankur Mittal Tutorials 6 27-03-2007 10:20 PM
Intel going to jump to DDR3 blackpearl Technology News 7 19-10-2006 01:19 PM
vb registry help saro_gn QnA (read only) 4 10-08-2005 11:58 AM

 
Latest Threads
- by chris
- by icebags
- by Tenida

Advertisement




All times are GMT +5.5. The time now is 01:35 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2