|
|||||||
| Windows XP / 2000 / NT / 9x Forum Discussion for Windows operating systems from XP right back to the very beginnings! |
![]() |
|
|
Thread Tools |
|
|
#1 |
|
-=[DHzer0point Team]=-
Join Date: Apr 2003
Location: Salem, Oregon
Posts: 174
Rep Power: 0 ![]() |
Registry collapse tweak
I had the tweak but some how misplaced it, and have spent about an hour searching the net for the registry tweak that collapses the view every time you close the registry so when you open it the next time it is not all strung out.
anyone know the tweak for this in the registry? thanxz River~
__________________
Dell Dimension 4550 P4, 2.4ghz, 533mhz FSB 1gig ddr ATI Radeon 9700TX, 128mb DDR 17" digital flat panel Harmon Kardon speakers SoundBlaster Live 5.1 Logitech wireless keyboard/mouse Intel Pro/100 VE Windows XP Pro "did you want cheese with that?" |
|
|
|
|
|
#2 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 71 ![]() ![]() ![]() ![]() |
you mean you like to clear the last state at every time you open the Registry Editor,
like this... ![]() here's the key that keeps the last view.. Code:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit] "LastKey"="My Computer\<<<<Your last view key>>>>>" <-- you will see this key on your next open the Registry Editor. you need to create a .reg file to clear/remove the value name "LastKey" and import/merge it before you re-open the Registry Editor so its start up view will be at home (My Computer) the reg file will look like this.. Code:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Regedit] "LastKey"=- Create a VBScript tool from the below info and then use it to open the regedit. Code:
' RegeditOpener.vbs
' Script begin
Option Explicit
On Error Resume Next
Dim WSH
Set WSH = Wscript.CreateObject("Wscript.Shell")
WSH.RegDelete "HKCU\Software\Microsoft\Windows\" _
& "CurrentVersion\Applets\Regedit\LastKey"
WSH.Run "regedit"
Set WSH = Nothing
WScript.Quit
' end
|
|
|
|
|
|
|
|
-=[DHzer0point Team]=-
Join Date: Apr 2003
Location: Salem, Oregon
Posts: 174
Rep Power: 0 ![]() |
Registry
yep, that's the one! but after posting here I did some more searching, and I found this tweak that does the same thing.
in the registry in the key you listed, you double click on the "lastkey" and then delete the last view entry that comes up. then you click on "edit" and then "permissions" and then for who ever "user" you are, you click on that user's name, and then you "deny" permission. you will get some warning message, but ignore. thanks for your tweak, that's the one I'll use cause I can put it in to my "reg" file and it's done with the merge of the other tweaks all at one time. thanxz River~
__________________
Dell Dimension 4550 P4, 2.4ghz, 533mhz FSB 1gig ddr ATI Radeon 9700TX, 128mb DDR 17" digital flat panel Harmon Kardon speakers SoundBlaster Live 5.1 Logitech wireless keyboard/mouse Intel Pro/100 VE Windows XP Pro "did you want cheese with that?" |
|
|
|
|
|
#4 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 71 ![]() ![]() ![]() ![]() |
the "LastKey" value data will be created and entering a new record at every time you open the Registry Editor, so this's not a permanent reg tweaks.
that's why i give the VBScript tool, when you run the script it removes the value name "LastKey" then opening the editor automatically. edit-- usually i grant permissions i don't like to deny to any registry key but you can do that too if you prefer.. Last edited by Net; May 12, 2004 at 06:28 PM. |
|
|
|
|
|
|
|
-=[DHzer0point Team]=-
Join Date: Apr 2003
Location: Salem, Oregon
Posts: 174
Rep Power: 0 ![]() |
gotcha
ok, understand what you are saying, and thanxz again for reg tweak
River~
__________________
Dell Dimension 4550 P4, 2.4ghz, 533mhz FSB 1gig ddr ATI Radeon 9700TX, 128mb DDR 17" digital flat panel Harmon Kardon speakers SoundBlaster Live 5.1 Logitech wireless keyboard/mouse Intel Pro/100 VE Windows XP Pro "did you want cheese with that?" |
|
|
|
|
|
#6 |
|
Member
Join Date: Mar 2003
Posts: 5,989
Rep Power: 71 ![]() ![]() ![]() ![]() |
You're welcome.
|
|
|
|
![]() |
| Thread Tools | |
|
|