sharepoint2007在创建Web应用程序时的问题

在管理中心创建web应用程序时提示:指定的路径无法在此时使用(异常来自 HRESULT:0x80070094)
原因:Windows SharePoint Services Timer Service服务导致的内存泄漏(注:网上查找到的,英文原名为:The timer service has a known memory leak.
解决方法:到安装有sharepoint service的服务器上,用cmd进入命令行。
              然后执行以下三条命令:1、net stop sptimerv3
                                            2、net start sptimerv3
                                            3、iisreset
解释:三条命令分别为 
        1、停止Windows SharePoint Services Timer Service服务
        2、启动Windows SharePoint Services Timer Service服务
        3、重启IIS服务
在服务器上执行完上述三步命令后再回到管理页面创建Web应用程序就可以创建成功了。

原文地址:https://www.cnblogs.com/xueyuan299/p/1120926.html