getRegistryKeyValues {SWinRegistry} | R Documentation |
This retrieves all the key-value pairs in the specified registry folder.
getRegistryKeyValues(path = "", top = .BuiltinKeys[1])
path |
|
top |
A named list containing the key-value pairs of the elements in that node of the registry. The names of the list are the keys. The elements in the list are the corresponding values in the registry converted to their S equivalents. The rule for mapping these types to S is:
Duncan Temple Lang <duncan@wald.ucdavis.edu>
http://www.omegahat.org/SWinRegistry
getRegistryKeyValues("HKEY_CURRENT_USER\\Environment") getRegistryKeyValues(c("HKEY_CURRENT_USER", "Environment")) getRegistryKeyValues("Environment", top = "HKEY_CURRENT_USER") getRegistryKeyValues("Environment", top = "HKEY_CURRENT_USER") names(getRegistryKeyValues("HKEY_CURRENT_USER\\Control Panel\\Colors")) names(getRegistryKeyValues(c("HKEY_CURRENT_USER", "Control Panel", "Colors"))) names(getRegistryKeyValues(c("Control Panel", "Colors"), top = "HKEY_CURRENT_USER")) names(getRegistryKeyValues("Control Panel\\Colors", top = "HKEY_CURRENT_USER"))