merged
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 25 Oct 2011 18:06:47 +0300
changeset 1067 d917d5b238f7
parent 1064 3199465de3c3 (current diff)
parent 1066 f378e6f4e9e7 (diff)
child 1068 ef5dc6d9b9a0
merged
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/windows-reg.rst	Tue Oct 25 18:06:47 2011 +0300
@@ -0,0 +1,36 @@
+
+=================
+ 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"=-
+