欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

ASP.Net不执行问题一解

程序员文章站 2023-03-13 16:59:55
最近iis突然无法运行asp.net了.反复重装也没有用.检查系统日志报告如下错误: aspnet_wp.exe could not be&n...
最近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