通过 MSBuild 脚本在远程计算机上安装服务
我有一个创建服务的任务:
Target Name="InstallService" DependsOnTargets="CopyFiles"
Exec Command="sc \ \remotecomputer create "ServiceHost" binPath= "E:\ServiceHost.exe" DisplayName= "ServiceHost"" 工作目录=“c:\”ContinueOnError=“假” /Target
问题是当我运行这个脚本时它不知道\\远程计算机。
I have this task that creates a service:
Target Name="InstallService" DependsOnTargets="CopyFiles"
Exec Command="sc \ \remotecomputer create "ServiceHost" binPath= "E:\ServiceHost.exe" DisplayName= "ServiceHost""
WorkingDirectory="c:\" ContinueOnError="false"
/Target
The problem is that when I run this script it doesn't know the \ \remotecomputer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了:你必须像这样使用它:“”“\\remotecomputer”“”
I figured it out: you have to use it like this: """\ \remotecomputer"""