# HG changeset patch # User Oleksandr Gavenko # Date 1319529039 -10800 # Node ID f378e6f4e9e7d21ec9700fda82a1694cc0f25b6f # Parent 40c8253571580b823a4ac75c2cc8ada6b465725e Syntax of .Reg Files. diff -r 40c825357158 -r f378e6f4e9e7 windows-reg.rst --- a/windows-reg.rst Tue Oct 25 10:46:59 2011 +0300 +++ b/windows-reg.rst Tue Oct 25 10:50:39 2011 +0300 @@ -3,7 +3,34 @@ Registry files. ================= +:: + + cmd# regedit.exe /s path-to.reg + http://support.microsoft.com/kb/310516 How to add, modify, or delete registry subkeys and values by using a registration entries (.reg) file. +Syntax of .Reg Files. +===================== + +A .reg file has the following syntax:: + + RegistryEditorVersion + Blank line + [RegistryPath1] + "DataItemName1"="DataType1:DataValue1" + DataItemName2"="DataType2:DataValue2" + Blank line + [RegistryPath2] + "DataItemName3"="DataType3:DataValue3" + +Deleting Registry Keys and Values. +================================== +:: + + [-HKEY_LOCAL_MACHINE\Software\Test] + + [HKEY_LOCAL_MACHINE\Software\Test] + "TestValue"=- +