2016-03-05 172 views
0

我想使用Visual Studio部署Azure Web應用程序,但收到以下錯誤。我已經部署了這個應用程序和其他很多沒有問題的人。無法從Visual Studio部署Web應用程序

Web deployment task failed. ((5/3/2016 9:40:16 PM) An error occurred when the request was processed on the remote computer.) 

(5/3/2016 9:40:16 PM) An error occurred when the request was processed on the remote computer. 
An error was encountered when processing operation 'Create File' on 'D:\home\site\wwwroot\ApplicationInsights.config'. 
The error code was 0x80070013. 
The media is write protected. 

    at Microsoft.Web.Deployment.NativeMethods.RaiseIOExceptionFromErrorCode(Win32ErrorCode errorCode, String maybeFullPath) 
    at Microsoft.Web.Deployment.FileStreamEx.CreateInstance(String path, FileMode fileMode, FileAccess fileAccess, FileShare fileShare, Nullable`1 fileLength) 
    at Microsoft.Web.Deployment.FilePathProviderBase.Add(DeploymentObject source, Boolean whatIf) 

我在我的所有網絡應用程序上都收到錯誤,可能是錯誤的?

+0

您正在使用哪個版本的Visual Studio? – juvchan

回答

0

我已經很頻繁地向Azure部署不同類型的Web應用程序(沒有任何問題),所以也許我可以建議一些步驟來排查您的情況。

  1. 首先,確保您的Visual Studio版本具有最新更新。如果你還沒有VS2015,可以免費試用VS2015社區版。

  2. 嘗試在單擊「文件」|「文件」後立即部署一個全新的項目。新增|項目。

  3. 嘗試使用多種方法進行部署:發佈菜單,FTP,通過源代碼控制進行持續部署。

  4. 嘗試在不同的定價層和/或不同地區創建新的Web應用程序。

希望您可以通過嘗試一個或多個上述建議來實現它,然後在此處報告有關哪些工作以及哪些工作沒有成功。隨時詢問任何後續問題,您可能需要幫助的任何特定步驟。

祝你好運!

0

如果通過Visual Studio發佈更新Web應用程序,有時會添加到@Shahed,如果正在運行的進程正在使用某個文件,它可能會失敗。我發現,如果我重新啓動門戶網站上的Web應用程序,VS Publish的工作就像一個魅力。

相關問題