home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / boot.wim / 1 / Windows / System32 / en-US / reg.exe.mui / string.txt next >
Text File  |  2006-11-02  |  16KB  |  89 lines

  1. 2    REG Operation [Parameter List]\n\n  Operation  [ QUERY   | ADD    | DELETE  | COPY    |\n               SAVE    | LOAD   | UNLOAD  | RESTORE |\n               COMPARE | EXPORT | IMPORT  | FLAGS ]\n\nReturn Code: (Except for REG COMPARE)\n\n  0 - Successful\n  1 - Failed\n\nFor help on a specific operation type:\n\n  REG Operation /?\n\nExamples:\n\n  REG QUERY /?\n  REG ADD /?\n  REG DELETE /?\n  REG COPY /?\n  REG SAVE /?\n  REG RESTORE /?\n  REG LOAD /?\n  REG UNLOAD /?\n  REG COMPARE /?\n  REG EXPORT /?\n  REG IMPORT /?\n  REG FLAGS /?\n
  2. 4    REG ADD KeyName [/v ValueName | /ve] [/t Type] [/s Separator] [/d Data] [/f]\n\n  KeyName  [\\Machine\]FullKey\n           Machine  Name of remote machine - omitting defaults to the\n                    current machine. Only HKLM and HKU are available on remote\n                    machines.\n           FullKey  ROOTKEY\SubKey\n           ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n           SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  /v       The value name, under the selected Key, to add.\n\n  /ve      adds an empty value name (Default) for the key.\n\n  /t       RegKey data types\n           [ REG_SZ    | REG_MULTI_SZ | REG_EXPAND_SZ |\n             REG_DWORD | REG_BINARY   | REG_NONE      ]\n           If omitted, REG_SZ is assumed.\n\n  /s       Specify one character that you use as the separator in your data\n           string for REG_MULTI_SZ. If omitted, use "\0" as the separator.\n\n
  3. 5      /d       The data to assign to the registry ValueName being added.\n\n  /f       Force overwriting the existing registry entry without prompt.\n\nExamples:\n\n  REG ADD \\ABC\HKLM\Software\MyCo\n    Adds a key HKLM\Software\MyCo on remote machine ABC\n\n  REG ADD HKLM\Software\MyCo /v Data /t REG_BINARY /d fe340ead\n    Adds a value (name: Data, type: REG_BINARY, data: fe340ead)\n\n  REG ADD HKLM\Software\MyCo /v MRU /t REG_MULTI_SZ /d fax\0mail\n    Adds a value (name: MRU, type: REG_MULTI_SZ, data: fax\0mail\0\0)\n\n  REG ADD HKLM\Software\MyCo /v Path /t REG_EXPAND_SZ /d ^%systemroot^%\n    Adds a value (name: Path, type: REG_EXPAND_SZ, data: %systemroot%)\n    Notice:  Use the caret symbol ( ^ ) inside the expand string\n
  4. 6    REG DELETE KeyName [/v ValueName | /ve | /va] [/f]\n\n  KeyName    [\\Machine\]FullKey\n    Machine  Name of remote machine - omitting defaults to the current machine.\n             Only HKLM and HKU are available on remote machines.\n    FullKey  ROOTKEY\SubKey\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  ValueName  The value name, under the selected Key, to delete.\n             When omitted, all subkeys and values under the Key are deleted.\n\n  /ve        delete the value of empty value name (Default).\n\n  /va        delete all values under this key.\n\n  /f         Forces the deletion without prompt.\n\nExamples:\n\n  REG DELETE HKLM\Software\MyCo\MyApp\Timeout\n    Deletes the registry key Timeout and its all subkeys and values\n\n  REG DELETE \\ZODIAC\HKLM\Software\MyCo /v MTU\n    Deletes the registry value MTU under MyCo on ZODIAC\n
  5. 7    REG COPY KeyName1 KeyName2 [/s] [/f]\n\n  KeyName    [\\Machine\]FullKey\n    Machine  Name of remote machine - omitting defaults to the current machine.\n             Only HKLM and HKU are available on remote machines.\n    FullKey  ROOTKEY\SubKey\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  /s         Copies all subkeys and values.\n\n  /f         Forces the copy without prompt.\n\nExamples:\n\n  REG COPY HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp /s\n    Copies all subkeys and values under the key MyApp to the key SaveMyApp\n\n  REG COPY \\ZODIAC\HKLM\Software\MyCo HKLM\Software\MyCo1\n    Copies all values under the key MyCo on ZODIAC to the key MyCo1\n    on the current machine\n
  6. 8    REG SAVE KeyName FileName [/y]\n\n  KeyName    ROOTKEY\SubKey\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  FileName   The name of the disk file to save. If no path is specified, the\n             file is created in the current folder of the calling process.\n\n  /y       Force overwriting the existing file without prompt.\n\nExamples:\n\n  REG SAVE HKLM\Software\MyCo\MyApp AppBkUp.hiv\n    Saves the hive MyApp to the file AppBkUp.hiv in the current folder\n
  7. 9    REG RESTORE KeyName FileName\n\n  KeyName    ROOTKEY\SubKey (local machine only)\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key to restore the hive file into.\n             Overwrites the existing key's values and subkeys.\n\n  FileName   The name of the hive file to restore.\n             You must use REG SAVE to create this file.\n\nExamples:\n\n  REG RESTORE HKLM\Software\Microsoft\ResKit NTRKBkUp.hiv\n    Restores the file NTRKBkUp.hiv overwriting the key ResKit\n
  8. 10    REG LOAD KeyName FileName\n\n  KeyName    ROOTKEY\SubKey (local machine only)\n    ROOTKEY  [ HKLM | HKU ]\n    SubKey   The key name to load the hive file into. Creates a new key.\n\n  FileName   The name of the hive file to load.\n             You must use REG SAVE to create this file.\n\nExamples:\n\n  REG LOAD HKLM\TempHive TempHive.hiv\n    Loads the file TempHive.hiv to the Key HKLM\TempHive\n
  9. 11    REG UNLOAD KeyName\n\n  KeyName    ROOTKEY\SubKey (local machine only)\n    ROOTKEY  [ HKLM | HKU ]\n    SubKey   The key name of the hive to unload.\n\nExamples:\n\n  REG UNLOAD HKLM\TempHive\n    Unloads the hive TempHive in HKLM\n
  10. 12    REG COMPARE KeyName1 KeyName2 [/v ValueName | /ve] [Output] [/s]\n\n  KeyName    [\\Machine\]FullKey\n    Machine  Name of remote machine - omitting defaults to the current machine.\n             Only HKLM and HKU are available on remote machines.\n    FullKey  ROOTKEY\SubKey\n             If FullKey2 is not specified, FullKey2 is the same as FullKey1.\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  ValueName  The value name, under the selected Key, to compare.\n             When omitted, all values under the Key are compared.\n\n  /ve        compare the value of empty value name (Default).\n\n  /s         Compare all subkeys and values.\n\n  Output     [/oa | /od | /os | /on]\n             When omitted, output only differences.\n    /oa      Output all of differences and matches.\n    /od      Output only differences.\n    /os      Output only matches.\n    /on      No output.\n\n
  11. 13    Return Code:\n\n  0 - Successful, the result compared is identical\n  1 - Failed\n  2 - Successful, the result compared is different\n\nNote:\n  The symbols at the front of each ouputted line are defined as:\n  = means FullKey1 data is equal to FullKey2 data\n  < refers to FullKey1 data and is different than FullKey2 data\n  > refers to FullKey2 data and is different than Fullkey1 data\n\nExamples:\n\n  REG COMPARE HKLM\Software\MyCo\MyApp HKLM\Software\MyCo\SaveMyApp\n    Compares all values under the key MyApp with SaveMyApp\n\n  REG COMPARE HKLM\Software\MyCo HKLM\Software\MyCo1 /v Version\n    Compares the value Version under the key MyCo and MyCo1\n\n  REG COMPARE \\ZODIAC\HKLM\Software\MyCo \\. /s\n    Compares all subkeys and values under HKLM\Software\MyCo on ZODIAC\n    with the same key on the current machine\n
  12. 14    REG EXPORT KeyName FileName [/y]\n\n  Keyname    ROOTKEY[\SubKey] (local machine only).\n    ROOTKEY  [ HKLM | HKCU | HKCR | HKU | HKCC ]\n    SubKey   The full name of a registry key under the selected ROOTKEY.\n\n  FileName   The name of the disk file to export.\n\n  /y       Force overwriting the existing file without prompt.\n\nExamples:\n\n  REG EXPORT HKLM\Software\MyCo\MyApp AppBkUp.reg\n    Exports all subkeys and values of the key MyApp to the file AppBkUp.reg\n
  13. 15    REG IMPORT FileName\n\n  FileName  The name of the disk file to import (local machine only).\n\nExamples:\n\n  REG IMPORT AppBkUp.reg\n    Imports registry entries from the file AppBkUp.reg\n\n
  14. 16    REG FLAGS KeyName [QUERY |\n                   SET [DONT_VIRTUALIZE] [DONT_SILENT_FAIL] [RECURSE_FLAG]]\n\n  Keyname    "HKLM\Software"[\SubKey] (Restricted to these keys on\n        local machine only).\n    SubKey   The full name of a registry key under HKLM\Software.\n  DONT_VIRTUALIZE DONT_SILENT_FAIL RECURSE_FLAG\n    Used with SET; flags specified on the command line will be set,\n        while those not specified will be cleared.\n\nExamples:\n\n  REG FLAGS HKLM\Software\MyCo\MyApp QUERY\n    Displays the current flags of the key MyApp.\n\n  REG FLAGS HKLM\Software\MyCo\MyApp SET DONT_VIRTUALIZE /s\n    Sets the DONT_VIRTUALIZE flag (and clears DONT_SILENT_FAIL and\n    RECURSE_FLAG) on MyApp and all its subkeys\n\n
  15. 101    ERROR: Invalid syntax.\nType "REG /?" for usage.\n
  16. 102    ERROR: Invalid Argument/Option - '%s'.\nType "REG /?" for usage.\n
  17. 103    ERROR: Invalid syntax.\nType "REG %s /?" for usage.\n
  18. 104    ERROR: Invalid key name.\nType "REG %s /?" for usage.\n
  19. 105    ERROR: A remote machine was specified, the root key must be HKLM or HKU.\nType "REG %s /?" for usage.\n
  20. 106    ERROR: The root key must be HKLM or HKU for LOAD/UNLOAD.\nType "REG %s /?" for usage.\n
  21. 107    Insufficient memory. Try closing down some applications, and try again.\n       If you still see this message, try restarting Windows.\n
  22. 108    ERROR: Registry editing has been disabled by your administrator.\n
  23. 109    ERROR: This operation can only be performed on subkeys of HKLM\Software.\nType "REG FLAGS /?" for usage.\n
  24. 121    ERROR: Invalid syntax. Specify valid numeric value for '/d'.\nType "REG ADD /?" for usage.\n
  25. 122    ERROR: Invalid syntax. Specify valid hex value for '/d'.\nType "REG ADD /?" for usage.\n
  26. 123    ERROR: Invalid value specified for '/d'.\nType "REG ADD /?" for usage.\n
  27. 131    ERROR: The registry entry cannot be copied onto itself.\nType "REG COPY /?" for usage.\n
  28. 141    Delete request is partially completed.\n
  29. 151    ERROR: The registry entry is being compared with itself.\n
  30. 161    ERROR: Failed to access "%s".\n
  31. 171    ERROR: A remote machine was specified.\nType "REG EXPORT /?" for usage.\n
  32. 172    ERROR: A remote machine was specified.\nType "REG FLAGS /?" for usage.\n
  33. 191    The system was unable to find the specified registry key or value.\n
  34. 201    Permanently delete the registry key %s (Yes/No)? 
  35. 202    Value %s exists, overwrite(Yes/No)? 
  36. 203    Value %s exists. Overwrite (Yes/No/All)? 
  37. 204    Delete all values under the registry key %s (Yes/No)? 
  38. 205    Delete the registry value %s (Yes/No)? 
  39. 206    YNA
  40. 207    File %s already exists. Overwrite (Yes/No)?
  41. 301    REG QUERY KeyName [/v [ValueName] | /ve] [/s]\n          [/f Data [/k] [/d] [/c] [/e]] [/t Type] [/z] [/se Separator]\n\n  KeyName  [\\Machine\]FullKey\n           Machine - Name of remote machine, omitting defaults to the\n                     current machine. Only HKLM and HKU are available on\n                     remote machines\n           FullKey - in the form of ROOTKEY\SubKey name\n                ROOTKEY - [ HKLM | HKCU | HKCR | HKU | HKCC ]\n                SubKey  - The full name of a registry key under the\n                          selected ROOTKEY\n\n  /v       Queries for a specific registry key values.\n           If omitted, all values for the key are queried.\n\n           Argument to this switch can be optional only when specified\n           along with /f switch. This specifies to search in valuenames only.\n\n  /ve      Queries for the default value or empty value name (Default).\n\n  /s       Queries all subkeys and values recursively (like dir /s).\n\n  /se      Specifies the separator (length of 1 character only) in\n           data string for REG_MULTI_SZ. Defaults to "\0" as the separator.\n\n  /f       Specifies the data or pattern to search for.\n
  42. 302               Use double quotes if a string contains spaces. Default is "*".\n\n  /k       Specifies to search in key names only.\n\n  /d       Specifies the search in data only.\n\n  /c       Specifies that the search is case sensitive.\n           The default search is case insensitive.\n\n  /e       Specifies to return only exact matches.\n           By default all the matches are returned.\n\n  /t       Specifies registry value data type.\n           Valid types are:\n             REG_SZ, REG_MULTI_SZ, REG_EXPAND_SZ,\n             REG_DWORD, REG_BINARY, REG_NONE\n           Defaults to all types.\n\n  /z       Verbose: Shows the numeric equivalent for the type of the valuename.\n\n
  43. 303    Examples:\n\n  REG QUERY HKLM\Software\Microsoft\ResKit /v Version\n    Displays the value of the registry value Version\n\n  REG QUERY \\ABC\HKLM\Software\Microsoft\ResKit\Nt\Setup /s\n    Displays all subkeys and values under the registry key Setup\n    on remote machine ABC\n\n  REG QUERY HKLM\Software\Microsoft\ResKit\Nt\Setup /se #\n    Displays all the subkeys and values with "#" as the seperator\n    for all valuenames whose type is REG_MULTI_SZ.\n\n  REG QUERY HKLM /f SYSTEM /t REG_SZ /c /e\n    Displays Key, Value and Data with case sensitive and exact\n    occurrences of "SYSTEM" under HKLM root for the data type REG_SZ\n\n  REG QUERY HKCU /f 0F /d /t REG_BINARY\n    Displays Key, Value and Data for the occurrences of "0F" in data \n    under HKCU root for the data type REG_BINARY\n\n  REG QUERY HKLM\SOFTWARE /ve \n    Displays Value and Data for the empty value (Default)\n    under HKLM\SOFTWARE\n
  44. 501    (Default)
  45. 502    (value not set)
  46. 511    \nResult Compared:  Different\n
  47. 512    \nResult Compared:  Identical\n
  48. 513    Value: %s
  49. 514    Key: %s\%s
  50. 521    End of search: %d match(es) found.\n
  51. 527    Type: %s\n
  52. 528    Data: %s\n
  53. 702    Error opening the file. There may be a disk or file system error.\n
  54. 703    Error reading the file. There may be a disk error or the file may be corrupt.\n
  55. 704    Error accessing the registry.\n
  56. 705    Not all data was successfully written to the registry.\n       Some keys are open by the system or other processes.\n
  57. 706    The specified file is not a registry file. You can import only registry files.\n
  58. 707    The specified file is not intended for use with this version of Windows.\n
  59. 801    The key selected is invalid.\n
  60. 802    Unable to write to the file. There may be a disk or file system error.\n
  61. 5001    ERROR:
  62. 5002    WARNING:
  63. 5003    SUCCESS:
  64. 5004    INFO:
  65. 5005    N/A
  66. 5501    Type the password for %s:
  67. 5502    Passing the user credential for local connection.\n
  68. 5503    The target system must be running Windows XP or above.\n
  69. 5504    The remote system must be running Windows 2000 or above.\n
  70. 5601    Invalid syntax. '%s' value is not allowed for '%s' option.\n%s\n
  71. 5602    Invalid syntax. Specify valid numeric value for '%s'.\n%s\n
  72. 5603    Invalid syntax. Specifiy valid floating point value for '%s'.\n%s\n
  73. 5604    Invalid syntax. Mandatory option '%s' is missing.\n%s\n
  74. 5605    Invalid syntax. '%s' option is not allowed more than '%d' time(s).\n%s\n
  75. 5607    Invalid argument/option - '%s'.\n%s\n
  76. 5608    Invalid syntax. Default argument is missing.\n%s\n
  77. 5609    Length of the command line argument should not exceed 255 characters.\n
  78. 5610    Invalid syntax. Default option is not allowed more than '%d' time(s).\n%s\n
  79. 5611    Invalid syntax. Value expected for '%s'.\n%s\n
  80. 5612    Invalid syntax. '%s' value is not allowed as default argument.\n%s\n
  81. 5613    Type "%s /?" for usage.
  82. 5614    Value for '%s' option cannot be empty.\n%s\n
  83. 5615    Value for default option cannot be empty.\n%s\n
  84. 5616    Invalid syntax. Specify valid numeric value for default.\n%s\n
  85. 5617    Invalid syntax. Specifiy valid floating point value for default.\n%s\n
  86. 5618    Value for default option cannot be more than %d character(s).\n
  87. 5619    Invalid syntax. Value cannot be specified with '%s' option.\n%s\n
  88. 5620    Value for '%s' option cannot be more than %d character(s).\n
  89.