W. Watson said:
How does one change a binary value? I need to change a 0x00000000 to
0x00000001 for LocalNPT. When the little window appears with the
current binary #, it shows something like 0000 00 00 00 00. If I
change the last 00 to 01, the value becomes something weird like
11677.
If I exit from the program, will the value I set now be the one used.
Perhaps there is a Save option, in which case I'm OK. I did export the
registry before doing this.
Changes made in the registry are immediate (they get written to the disk
copy of the registry which may not be the same as the memory copy until
you do a Refresh in the registry editor or exit it). That's why using
the registry editor is hazardous. You could fat finger the Del key when
you meant to hit the End key and there is no Undo to get back the prior
value. When you walk across a mine field, there is no Undo after
stepping on a mine.
Is there a reason why you chose not to divulge WHAT registry key and
data item you were touching? I didn't find a match on "LocalNPT" when I
searched my registry.
The binary view you see is like using a hex editor. The first "0000"
was the byte count. The next "00 00 00 00 00" were some bytes (8 bits).
The hex editor shows each byte as a hexidecimal value. If there were
enough entries in the binary string then it might look like:
0000 xx xx xx xx xx xx xx xx
0008 xx xx xx xx xx xx xx xx
0010 xx xx xx
The first row show the first 8-bit bytes (00-07 hex), the next row shows
the next set of 8-bit bytes (08-0F hex), the third row shows the next
set of 8-bit bytes (10-1F hex), and so on. When you enter byte values,
they are 2-digit hexidecimal characters, like "4B". You don't enter
just a "4" because that will give you "40".
You are unclear as to what you mean by "it becomes". Does that mean
WHILE you are in the binary editor and after backspacing over a prior
byte (to erase it and then enter your own value in that position) and
after inserting "01" that then the bytes before or after that position
also change? Or do you mean that you edit the byte to change it to
"01", exit the hex editor, and then either refresh the registry or exit
the registry editor and return in it to find the value got changed from
"00 00 00 00 01" to "01 01 06 07 07"?
Since a search at Microsoft and Google on "LocalNPT" turned up nothing,
I haven't a clue why you would be changing this value, for what
application it is used, what that application might enforce as the fixed
or minimum values when this data item is defined, or how you are
actually using the hex editor to alter the data item's value in the
registry.