0

MsDeploy を使用して、フォルダーから Web サーバーにサイトを展開しようとしています。Web サーバーには MsDeployAgentService がインストールされています。次のコマンドを使用して msdeploy にサイトをデプロイできました。

msdeploy -verb:sync -source:dirPath=C:\src\website -dest:auto,computerName='http://192.168.0.2/MsDeployAgentService',userName=Administrator,password=xxxxxx 

ただし、ファイルがサーバーにデプロイされたかどうかはわかりません。「既定の Web サイト」ではなく、Web サーバー上の特定のサイトにファイルを展開したい

Web サーバーで宛先サイトを指定するための msdeploy スイッチまたはオプションは何ですか?

4

1 に答える 1

1

-source と -dest の両方にWeb Deploy ' contentPath ' プロバイダーを使用して動作するようにしました。作業コマンドは次のようになります。

msdeploy -verb:sync -source:contentPath=C:\src\website -dest:contentPath="d:\sites\mywebsite",computerName='http://192.168.0.2/MsDeployAgentService',userName=Administrator,password=xxxxxx
于 2012-07-19T13:52:06.893 に答える