| TABLE 1: Registry Data Types |
| Name* |
Description |
| REG_BINARY |
Binary data in any form |
| REG_DWORD |
A 32-bit integer |
| REG_DWORD_BIG_ENDIAN |
A 32-bit integer in Big Endian format (different from REG_DWORD) |
| REG_DWORD_LITTLE_ENDIAN |
A 32-bit integer in Little Endian format (equivalent to REG_DWORD) |
| REG_EXPAND_SZ |
A null-terminated string that contains environment variables needing expansion |
| REG_LINK |
Type reserved for Microsoft internal use |
| REG_MULTI_SZ |
An array of null-terminated strings |
| REG_NONE |
No defined type |
| REG_QWORD |
A 64-bit integer |
| REG_QWORD_LITTLE_ENDIAN |
A 64-bit in Little Endian format |
| REG_RESOURCE_LIST |
A device-driver resource list |
| REG_SZ |
A null-terminated Unicode or ANSI string |
| * WSH can access only those data types in bold. |