You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- Does not provide a native implementation but just calls regedit.exe a lot.Daniel– Daniel2019-04-07 16:19:04 +00:00Commented Apr 7, 2019 at 16:19
- Works just fine.Alex Byrth– Alex Byrth2020-10-30 01:03:14 +00:00Commented Oct 30, 2020 at 1:03
- @AlexByrth may work fine for you, but (1) does not work for software that cannot write files locally, which does indeed happen, (2) will fail as soon as reg.exe changes the input or output format, (3) will fail when you code for corporate customers that, for some security reason, disable calling reg.exe, or calling any programs at all (yes, these do exist). Also, calling out to an external program is slow on Windows.toolforger– toolforger2020-12-14 06:34:25 +00:00Commented Dec 14, 2020 at 6:34
- @toolforger, good points, but the proposed solution solved my issues. The situations you described are dead ends for several other options out there too. There is no easy general fix for this, except perhaps a full-featured installer package running as administrator. A bazooka to kill an ant.Alex Byrth– Alex Byrth2020-12-22 13:55:22 +00:00Commented Dec 22, 2020 at 13:55
- @AlexByrth "works for me" is good for "needs to work for nobody except me" situations. Most code must work for others, and then solutions like those based on external programs that use an undocumented output format that may change with every Windows version simply don't fly. The JNA-based solutions work against a documented MS API - this doesn't mean it will never change, but at least you'll get a warning, and probably the JNA library will be updated in time so you won't even notice something changed.toolforger– toolforger2020-12-22 16:27:28 +00:00Commented Dec 22, 2020 at 16:27
| Show 3 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-java