Where can i find HKEY_CURRENT_USER\Control Panel\Desktop?

link|improve this question

0% accept rate
2  
this question sounds like a not-so-distant relative of "I can haz cheezeburger?" – NoCarrier Feb 13 '10 at 6:41
1  
You can find HKEY_CURRENT_USER\Control Panel\Desktop in HKEY_CURRENT_USER\Control Panel which you can find in HKEY_CURRENT_USER. – Hello71 Jul 9 '10 at 2:19
feedback

3 Answers

Go to Start > Run > type " regedit" > Enter > then browse to that key.

link|improve this answer
it says Windows cannot find 'regedit'. – Paul Feb 13 '10 at 6:26
What about "regedt32"? It is very odd that you are missing regedit; is it possible you have a virus? You might want to try running Malwarebytes Anti-Malware. – Stephen Jennings Feb 13 '10 at 7:30
I found in C:\WINDOWS but what i gonna do now? – Paul Feb 13 '10 at 8:13
run it and find the key.. – Bibhas Feb 13 '10 at 8:42
feedback

In the registry editor:

Start -> run -> regedit -> Click OK

link|improve this answer
it says Windows cannot find 'regedit'. – Paul Feb 13 '10 at 6:25
feedback

Start > Run > cmd.exe

then in the Command Prompt, type:

dir C:\WINDOWS\regedit.exe

and the file should be listed.

If you see instead

Directory of C:\WINDOWS

File Not Found

Then something very strange has happened.

But you can also try regedt32 in C:\WINDOWS\system32\regedt32.exe

If regedit.exe is where it should be, then Windows can't find it because C:\WINDOWS isn't in the path.
In a Command Prompt, enter echo %PATH%
Rr you can use the GUI: Start > Control Panel > System, click on the [Advanced] tab, and click the Environment Variables button.

In that poky little dialog, in the System Variables section is an entry for Path. Double-click on the "Path" entry, and there's an even tinier (and barely usable) dialog in which you're expected to be able to inspect and edit the semicolon-separated list of directories.

Scroll along the text field looking for entries like C:\WINDOWS and C:\WINDOWS\system32
I suspect they won't be there, in which case you'll need to add them:

Insert into the text field:

C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;

ensuring that the entries are separated by a semi-colon.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.