This is a viam module that reads windows registry keys using the golang registry package.
{
"keys": [
"SOFTWARE\\Viam",
"SOFTWARE\\Viam:version"
]
}
This produces output:
{
"SOFTWARE\\Viam": {
"version": "123",
"": "hello"
},
"SOFTWARE\\Viam:version": "123"
}
The SOFTWARE\\Viam:version
is a special form that reads the version
value inside the Viam
key.
This currently only supports string keys.