home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / rtmshare.zip / Readme.txt < prev    next >
Text File  |  2005-01-11  |  7KB  |  199 lines

  1.                      Registry Toolkit Merge
  2.                       Funduc Software, Inc.
  3.              Copyright 1999-2005, All Rights Reserved
  4.      http://www.searchandreplace.com   http://www.funduc.com
  5.  
  6. Thank you your interest in Registry Toolkit Merge shareware!
  7.  
  8. Registry Toolkit Merge is a companion program to our Registry
  9. Toolkit utility. Registry Toolkit is a multipurpose tool to edit
  10. and perform search &/or replaces in the Windows 95/98/ME
  11. NT/2000/XP & Windows 2003 registry.
  12.  
  13. Registry Toolkit Merge is command line utility that imports .reg
  14. files into the Windows registry. While .reg file import can also
  15. be accomplished with Registry Toolkit (and other tools), Registry
  16. Toolkit Merge is unique because it can be used to create self-
  17. contained, self-importing .exe's. When the .exe you construct is
  18. launched the .reg information is imported (after confirmation).
  19. Users of the registered version have the option to disable
  20. confirmations by running the program with the /s (or /S) switch.
  21. See below for more information.
  22.  
  23. Also unique to Registry Toolkit Merge (and Registry Toolkit) are
  24. special .reg file functions to: a) Delete keys (and
  25. keys/values/data under them); b) Copy keys (and keys/values/data
  26. under them); c) Rename keys; d) Copy specific values from one key
  27. to another. Performing these operations via a .reg file is not
  28. easily accomplished using other registry edit tools.
  29.  
  30. Five example .reg files are included in Registry Toolkit Merge
  31. distribution. Please back up your Windows registry and examine the
  32. .reg files with your text editor before you experiment!
  33.  
  34. Important: Do not attempt to merge these examples with another
  35. registry editor. Use only Registry Toolkit Merge or Registry
  36. Toolkit. 'Example_CreateTest.reg' is a standard .reg but the
  37. others use specialized functions.
  38.  
  39. Example_CreateTest.reg: 
  40. -----------------------
  41. When merged into the registry this .reg creates some values & data
  42. under HKEY_CURRENT_USER\Software\Test\command. The keys will be
  43. created if they do not already exist. If the values specified in
  44. the .reg already exist their data will be replaced.
  45.  
  46. Example_DeleteTest.reg: 
  47. -----------------------
  48. This .reg can only be merged with Registry Toolkit Merge or
  49. Registry Toolkit. The action will be to delete
  50. HKEY_CURRENT_USER\Software\Test\command and all
  51. subkeys/values/data under that key.
  52.  
  53. Example_CopyKey.reg: 
  54. -----------------------
  55. This .reg can only be merged with Registry Toolkit Merge or
  56. Registry Toolkit. The action copies
  57. HKEY_CURRENT_USER\Software\Test\command (and all keys/values/data
  58. underneath) to HKEY_CURRENT_USER\Software\Test2\command3
  59.  
  60. Example_RenameKey.reg: 
  61. -----------------------
  62. This .reg can only be merged with Registry Toolkit Merge or
  63. Registry Toolkit. The action renames
  64. HKEY_CURRENT_USER\Software\Test\command to
  65. HKEY_CURRENT_USER\Software\Test2\command3
  66.  
  67. Example_CopyValue.reg: 
  68. -----------------------
  69. This .reg can only be merged with Registry Toolkit Merge or
  70. Registry Toolkit. The action of this example is to copy the value
  71. (and data) 'Install Path' that is present under
  72. HKEY_CURRENT_USER\Software\Test\Command\ to a value named
  73. 'InstallPath 2' under
  74. HKEY_CURRENT_USER\Software\Test2\Command2.
  75.  
  76. Example_Complex.reg: 
  77. -----------------------
  78. This .reg can only be merged with Registry Toolkit Merge or
  79. Registry Toolkit. This .reg demonstrates how to include a
  80. combination of operations in a single .reg. Please examine this
  81. with your text editor before you apply it.
  82.  
  83.  
  84. Registry Toolkit Merge Usage
  85. ----------------------------
  86. There are three forms of usage: 
  87.   
  88. 1. Apply a .reg file you specify on the command line. For example,
  89.  
  90.       RTMerge.exe test.reg
  91.       
  92.    The above will merge the contents of 'test.reg' into the
  93.    registry. NO advance confirmations are provided with this usage.
  94.  
  95. 2. The RTMerge.exe executable can be used as a "stub" file that
  96.    will apply a .reg via a self-contained .exe.  
  97.    
  98.    To use the program in this form you must first create a new .exe
  99.    consisting of the concatenation of RTMerge.exe and the .reg to
  100.    apply.  We suggest you use the 'Concatenate' function of our
  101.    Directory Toolkit or Explorer Extensions programs to create the
  102.    new .exe. 
  103.    
  104.    The steps are similar for both programs.  For example purposes we
  105.    will create an .exe to apply test.reg.  
  106.    
  107.    a. Highlight RTMerge.exe and test.reg in the Concatenate dialog.
  108.    
  109.    b. Arrange the file list with the Move/Up or Move/Down buttons so
  110.       RTMerge.exe is the list.  RTMerge.exe MUST BE FIRST.
  111.       
  112.    c. Supply the name of a Target file that has an .exe extension.
  113.       DO NOT use RTMerge.exe for a target name.  The name you use
  114.       must be unique.  Consider a descriptive name, e.g.,
  115.       MergeTestreg.exe
  116.       
  117.    d. Click the OK button.
  118.       
  119.    To use 'MergeTestreg.exe' and apply the contents of test.reg
  120.    issue one of the following:
  121.    
  122.       MergeTestreg.exe
  123.       
  124.    The above provides a confirmation dialog. is presented which
  125.    give the user the opportunity to cancel if they like.
  126.    
  127.       MergeTestreg.exe /s
  128.    or 
  129.       MergeTestreg.exe /S
  130.    
  131.    The above runs the program 'sliently'. No confirmation is
  132.    presented. The program exits automatically.
  133.    
  134.    NOTE: The /s or /S feature is only available in the registered
  135.    version.
  136.   
  137.    
  138. 3. As in #2 above but add /s or /S to the command line to run the
  139. applicator 'silently'. The user will see no confirm
  140.  
  141.    
  142. How to create & use .reg files that delete keys
  143. -----------------------------------------------
  144. These .reg files require a special format that is understood only by
  145. RTMerge.exe and our Registry Toolkit utility.  An example is:
  146.  
  147.    REGEDIT4
  148.  
  149.    [HKEY_CURRENT_USER\Software\Test\command]
  150.    "RT_Rename_Key"=
  151.  
  152. When applied by Registry Toolkit or Registry Toolkit Merge,
  153. HKEY_CURRENT_USER\Software\Test\command and all keys/values under
  154. this key will be deleted.
  155.  
  156. Delete actions can be combined with other actions in the same .reg
  157. file.
  158.  
  159. Registry Toolkit can simplify creating these special .reg files.
  160.  
  161.  
  162. How to create & use .reg files to copy keys
  163. -------------------------------------------
  164. As with the above 'delete' operation, copy operation .reg files
  165. are understood only by RTMerge.exe and Registry Toolkit. An
  166. example is:
  167.  
  168.    REGEDIT4
  169.  
  170.    [HKEY_CURRENT_USER\Software\Test\command]
  171.    "RT_Copy_Key"="HKEY_CURRENT_USER\\Software\\Command3
  172.    
  173. When applied, the key 
  174. HKEY_CURRENT_USER\Software\Test\command
  175. and all keys/values under this key will copied to 
  176. HKEY_CURRENT_USER\Software\Command3. 
  177. If HKEY_CURRENT_USER\Software\Command3 does not exist it will be 
  178. created.
  179.  
  180. 'Copy' operations can be combined with other actions in the same .reg
  181. file.
  182.  
  183. IMPORTANT: Do not attempt to apply these .reg files via the
  184. Windows Explorer .reg 'Merge' function.  You must use Registry
  185. Toolkit Merge or Registry Toolkit.
  186.  
  187. We suggest you see the Registry Toolkit F1 online help for more
  188. information.
  189.  
  190. Registry Toolkit can be obtained from our web site -
  191. http://www.funduc.com
  192.  
  193. Thank you,
  194.  
  195. Mike Funduc,  President Funduc Software Inc.
  196. http://www.funduc.com  http://www.searchandreplace.com
  197. support@funduc.com     support@searchandreplace.com
  198.  
  199.