home *** CD-ROM | disk | FTP | other *** search
/ ftp.funduc.com / 2014.08.ftp.funduc.com.tar / ftp.funduc.com / regtkt.zip / rthidden.txt < prev    next >
Text File  |  2009-02-01  |  4KB  |  82 lines

  1. #                        Registry Toolkit
  2. #                       Funduc Software, Inc.
  3. #                Copyright 1998-2009, All Rights Reserved
  4. #     http://www.funduc.com   http://www.searchandreplace.com
  5.  
  6. # Registry Toolkit has several special registry switches that are
  7. # available for advanced usage. All of these switches except the
  8. # toolbar style switch have counterparts for use during script
  9. # operations. We present the information below (in REGEDIT4 style)
  10. # in case you need to use any of them during interactive use through
  11. # the graphical interface.
  12.  
  13. # If you are doing a script operation it is NOT necessary to make
  14. # any change to the Windows registry settings for the program.
  15. # Script-based switches over-ride default settings for
  16. # the program.
  17.  
  18. # Below are some special registry switches available in 
  19. # Registry Toolkit version 3.6+
  20.  
  21. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  22. # *** SET VALUE DATA ***
  23. # To write the replace string where a value is found, set this value
  24. # to the data type desired for the value ie:
  25. # REG_SZ                      ( 1 )   // Unicode nul terminated string
  26. # REG_EXPAND_SZ               ( 2 )   // Unicode nul terminated string
  27. #                                     // (with environment variable references)
  28. # REG_BINARY                  ( 3 )   // Free form binary
  29. # REG_DWORD                   ( 4 )   // 32-bit number
  30. # REG_DWORD_LITTLE_ENDIAN     ( 4 )   // 32-bit number (same as REG_DWORD)
  31. # REG_DWORD_BIG_ENDIAN        ( 5 )   // 32-bit number
  32. # REG_LINK                    ( 6 )   // Symbolic Link (unicode)
  33. # REG_MULTI_SZ                ( 7 )   // Multiple Unicode strings
  34. "Set Value Data"=dword:00000000
  35.  
  36. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  37. # *** FLAT TOOLBAR ***
  38. # To be used if you wish to see regular toolbars instead of flat
  39. # Uncomment line below and remove the one after
  40. #"Flat Toolbar"=dword:00000000
  41. "Flat Toolbar"=dword:00000001
  42.  
  43. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  44. # *** SETTINGS FILE PATH ***
  45. # Path to settings file.  Usually set to a path on a user's machine 
  46. # if the program is installed on the network.
  47. "Settings File"="C:\\tools\\RegTkt\\default.srt"
  48.  
  49. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  50. # *** UNDO FILE LIMIT ***
  51. # To change the number of undo files the program maintains during
  52. # interactive use, modify the dword value below.  The default is 
  53. # decimal 10.  You can also modify this value by using Registry 
  54. # Toolkit to edit the registry.  The program reads the value at 
  55. # startup so exit and restart for a new setting to take effect.
  56. "Maximum Undo Files"=dword:0000000a
  57.  
  58. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  59. # *** PROGRESS METER ***
  60. # To disabled the progress meter during interactive program use,
  61. # uncomment the line below and remove the one after. 
  62. # This switch has no effect on script functionality. To disable
  63. # the progress meter during scripts, add No Progress=1 to your
  64. # script. See the program hlp and example scripts for more info
  65. # on script switches.
  66. # "No Progress"=dword:00000001
  67. "No Progress"=dword:00000000
  68.  
  69. [HKEY_CURRENT_USER\Software\funduc Software Inc.\Registry Toolkit\Settings]
  70. # *** PROCESS SUBKEYS ***
  71. # By default the program will recurse all subkeys.  To 
  72. # process values/data only in the immediate key specified 
  73. # in the main dialog, use the Process Subkeys=0 
  74. # switch.  Also see comments below about the use of 
  75. # wild cards in the Key= specification.  You should 
  76. # specify Process Subkeys=0 if you are using a wildcard 
  77. # in Key= and want to confine the search to the exact key
  78. # structure specified.
  79. # "Process Subkeys"=dword:00000000
  80. "Process Subkeys"=dword:00000001
  81.  
  82.