ユーザーが IIS を使用して展開パッケージをインポートし、インストールを完了した後に、カスタム スクリプトをトリガーする (または Windows アプリを開く) 方法はありますか?
何か助けはありますか?
ユーザーが IIS を使用して展開パッケージをインポートし、インストールを完了した後に、カスタム スクリプトをトリガーする (または Windows アプリを開く) 方法はありますか?
何か助けはありますか?
msdeploy.exe のヘルプを試してください。
msdeploy.exe -help -postSync
または http://technet.microsoft.com/en-us/library/ee619740(WS.10).aspx
msdeploy -verb:sync -source:contentPath="C:\Test1" -dest:contentPath="C:\Test2" -preSync:runcommand="Appcmd stop sites MyWebSite" -postSync:runcommand="Appcmd start sites MyWebSite" msdeploy -verb:sync -source:contentPath="C:\Test1" -dest:contentPath="C:\Test2" -preSync:runcommand="c:\MyBatchFile.bat" msdeploy -verb:sync -source:contentPath="C:\Test1" -dest:contentPath="C:\Test2" -postSync:runcommand="c:\MyBatchFile.bat"