在Windows2016上安装SharePoint2016 PrerequisiteInstaller组件失败的解决方案
最近公司安排要在Windows2016上安装一个新的SharePoint2016 farm,在安装必要组件执行Powershell时遇到下面安装WindowsFeature的错误:
ArgumentNotValid: The role, role sservice, or feature name is not valid: 'Application-Server…'
经过排查主要是因为新的Widnows2016系统在Windows Feature上与其他系统不同导致安装出错。可以通过执行下面命令解决。
Import-Module ServerManager
Add-WindowsFeature NET-WCF-HTTP-Activation45,NET-WCF-TCP-Activation45,NET-WCF-Pipe-Activation45
安装成功,感谢阅读。