ASP.Net不執(zhí)行問題一解
更新時間:2008年02月25日 14:31:48 作者:
ASP.Net不執(zhí)行問題一解
最近IIS突然無法運行ASP.Net了.反復(fù)重裝也沒有用.檢查系統(tǒng)日志報告如下錯誤:
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服務(wù)
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服務(wù)
iisreset /stop
然后刪除 ASPNET 帳號
net user ASPNET /delete
重新注冊 ASP.NET 和 ASPNET 帳號
aspnet_regiis -i
啟動IIS
iisreset /start
相關(guān)文章
asp.net Datalist控件實現(xiàn)分頁功能
asp.net Datalist控件實現(xiàn)分頁功能代碼。大家可以參考下。2009-07-07
asp.net為網(wǎng)頁動態(tài)添加關(guān)鍵詞的方法
這篇文章主要介紹了asp.net為網(wǎng)頁動態(tài)添加關(guān)鍵詞的方法,可實現(xiàn)動態(tài)添加keyword meta的功能,非常具有實用價值,需要的朋友可以參考下2015-04-04
顯示非站點目錄及映射網(wǎng)絡(luò)磁盤路徑的圖片
本文就將教你怎樣顯示非站點目錄下的圖片,你可以顯示站點所在服務(wù)器所有驅(qū)動器目錄的圖片,以及映射網(wǎng)絡(luò)磁盤路徑的圖片,感興趣的朋友可以了解下就當鞏固知識了或許對你學(xué)習.net有所幫助2013-02-02
asp.net MVC 根據(jù)菜單樹類別不同動態(tài)加載視圖的實現(xiàn)步驟
這篇文章主要介紹了asp.net MVC 根據(jù)菜單樹類別不同動態(tài)加載視圖的實現(xiàn)步驟,本文給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧2024-08-08
Web API身份認證解決方案之Basic基礎(chǔ)認證
本文詳細講解了Web API身份認證解決方案之Basic基礎(chǔ)認證,文中通過示例代碼介紹的非常詳細。對大家的學(xué)習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2022-03-03
ASP.NET中日歷控件和JS版日歷控件的使用方法(第5節(jié))
這篇文章主要為大家詳細介紹了ASP.NET中日歷控件和JS版日歷控件的使用方法,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2015-08-08

