Why doesn't the RequestAdditionalTime() method work on restart in Vista/7?

依然范特西╮ 提交于 2019-11-28 03:41:45

问题


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.


回答1:


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.




回答2:


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.



来源:https://stackoverflow.com/questions/2011060/why-doesnt-the-requestadditionaltime-method-work-on-restart-in-vista-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!