是否可以在Windows 8上的PowerShell中启用MSMQ?


Answers:


21

当然,使用GUI时,您可以通过控制面板使用“ Windows功能”对话框:

在此处输入图片说明

若要在PowerShell中执行相同的操作,可以使用Enable-WindowsOptionalFeaturecmdlet。

您需要知道内部功能部件名称,然后运行:

Get-WindowsOptionalFeature Online  | ? FeatureName -match "msmq" | select FeatureName

你得到这样的东西:

FeatureName
-----------
MSMQ-Container
MSMQ-Server
MSMQ-Triggers
MSMQ-ADIntegration
MSMQ-HTTP
MSMQ-Multicast
MSMQ-DCOMProxy
WCF-MSMQ-Activation45

现在,您可以安装所需的功能:

Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-HTTP
Enable-WindowsOptionalFeature -Online -FeatureName MSMQ-Server
...

有些功能依赖于其他功能,要解决这些问题,请添加-All开关,该开关会自动安装所有依赖项。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.