TFS11 Beta - TfsBuildServiceHost.2012 service stopping unexpectedly

We noticed several early adopters running into an issue with the build service in TFS11 Beta stopping unexpectedly. There is no event log entry other than it stopped and restarting it seems to work fine. The root cause seems to be connectivity to the TFS11 application tier. If the build machine can't connect to the AT for more than the 5 minute timeout, an exception causes it to stop. It acutally stops normally, so the service failure configuration doesn't restart it. We also forgot to log the error to the event log, so there's no explanation for the stoppage.

The only workaround is to restart the service.

To make this a little easier, I wrote a simple console application that will check the service every five minutes and ensure that it is still running. Unfortunately, this application has to run as an administrator because of the security around services. Simply create a Windows Console Application in VS, add a reference to System.ServiceProcess for the project,
and replace Program.cs with this code...

  using System;
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.Linq;
 using System.ServiceProcess;
 using System.Text;
 using System.Threading;
 using System.Threading.Tasks;
 
 namespace KeepAliveBuildService
 {
 class Program
 {
 static void Main(string[] args)
 {
 String serviceName = args.Length > 0 ? args[0] : "TfsBuildServiceHost.2012";
 while (true)
 {
 // Make sure the service is up
 EnsureServiceIsStarted(serviceName);
 // Wait five minutes
 Thread.Sleep(new TimeSpan(0, 5, 0));
 }
 }
 
 static bool EnsureServiceIsStarted(String serviceName)
 {
 try
 {
 var service = new ServiceController(serviceName);
 LogMessage(String.Format("{0} Status {1}", serviceName, service.Status));
 if (service.Status != ServiceControllerStatus.Running)
 {
 LogMessage(String.Format("Starting {0}", serviceName, service.Status));
 service.Start();
 return true;
 }
 }
 catch (InvalidOperationException)
 {
 LogMessage(String.Format("No service with the name {0} could be found.", serviceName));
 }
 catch (Exception ex)
 {
 LogMessage(ex.ToString());
 }
 
 return false;
 }
 
 static void LogMessage(String message)
 {
 String source = "KeepAliveBuildService";
 String log = "Application";
 if (!EventLog.SourceExists(source))
 {
 EventLog.CreateEventSource(source, log);
 }
 
 EventLog.WriteEntry(source, message);
 Console.WriteLine(message);
 }
 }
}

You can run the program interactively on the desktop (remember to run as Admin) or you can create a Windows Service torun the application for you.Please note that this is only a problem for the TFS11 Beta Build Service. We have since fixed the problem and it should not appear in future versions

Sorry about the bug :(