程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> ASP.Net不執行問題一解

ASP.Net不執行問題一解

編輯: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
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved