Reputation: 123
I found that it is possible to access Windows Registry remotely using C++. But is it possible to do remote Windows Registry access through JAVA?
Just be able to read the registry remotely would be helpful!
EDIT
Here is how to edit Windows Registry locally. Link
Upvotes: 1
Views: 1127
Reputation: 4786
Using Java Native Interface you can make calls to native APIs. Using that, you could call the Windows API function you cited.
Upvotes: 1