部署后执行脚本 - MSDeploy

时间:2010-10-19 14:15:23

标签: .net deployment tfs tfs2010 msdeploy

在用户使用IIS导入部署包并完成安装后,是否有办法触发自定义脚本(或打开Windows应用程序)?

任何帮助?

1 个答案:

答案 0 :(得分:11)

尝试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"