创建新的Windows系统注册表值

时间:2013-10-13 09:16:25

标签: node.js registry

我想在Windows 7中创建一个新的注册表项,使用Node.Js设置,读取和编辑注册表项的值

2 个答案:

答案 0 :(得分:6)

检查windows模块

文档中的几个例子:

v = registry('HKLM/Software/Microsoft')  // wrapped in objects allowing further fluent commands
v.someValue.remove()                     // delete value
v.add('newValue', 'myValue')             // add new value
v.add('newKey')                          // a key is like a folder
v.subKey                                 // getter which goes down one level deeper

x = registry('HKCU/Some/Random/Place')
x.add('newName', v.someValue)            // clone a value

答案 1 :(得分:3)

另外,您可以查看regedit,以下是文档中的一些代码:

var regedit = require('regedit')

regedit.list('HKCU\\SOFTWARE', function(err, result) {
    ...
})

regedit.createKey('HKCU\\Software\\MySoftware\\foo', function(err) {
   ...
})

regedit.putValue({
    'HKCU\\Software\\MySoftware\\foo': {
        'myValue3': {
            value: ['a', 'b', 'c']
            type: 'REG_MULTI_SZ'
        }
    }
}, function(err) {
    ...
})