本文介绍了创建新的 Windows 系统注册表值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在 Windows 7 中创建一个新的注册表项,使用 Node.Js 设置、读取和编辑注册表项的值
I want to create a new registry entry in Windows 7, set, read and edit the value of the registry key using Node.Js
推荐答案
检查 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
这篇关于创建新的 Windows 系统注册表值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!