Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

RegJump

Featured Replies

If you've ever used the Sysinternals REGJUMP you will have noticed it lanuches RegEdit - and THEN navigates to the correct Key. I have a question? What stops them from using the Microsoft allocated Value to store the start Key in? Answer: Nothing.

Save as REGJUMP.CMD:

@ECHO OFF
IF NOT "%1"=="" GOTO NEXT
ECHO Launches Regedit to specified key.
ECHO.
ECHO REGJUMP key
ECHO.
ECHO key Specifies the registry key to go to.
ECHO.
ECHO Example:
ECHO REGJUMP HKCR\pngfile\DefaultIcon
ECHO.
ECHO Known limitations: Key name cannot contain certain characters.
ECHO REGJUMP is Freeware, (c) 2006 Plamdi.com.
GOTO END
:NEXT
SETLOCAL ENABLEEXTENSIONS
SET K=%*
IF NOT %1==%~1 SET K=%~1
IF %K:~0,4%==HKLM SET K=HKEY_LOCAL_MACHINE%K:~4%
IF %K:~0,4%==HKCU SET K=HKEY_CURRENT_USER%K:~4%
IF %K:~0,4%==HKCR SET K=HKEY_CLASSES_ROOT%K:~4%
IF %K:~0,4%==HKCC SET K=HKEY_CURRENT_CONFIG%K:~4%
IF %K:~0,3%==HKU SET K=HKEY_USERS%K:~3%
REG QUERY "%K%">NUL
IF ERRORLEVEL 1 GOTO END
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit" /V "LastKey" /D "My Computer\%K%" /F
"%SYSTEMROOT%\REGEDIT.EXE"
:END
SETLOCAL DISABLEEXTENSIONS

And yeah, I'll probably make a better compiled .EXE version written in C++ ... but until then this should do. Launches Regedit AT the required key.

Another interesting fact is that my version does not launch RegEdit if the Key does not exisit.

Edited by Plamdi

Have you checked out either of the following sites?

These give you the ability to jump to Registry Keys..

Registry Commander: http://www.aezay.dk/ (CTRL+G to invoke the Go to)

Registry Editor Extensions: http://www.regeditx.com/ (paste right in the top line)

Thanks,

Kent

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.