readRegistry {utils} | R Documentation |
Read values of keys in the Windows Registry, and optionally whole hives.
readRegistry(key, hive = c("HLM", "HCR", "HCU", "HU", "HCC", "HPD"),
maxdepth = 1)
key |
character string, the path to the key in the Windows Registry. |
hive |
The ‘hive’ containing the key. The abbreviations
are for |
maxdepth |
How far to recurse into the subkeys of the key. By default only the values of the key and the names of subkeys are returned. |
Registry access is done using the security settings of the current R
session: this means that some Registry keys may not be accessible even
if they exist. This may result in NULL
values in the object
return, and, possibly, empty element names.
A named list of values and subkeys (which may themselves be named lists). The default value (if any) precedes named values which precede subkeys, and both the latter sets are sorted alphabetically.
readRegistry("SOFTWARE\\R-core", maxdepth = 3)
gmt <- file.path("SOFTWARE", "Microsoft", "Windows NT",
"CurrentVersion", "Time Zones",
"GMT Standard Time", fsep="\\")
readRegistry(gmt, "HLM")