views:

24

answers:

0

Hello all,

We need to modify the Startup type of our windows service from "Automatic" to "Automatic Delayed Start". Anyone has the idea that how to do this? My code is like this:

<ServiceInstall
             Id="WinServiceInstall"
             Name="ServiceManager"
             DisplayName="ServiceManager"
             Type="ownProcess"
             Start="auto"
             ErrorControl="normal"
             Vital ='yes'
             Description ='Monitoring and running the jobs'
             Account="[SERVICEACCOUNT]"
            Password="[SERVICEPASSWORD]">
                <util:ServiceConfig FirstFailureActionType="restart" SecondFailureActionType="restart" ThirdFailureActionType ="restart" RestartServiceDelayInSeconds ="10" />
            </ServiceInstall>

And how to set the Restart service time? I would like to set Restart service after 2 minutes if failed.

Thank you!