Possible?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Would it be possible to read desktop computer registry value from Pocket PC
in Sync?
RegConnectRegistry seems to be a function that I can use for this purpose.
So to use this function from PDA, I declared the function like this..

[DllImport("coredll.dll")]
private static extern int RegConnectRegistry(
String lpMachineName,
uint hKey,
ref uint phkResult
);

However, it throws MissingMethod Exception.

Any other way to read Desktop computer registry value from Pocket PC?
(Again, Reading desktop registry value from Pocket PC)
I guess it would be hard due to security reason, however, I belive that
there is
workaround way to achive this one.......

Anyone has idea about this?

Thanks in advance.

............................................................TJ
 
It's not possible directly. Indirectly, you can create a service that will
read the registry on a desktop and will communicate with the device.
 
Back
Top