private bool SetServiceAutoRun()
{
try
{
RegistryKey key =Registry.LocalMachine.OpenSubKey("SOFTWARE").OpenSubKey("Microsoft").OpenSubKey("Windows").OpenSubKey("CurrentVersion").OpenSubKey("Run",true);
key.SetValue("RoadService",Application.StartupPath + @"\MobileMessageControlCenter.exe");
return true;
}
catch
{
return false;
}
}