ASP.Net不执行问题一解
更新时间:2008年02月25日 14:31:48 作者:
ASP.Net不执行问题一解
最近IIS突然无法运行ASP.Net了.反复重装也没有用.检查系统日志报告如下错误:
aspnet_wp.exe could not be started. The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure that
the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.
许多方法都不灵。最后用这个“药”解决问题。方子奉上供大家分享:
首先停止IIS服务
iisreset /stop
然后删除 ASPNET 帐号
net user ASPNET /delete
重新注册 ASP.NET 和 ASPNET 帐号
aspnet_regiis -i
启动IIS
iisreset /start
aspnet_wp.exe could not be started. The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure that
the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.
许多方法都不灵。最后用这个“药”解决问题。方子奉上供大家分享:
首先停止IIS服务
iisreset /stop
然后删除 ASPNET 帐号
net user ASPNET /delete
重新注册 ASP.NET 和 ASPNET 帐号
aspnet_regiis -i
启动IIS
iisreset /start
相关文章
asp.net MVC 根据菜单树类别不同动态加载视图的实现步骤
这篇文章主要介绍了asp.net MVC 根据菜单树类别不同动态加载视图的实现步骤,本文给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧2024-08-08
ASP.NET中日历控件和JS版日历控件的使用方法(第5节)
这篇文章主要为大家详细介绍了ASP.NET中日历控件和JS版日历控件的使用方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2015-08-08


最新评论