Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RequestAdditionalTime has no effect [duplicate]

I have been doing some extensive testing of a Windows Service I have been writing in C# .Net 3.5. I am having trouble getting Windows to give me enough time for my service to shutdown properly when I restart or shutdown the computer even though I am invoking the RequestAdditionalTime() method which should update the SCM and keep my service running. My code works properly if I manually stop the service however. I have primarily been testing this code in Windows Vista and Windows 7, upon deciding to test the code in Windows Xp everything worked perfectly. Does anyone know why this call does not work in Vista/7? I am thinking I need some kind of permission to keep the system from shutting down that I get by default in Xp but not in Vista/7.

like image 302
Kam Sheffield Avatar asked Nov 22 '22 16:11

Kam Sheffield


2 Answers

If the system isn't shutting down, your service can request additional time and your process will not get killed.

If the system is shutting down, your service has to shut down. You don't even get the normal 30 seconds that a service normally gets. Shutdown is more forceful than it used to be.

like image 154
Windows programmer Avatar answered Nov 24 '22 06:11

Windows programmer


In the non-shutdown case, RequestAdditionalTime() must be called more often than every 2 minutes:

    protected override void OnStop()
    {
        Thread.Sleep(60000);
        RequestAdditionalTime(180000);
        Thread.Sleep(60000);
        RequestAdditionalTime(180000);
        Thread.Sleep(5000);
    }

Note that despite the name, the time parameter is the total shutdown time requested.

like image 21
Simon Buchan Avatar answered Nov 24 '22 08:11

Simon Buchan