Mengyu ZHang
Mengyu ZHang

Reputation: 123

Java - How to access Windows Registry remotely

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

Answers (1)

Alan Krueger
Alan Krueger

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

Related Questions