Can't REG ADD DWORD value of /d 15
Solution 1:
The value 15
is taken as decimal, which in hexadecimal is F
.
For entering a hex value, the /d
flag requires that you preface the 8-character hex value with 0x
.
Write it like this: /d 0x00000015