1

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

Community
  • 1
  • 1
Mengyu ZHang
  • 123
  • 1
  • 10
  • 1
    JNI apart, i know its possible to do all sorts of manipulations on remote windows hosts using plain java. for example, jenkins can install and start windows services from *nix machines, but im not familiar with the code itself – radai Feb 25 '13 at 20:52

1 Answers1

1

Using Java Native Interface you can make calls to native APIs. Using that, you could call the Windows API function you cited.

Alan Krueger
  • 4,701
  • 4
  • 35
  • 48