Exporting binary hex of reg key?

  • Thread starter Thread starter raven
  • Start date Start date
R

raven

I used the binary editor in regedt32, in order to insert a
carriage return in the Legal Notice Text in article:
http://support.microsoft.com/default.aspx?scid=kb;EN-
US;238149

I am needing to export this key and it's binary values in
order to push this reg key to other machines on my
network. For some reason while exporting the key, the
binary portion is not coming down as set, leaving me with
no carriage returns and my legal notice text all bunched
up.

How can I export the binary portion of the reg key?
 
I used the binary editor in regedt32, in order to insert a
carriage return in the Legal Notice Text in article:
http://support.microsoft.com/default.aspx?scid=kb;EN-
US;238149

I am needing to export this key and it's binary values in
order to push this reg key to other machines on my
network. For some reason while exporting the key, the
binary portion is not coming down as set, leaving me with
no carriage returns and my legal notice text all bunched
up.

How can I export the binary portion of the reg key?


Use regedit to export it:

regedit /a c:\foldername\legal.reg
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"

The above is one line.

Edit c:\foldername\legal.reg in notepad and remove the uneeded Value Names and
subkeys, leaving

REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
LegalNoticeCaption......
LegalNotice.................
LogonPrompt...........
Welcome.........

To import them:

regedit /s pathtothefile





Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
I used the binary editor in regedt32, in order to insert a
carriage return in the Legal Notice Text in article:
http://support.microsoft.com/default.aspx?scid=kb;EN-
US;238149

I am needing to export this key and it's binary values in
order to push this reg key to other machines on my
network. For some reason while exporting the key, the
binary portion is not coming down as set, leaving me with
no carriage returns and my legal notice text all bunched
up.

How can I export the binary portion of the reg key?


Use regedit to export it:

regedit /a c:\foldername\legal.reg
"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"

The above is one line.

Edit c:\foldername\legal.reg in notepad and remove the uneeded Value Names and
subkeys, leaving

REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
LegalNoticeCaption......
LegalNotice.................
LogonPrompt...........
Welcome.........

To import them:

regedit /s pathtothefile





Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
Back
Top