如何增加Windows服务启动超时

前端之家收集整理的这篇文章主要介绍了如何增加Windows服务启动超时前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已将软件迁移到非常慢的服务器.由于系统超时,某些软件服务拒绝启动.如何将超时从默认值30秒(?)增加到几分钟?

先感谢您!

You can modify the timeout value in the registry.
1. Click Start,click Run,type regedit,and then click OK.
2. Locate and then click the following registry subkey:
 - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control
3. In the right pane,locate the ServicesPipeTimeout entry.

**Note**: If the ServicesPipeTimeout entry does not exist,you must create it. To do this,follow these steps:

 - On the Edit menu,point to New,and then click DWORD Value.
 - Type ServicesPipeTimeout,and then press ENTER. 
4. Right-click ServicesPipeTimeout,and then click Modify.
5. Click Decimal,type 60000,and then click OK.
 - This value represents the time in milliseconds before a service times out.
6. Restart the computer.
原文链接:https://www.f2er.com/windows/370985.html

猜你在找的Windows相关文章