You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 key gets created in Software/Custom.
But setValue doesn't do anything.
Anything I'm doing wrong here?
The text was updated successfully, but these errors were encountered:
I have this code:
I can see in the Registry editor that the key gets created in Software/Custom.
But
setValue
doesn't do anything.Anything I'm doing wrong here?
The text was updated successfully, but these errors were encountered: