If you misplaced the end quote, or left it off, it won't change the value, but will instead add a new key
This will not work:
Code:
Reg Add "HKCU\Software\Microsoft\Internet Explorer\Desktop\Components /V DeskHtmlVersion /T REG_DWORD /D 0 /F"
If you use that, it will add a new key named
Components /V DeskHtmlVersion /T REG_DWORD /D 0 /F
It has to be like this:
Code:
Reg Add "HKCU\Software\Microsoft\Internet Explorer\Desktop\Components" /V DeskHtmlVersion /T REG_DWORD /D 0 /F
Let's see if that's what happened.
Copy the text in the following code block into Notepad.
Save it on the desktop as
Query.cmd. Be sure to change the
Save as Type: box to
All Files when saving.
Code:
Set _file=%userprofile%\Desktop\Query.txt
>"%_file%" Echo.[CODE]
>>"%_file%" 2>&1 Reg Query "HKCU\Software\Microsoft\Internet Explorer\Desktop" /S
>>"%_file%" Echo.[/CODE]
Start Notepad "%_file%"
Exit
Double click the file to run it. It will create a file named
Query.txt on the Desktop and open it in Notepad. Copy and paste the text into your next reply.