【发布时间】:2018-10-31 02:38:28
【问题描述】:
我们有一个遗留的 windows 项目,我们想将其容器化。
这使用 MSMQ 多播(Telerik 过时的 ORM 的一部分)。
在我的 Windows 容器中,如果我尝试
Enable-WindowsOptionalFeature -Oneline -FeatureName MSMQ-Multicast -All
这失败了:
Enable-WindowsOptionalFeature : One or several parent features are disabled so current feature can not be enabled.
At line:1 char:1
+ Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-Multicast -Al ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Enable-WindowsOptionalFeature], COMException
+ FullyQualifiedErrorId : Microsoft.Dism.Commands.EnableWindowsOptionalFeatureCommand
还有:
PS C:\scripts> netcfg -c p -i ms_rmcast
Trying to install ms_rmcast ...
... failed. Error code: 0x800106d9.
容器通过“透明”网络类型连接,因此被桥接到本地网络。
是否有任何解决方案,或者这只是不(尚)支持? 版本 1809 可能有帮助吗? 还有其他聪明的想法吗?
【问题讨论】:
标签: msmq multicast docker-for-windows