Thanks for your reply. Actually, I do have the service automatically starting during the OS start-up using the method you described. What I want to do is have the service automatically started right after installation (without requiring a reboot). I was eventually able to accomplish this by putting the following code in the ProjectInstaller.vb file. The program "MyApp" is a console application that starts, stops, pauses, etc. the service using various command parameters (in this case, "/start,MyService"). 'Auto-start the service after installation. Dim psInfo As New System.Diagnostics.ProcessStartInfo("C:\Program Files\MyApp.exe", "/start,MyService") psInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden Dim myProcess As Process = System.Diagnostics.Process.Start(psInfo) Thanks, Todd_S