jp22382 Posted June 16, 2005 Posted June 16, 2005 For some reason my **** start menu doesnt remember any of my settings, after restart it goes back to default settings (placement, autohide, show clock, etc)any ideas how to fix this?
matthewk Posted June 16, 2005 Posted June 16, 2005 This might be it. I am not completely sure.[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]"NoSaveSettings"=dword:00000000
Gentle Giant Posted June 18, 2005 Posted June 18, 2005 Copy into text editor and save as ".vbs" then double click.'xp_save_settings.vbs - Allows user settings to be saved'© Doug Knox - 4/10/2002'Downloaded from www.dougknox.comOption ExplicitOn Error Resume Next'Declare variablesDim WSHShell, p1'Set the Windows Script Host Shell and assign values to variablesSet WSHShell = WScript.CreateObject("WScript.Shell")p1 = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoSaveSettings"WSHShell.RegWrite p1, 0, "REG_DWORD"MsgBox "Your Registry has been updated. Log off and" & vbCR & "Log on for the change to take effect.",4096,"Finished"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now