Regjump to Registry Path

Regjump takes a registry path and makes Regedit open to that path

Registry editor (regedit.exe) is known not to be particularly comfortable, but the Registy Jump utility offers simplification. Microsoft has made hardly any changes to the now old-fashioned windows tool in recent years.

In addition to the search function, the Registry Editor does not offer a direct way to jump to a specific key in a path, which is especially annoying if you have to hail through a particularly long registry key.

However, the Regjump utility jump to a specified registry path. Microsoft offers from the Sysinternals collection a free tool called Regjump, which can be downloaded here.

Regjump Path

The small command line applet takes a registry path and opens Regedit for that path. It accepts root keys in the standard form such as: HKEY_LOCAL_MACHINE and in short form with HKLM.

Regjump v1.1
Copyright (C) 2013-2015 Mark Russinovich
Sysinternals - www.sysinternals.com

usage: regjump <<path>|-c>
  -c Copy path from clipboard.
e.g.: regjump HKLMSoftwareMicrosoftWindows

jump to Registry Path

Particularly helpful is to paste a key path from the clipboard with the option -c (Copy path from clipboard).

Regjump takes the registry path and opens Regedit to the path

Conclusion

Most Windows users have dealt with the Windows Registry at some point. Endless possibilities are available to the Windows administrator to adapt the Windows system to the needs by making certain changes in the Windows registry. Unfortunately, the registry editor (regedit.exe) is not particularly user-friendly and unfortunately Microsoft has hardly changed anything in the somewhat dusty editor in recent years.

How to check .NET version with PowerShell

To check the .NET Framework version with PowerShell on Windows 10 and Windows 11, follow these steps.

In this tutorial you show how to check the installed .NET Framework version by using PowerShell. Here we go, hit the key on your keyboard and typing “powershell”, right-click the top result and choose Run as administrator.

Check .NET Framework version in PowerShell

Paste the following line into PowerShell and hit the Enter key.

Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -Recurse | Get-ItemProperty -Name Version,Release -EA 0 | Where { $_.PSChildName -match '^(?!S)\p{L}'} | Select PSChildName, Version, Release

If you ran the command above, PowerShell will return the information for both the client and the full version of .NET Framework installed on Windows 10 or if you are already using Windows 11.

How to check .NET version with PowerShell

Enable .NET Framework 3.5 by using PowerShell

For a Windows Server 2012 or later installation that isn’t connected to the Internet, you can use PowerShell to add .NET Framework 3.5 and provide access to the \sources\sxs folder on the installation media. The \sources\sxs folder can be copied to network share (for example, \network\share\sxs) to make it easily accessible to multiple computers. The target computer account DOMAIN\SERVERNAME$ must have at least read access to the network share.

Start Windows PowerShell in the Administrator Command Prompt by typing.

powershell

To install .NET Framework 3.5 from installation media located on a network share, use the following command.

Install-WindowsFeature Net-Framework-Core -source \network\share\sxs

To verify installation, run the following command.

Get-WindowsFeature

Use .NET classes with PowerShell

The PowerShell itself was developed on the basis of the .NET Framework 2.0. In addition, all objects within PowerShell are based on the .NET object model and the classes from the .NET framework can also be used with basic functions, i.e. without the help of other tools.

This means that PowerShell users have access to an enormous function library that can be used to cover many use cases. However, in-depth knowledge of the .NET framework is absolutely necessary. This article shows basic access.

Static properties and methods can thus be called directly. There is no need to instantiate the class, i.e. to create an object.

Exit mobile version