windows-registry-node icon indicating copy to clipboard operation
windows-registry-node copied to clipboard

Read and Write to the Windows registry in-process from Node.js. Easily set application file associations and other goodies.

Results 23 windows-registry-node issues
Sort by recently updated
recently updated
newest added
trafficstars

Will be very useful if this functionality https://msdn.microsoft.com/en-us/library/windows/desktop/ms724892(v=vs.85).aspx was wrapped in an EventEmitter

enhancement

I was looking for node 12 support and this seemed to work so I thought I would file a PR to see if you think it should go into the...

Sitting on #59, so look at that first. This code should work, but I'd like some feedback on the changes first. In particular, how the `utils.associateExeForFile()` test should work without...

using UTF-16 strings throughout, to fix encoding issues in the key paths and value strings read and written. This is my attempt to fix issue #44. For the wide strings...

This code throws an error: ``` const registry = require('windows-registry'); const windef = registry.windef; const key = new registry.Key(windef.HKEY.HKEY_LOCAL_MACHINE, 'SOFTWARE\\SomeVendor\\SomeApp\\Settings'); ``` > Failed to open key error: undefined This happens...

This line of code in registry.js appears to be causing my NodeJS to abruptly terminate with an access violation. ``` // QUERY FOR VALUE SIZE & TYPE var result =...

- Open keys in HKCR as read-only, not all access - Create a new key HKCU\Software\windows-registry-node for read/write tests. (This key is not cleaned up on test completion, in case...

I have this code: ``` var key = new Key(windef.HKEY.HKEY_CURRENT_USER, 'Software', windef.KEY_ACCESS.KEY_ALL_ACCESS); var createdKey = key.createSubKey('Custom', windef.KEY_ACCESS.KEY_ALL_ACCESS); key.setValue('test_value_name', windef.REG_VALUE_TYPE.REG_SZ, 'test_value'); ``` I can see in the Registry editor that the...