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

有什么帮助吗?

最佳答案

尝试获取msdeploy.exe的帮助。

msdeploy.exe-帮助-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"

08-26 15:36
查看更多