Collapse Regedit Tree Without Disabling

Status
Not open for further replies.

Osiris

Golden Master
Messages
36,817
Location
Kentucky
RegEdit annoyingly remembers the last key you viewed and then the next time you use the application, it is expanded to that section. There are other tweeks that change the permissions on the Regedit applet in the registry to deny access.

That does work. However, in the process, you lose the ability to create favorites.

A few lines of code solves the problem. You can then create a shortcut to the .vbs file and change the icon to the regedit icon and put it on the desktop, add it to a start menu, whatever. Just put these few lines in a text editor and save as the xxxxxx.vbs.


Dim objShell, RegKey, Q

Set objShell = CreateObject("WScript.Shell")

strQuote = chr(34)

RegKey = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit"

RegKey = RegKey & "\LastKey"

objShell.RegWrite RegKey, ""

objShell.Run "regedit
 
Status
Not open for further replies.
Back
Top Bottom