Get ActiveSync version

  • Thread starter Thread starter cfyam
  • Start date Start date
How can I get the MS ActiveSync version on PC?

I have ActiveSync installed on my XP machine. I found version info for
ActiveSync in the system registry (regedit.exe) at
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows CE Services.
You can query the version info programmatically in C# from the reg-key by
using:

RegistryKey regkey;
regkey = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows CE
Services");

int majorVersion = regkey.GetValueNames("MajorVersion");

int minorVersion = (string)regkey.GetValue("MinorVersion);

Hope this helps.
--
Adrian Mascarenhas, Developer Division

This posting is provided "AS IS" with no warranties, and confers no rights.

Note: For the benefit of the community-at-large, all responses to this
message are best directed to the newsgroup/thread from which they
originated.
 
Back
Top