如何添加“名称” “安装 MSI”参数Azure DevOps 中的任务?
我正在使用“安装 MSI”任务来安装 msi 文件作为部署的一部分。任务抛出错误:
2022-02-22T06:42:35.0716371Z ActionData:更新组件注册
2022-02-22T06:42:35.0839323Z ##[错误]无法处理命令 '##vso[task.logdetail id=5c578bc6-8e75-4147-992e-fe8cd643eaa2;parentid=00000000-0000-0000-0000-000000000000;name=;type=release;order=1]成功更新组件注册。请参考文档 (http://go.microsoft.com/fwlink/?LinkId=817296< /a>)
2022-02-22T06:42:35.0888633Z ##[错误]此新时间线记录需要名称。
我在本地 Team Foundation Server 上使用 Azure DevOps 来进行构建和部署过程。从错误消息中我可以看到缺少“Name”参数。当我安装到物理机时,部署工作正常,但当我安装到虚拟机时,出现上述错误。
早在 2016 年,显然就有很多人遇到过此问题的变体,例如 social.msdn 上的这个人 或 github 上的这个人 或 这个人就这样。显然,在 2016 年,可以关闭“记录项目详细信息”,但此选项在较新版本的 Azure Devops 中不可用。
有谁知道如何在较新版本的 Azure DevOps 中解决此问题?
版本:Azure DevOps Server 2020 Update 1.1、代理 2.153.1、安装 MSI 0.1.20。
I'm using an 'Install MSI' task to install an msi file as part of a deployment. The task is throwing the error:
2022-02-22T06:42:35.0716371Z ActionData: Updating component registration
2022-02-22T06:42:35.0839323Z ##[error]Unable to process command '##vso[task.logdetail id=5c578bc6-8e75-4147-992e-fe8cd643eaa2;parentid=00000000-0000-0000-0000-000000000000;name=;type=release;order=1]Updating component registration' successfully. Please reference documentation (http://go.microsoft.com/fwlink/?LinkId=817296)
2022-02-22T06:42:35.0888633Z ##[error]Name is required for this new timeline record.
I'm using Azure DevOps on a local Team Foundation Server for the build and deploy process. From the error message I can see that the 'Name' parameter is missing. The deployment works fine when I'm installing to physical machines, but gives the above error when I'm installing to virtual machines.
There were apparently lots of people who had variants of this issue back in 2016, like this guy on social.msdn or this guy on github or this guy on SO. Apparently in 2016 it was possible to turn off "Record project details", however this option is not available in newer versions of Azure Devops.
Does anyone know how to fix this issue in newer versions of Azure DevOps?
Versions: Azure DevOps Server 2020 Update 1.1, Agent 2.153.1, Install MSI 0.1.20.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更多的是一种解决方法而不是答案,但我最终将“安装 MSI”任务切换为常规“命令行”任务。
通过使用命令行和“msiexec”命令,您可以像使用“安装 MSI”任务一样轻松地安装 msi 文件。
More a workaround than an answer, but I ended up switching the 'Install MSI' task to a regular 'Command line ' task.
Using the command line with the 'msiexec' command lets you install msi files just as easily as using the 'Install MSI' task.