Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Done REGDIR: hex data (/X) with 8 (or 16) characters

May
12,957
172
This is hard to deal with.

Code:
v:\> regdir /d /v /s0 /x hkcu\console | findstr ColorTable
  ColorTable00 : REG_DWORD : c0c0c
  ColorTable01 : REG_DWORD : da3700
  ColorTable02 : REG_DWORD : ea113
  ColorTable03 : REG_DWORD : dd963a
  ColorTable04 : REG_DWORD : 1f0fc5
  ColorTable05 : REG_DWORD : 981788
  ColorTable06 : REG_DWORD : 9cc1
  ColorTable07 : REG_DWORD : cccccc
  ColorTable08 : REG_DWORD : 767676
  ColorTable09 : REG_DWORD : ff783b
  ColorTable10 : REG_DWORD : cc616
  ColorTable11 : REG_DWORD : d6d661
  ColorTable12 : REG_DWORD : 5648e7
  ColorTable13 : REG_DWORD : 9e00b4
  ColorTable14 : REG_DWORD : a5f1f9
  ColorTable15 : REG_DWORD : f2f2f2

Better would be

Code:
v:\> regdir /d /v /s0 /x hkcu\console | findstr ColorTable
  ColorTable00 : REG_DWORD : 000c0c0c
  ColorTable01 : REG_DWORD : 00da3700
  ColorTable02 : REG_DWORD : 000ea113
  ColorTable03 : REG_DWORD : 00dd963a
  ColorTable04 : REG_DWORD : 001f0fc5
  ColorTable05 : REG_DWORD : 00981788
  ColorTable06 : REG_DWORD : 00009cc1
  ColorTable07 : REG_DWORD : 00cccccc
  ColorTable08 : REG_DWORD : 00767676
  ColorTable09 : REG_DWORD : 00ff783b
  ColorTable10 : REG_DWORD : 000cc616
  ColorTable11 : REG_DWORD : 00d6d661
  ColorTable12 : REG_DWORD : 005648e7
  ColorTable13 : REG_DWORD : 009e00b4
  ColorTable14 : REG_DWORD : 00a5f1f9
  ColorTable15 : REG_DWORD : 00f2f2f2
 
Back
Top