为Microsoft SharePoint添加powerShell管理单元时出错

时间:2016-11-30 12:50:08

标签: powershell sharepoint powershell-v5.0

我需要在PowerShell v5.0上本地运行的SharePoint PowerShell脚本

我试图执行Add-PSSnapin "Microsoft.SharePoint.PowerShell",但它会抛出错误:

  

此计算机上未安装Windows PowerShell管理单元“Microsoft.SharePoint.PowerShell”。

如何下​​载这些dll并安装管理单元?

2 个答案:

答案 0 :(得分:0)

您必须RDP到SharePoint Server本身,或者使用PSSession通过PowerShell连接到服务器,如下所示:

New-PSSession -ComputerName SP2013Server
Add-PSSnapin Microsoft.SharePoint.Powershell

要执行此操作,需要在服务器上启用PSRemoting

答案 1 :(得分:0)

我不知道是不是这种情况,但是当我错误地在Powershell ISE(x86)而不是64位版本上运行脚本时,却收到了此错误消息。