home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / rtmshare.zip / Example_CopyValue.reg < prev    next >
Windows Registry Data  |  2005-01-10  |  1KB  |  31 lines

  1. REGEDIT4
  2.  
  3. # This .reg file is understood only by Funduc Software's Registry
  4. # Toolkit and Registry Toolkit Merge utilities. Do not attempt merge
  5. # this using other Windows registry editors.
  6. # The action of this example .reg is to copy the value (and data) 
  7. # 'Install Path' that is present under 
  8. #   HKEY_CURRENT_USER\Software\Test\Command\ 
  9. # to a value named 'InstallPath 2' under
  10. #   HKEY_CURRENT_USER\Software\Test2\Command2
  11. # The target key will be created if it does not exist.
  12. # If the value to copy from does not exist, no action is taken.
  13. #
  14. # The Syntax of a Copy Value Operation is:
  15. #
  16. #   [Key to copy the value to]
  17. #   "Value name of target copy"=Key to copy value from\"Value name to copy from"
  18. #
  19. # Note: The last \ must be specified. 
  20. # Note: Use " characters as modeled here.
  21. #
  22. # Other steps can be added. A 'copy value' action can be combined with 
  23. # other operations provided you place them as separate entries. 
  24. # See Example_Complex.reg.
  25. # Back up your Windows registry before you experiment!
  26.  
  27.  
  28. [HKEY_CURRENT_USER\Software\Test2\Command2]
  29. "InstallPath 2"=HKEY_CURRENT_USER\Software\Test\Command\"Install Path"