getRegistryKeyValues {SWinRegistry}R Documentation

Contents of Registry Folder

Description

This retrieves all the key-value pairs in the specified registry folder.

Usage

getRegistryKeyValues(path = "", top = .BuiltinKeys[1])

Arguments

path
top

Value

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:

Author(s)

Duncan Temple Lang <duncan@wald.ucdavis.edu>

References

http://www.omegahat.org/SWinRegistry

See Also

getRegistrySubKeyNames

.resolveToplevelRegistryKey

Examples

 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"))

[Package SWinRegistry version 0.3-3 Index]