Descripción:Una aplicación para convertir archivos REG a archivos BAT,
para ser más exactos convierte un script de registro a la sintaxis que usa el comando REG.exe.
La aplicación se puede usar también por consola:
- Syntax:[/li][/list]
REG2BAT [Registry File] [Output File]
Esto es un archivo de registro convertido:
:: Converted with REG2BAT By Elektro [email protected]
REM Windows Registry Editor Version 5.00
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Binary" /T "REG_BINARY" /D "1234567890" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Dword Dec" /T "REG_DWORD" /D "0x00bc614e" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Dword hex" /T "REG_DWORD" /D "0x12345678" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Expand SZ" /T "REG_EXPAND_SZ" /D "%%Temp%%\Hello" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Multi SZ" /T "REG_MULTI_SZ" /D "Hello\0world!\0" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Qword Dec" /T "REG_QWORD" /D "0x00000000000010e1" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test Qword Hex" /T "REG_QWORD" /D "0x1234567891234567" /F
REG ADD "HKEY_CURRENT_USER\Test" /V "Test String" /T "REG_SZ" /D "By Elektro H@cker" /F
Imágenes:

Demostración:Descarga:->
http://www.mediafire.com/download/1h3zbymfhnb3spt/REG2BAT.rar
NUEVA VERSIÓN DISPONIBLE
Versión 1.2
Cambios:
· Soporte para arrastrar y soltar una cantidad indefinida de archivos REG a la ventana principal.
· Algunos bugs de conversión corregidos.
NUEVA VERSIÓN DISPONIBLE
Versión 2.3
Descarga:->
http://www.mediafire.com/download/1h3zbymfhnb3spt/REG2BAT.rar
Lista de cambios:
Version 2.3
-----------
Added:[/li][/list]
· Support for convert these value types:
REG_NONE, REG_RESOURCE_LIST, REG_RESOURCE_REQUIREMENTS_LIST and REG_FULL_RESOURCE_DESCRIPTOR.
Fixed:[/li][/list]
· If a value of type REG_MULTI_SZ and REG_EXPAND_SZ is empty, the program throws an error.
Changed:[/li][/list]
· Updated the 'Test.reg' testing file with all the new value types.
Lista de cambios de otras versiones recientes:
Version 2.2
-----------
Added:[/li][/list]
· Option to force registry overwritting.
· Option to abbreviate RootKey names.
Fixed:[/li][/list]
· The percent characters ("%) of a 'Default' value (@=) was not correctlly converted.
( Solved duplicating the percent character )
Changed:[/li][/list]
· Extended the option 'Redirect commands to NULL' to specify better custom redirection.
Version 2.1
-----------
Added:[/li][/list]
· Added support to recognize the deletion of a default value.
( In a Regedit Script: '"@="=-' )
· 'Redirect commands to NULL' option for GUI.
Deleted:[/li][/list]
· All the 'RegEx.Split' operations, to gain speed were replaced with 'IndexOf' method.
Fixed:[/li][/list]
· A misstype with the BINARY value splitter that was adding an ":" character in the Batch command.
( Solved changing '<a>=HEX</a>' to '<a>=HEX:</a>' )
· Application version in the application settings was wrong.
( This can be found in the caption of an informatiion/error MessageBox ).
Changed:[/li][/list]
· Binary, Dword and Qword values now are shown as UPPER-CASE.
. Replaced the usage of old VB6 math methods.
( Changed 'Chr(Val("&H" & [Byte]))' to 'Convert.ToChar(Convert.ToInt32([Byte], 16I))')
· The main button text.
( Changed 'Click to load a registry file...' to 'Load a registry file...')
Version 2.0
-----------
Added:[/li][/list]
· Progress Information for GUI.
Changed:[/li][/list]
· Application was written from scratch.
NUEVA VERSIÓN DISPONIBLE
Versión 2.4
Descarga:->
http://www.mediafire.com/download/1h3zbymfhnb3spt/REG2BAT.rar
Lista de cambios:
Version 2.4
-----------
Fixed:[/li][/list]
· Command redirection for CALL commands.
Changed:[/li][/list]
· Commentlines now are separated by empty lines.