winregsync
v1.0.0
Published
This package enables the user to put and retrieve Windows registry keys and paths synchronously
Maintainers
Readme
This package enables the user to put and retrieve Windows registry keys and paths synchronously
Example
const winRegSync = require('winRegSync')
for(const path of winRegSync.paths(winRegSync.HKLM, '\\SOFTWARE\\JavaSoft\\Java Development Kit')) {
const javaHome = winRegSync.getKey(path, 'JavaHome')
console.log(`Java Home Key: ${javaHome}`)
}
ToDo
- [ ] Implement put and set function
