使用 MSDeploy 从包安装 Windows 服务
我读过可以利用 MSDeploy 在远程计算机上安装 Windows 服务甚至性能计数器的地方。我了解如何使用 MSDeploy 从源目录“同步”到目标目录来完成此操作。有没有某种方法可以让源实际上是 .zip 文件本身包含的二进制文件,以便可以将 .zip 复制到远程计算机上,然后执行 msdeploy?如果是这样,如何从manifest.xml 中引用源目录?除了传统的网站和数据库部署之外,似乎没有大量关于 MSDeploy 的文档。任何有用的链接将不胜感激。
I've read where it's possible to utilize MSDeploy to install windows services or even performance counters on a remote machine. I see how this can be accomplished using the MSDeploy "sync" from a source directory to a destination directory. Is there some way of actually having the source be the binaries contained within the .zip file itself so the .zip can be copied onto the remote machine and then execute msdeploy? If so, how is the source directory referenced from within the manifest.xml? There doesn't seem to be a large amount of documentation on MSDeploy aside from traditional web site and database deployment. Any helpful links would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
MSDeploy
调用installutil
来安装服务,如此处。You can use
MSDeploy
to callinstallutil
in order to install the service, as discussed here.