I'm trying to add a value to the Windows Registry with key type of REG_NONE. I looked here, among other places, and it was no help:
http://superuser.com/questions/331811/how-to-create-registry-key-of-type-reg-none
Here's the command I am using:
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer /v IconUnderline /t REG_NONE /d 3When that command executes, the data it sets is 33 00 00 00.
HOWEVER, it needs to be 03 00 00 00!
How can I modify the command to get it to add 03 00 00 00 and NOT 33 00 00 00?
Thanks!