当然,在使用GUI时,您可以通过控制面板使用“Windows功能”对话框:
要在PowerShell中执行相同的操作,可以使用Enable-WindowsOptionalFeature cmdlet.
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 ...