home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Registry / Mregchg / _SETUP.1 / import.txt < prev    next >
Text File  |  1998-04-08  |  3KB  |  55 lines

  1. Turn word wrap off to view this file in notepad
  2.  
  3. A comment is any line that does not start with "HKEY_" so, you can 
  4. basically type anything you want in the file without affecting the 
  5. outcome of the program.
  6.  
  7. The format of the this file is:
  8. HIVE<TAB>KEY PATH<TAB>VALUE NAME<TAB>VALUE TYPE<TAB>VALUE
  9.  
  10. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp    REG_SZ    This is a test
  11. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp2    REG_SZ    This is test number two
  12. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp3    REG_SZ    This is test number three
  13. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp4    REG_SZ    This is test number four
  14.  
  15. REG_DWORD values can be entered as numbers or as hex as shown
  16. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Test    REG_DWORD    12231
  17. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Test2    REG_DWORD    12232
  18. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Test3    REG_DWORD    12233
  19. This next one is 12234 in hex and demonstrates how to enter hex values
  20. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Test4    REG_DWORD    $2FCA
  21.  
  22.  
  23. REG_MULTI_SZ is used to enter a list of information 
  24. into the registry.  Each ';' in the VALUE portion will 
  25. be replaced with the null character as required by the
  26. registry.
  27.  
  28. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp5    REG_MULTI_SZ    This;is;a;test
  29. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp6    REG_MULTI_SZ    This;is;test;number;two
  30. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp7    REG_MULTI_SZ    This;is;test;number;three
  31. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp8    REG_MULTI_SZ    This;is;test;number;four
  32.  
  33. REG_EXPAND_SZ entries will be automatically expanded at run time by
  34. the calling program.  
  35.  
  36. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp9    REG_EXPAND_SZ    %SYSTEMROOT%\File1.exe
  37. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp10    REG_EXPAND_SZ    %SYSTEMROOT%\File2.exe
  38. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp11    REG_EXPAND_SZ    %SYSTEMROOT%\File3.exe
  39. HKEY_LOCAL_MACHINE    \Software\Eytcheson    Temp12    REG_EXPAND_SZ    %SYSTEMROOT%\File4.exe
  40.  
  41.  
  42. As recommended in the help file, it is fastest (but not required) 
  43. to group keys by hive.  
  44.  
  45. The following will make entries in the .DEFAULT and any 
  46. locally logged-on users' registry keys on the selected computers.
  47.  
  48. HKEY_USERS    \*\Software\Eytcheson    Temp    REG_SZ    This is a test
  49. HKEY_USERS    \*\Software\Eytcheson    Temp2    REG_SZ    This is a test number two
  50. HKEY_USERS    \*\Software\Eytcheson    Temp3    REG_SZ    This is a test number three
  51. HKEY_USERS    \*\Software\Eytcheson    Temp4    REG_SZ    This is a test number four
  52.  
  53. (After you have tested these keys, you can change the VALUE TYPE's to *DELETE VALUE* and
  54. these keys will be removed.)
  55.