我必须使用powershell将csv文件字段上传到Sharepoint 2010列表中。我在Windows XP机器上工作。
当我尝试添加-pssnapin时
Add-PSSnapin Microsoft.SharePoint.Powershell
它抛出异常
“Windows PowerShell管理单元'Microsoft.SharePoint.Powershell'是 没有安装在这台机器上。“
是否可以通过安装Pssnapin或将必要的dll放在某个位置并加载它来使用Sharepoint Powershell cmdlet?
答案 0 :(得分:6)
我认为唯一的方法是在Sharepoint服务器上Enable-PSRemoting
,然后从XP计算机:
Enter-PSSession -ComputerName sharepointservername
Add-PSSnapin Microsoft.SharePoint.PowerShell
通过这种方式,您可以远程管理您的sharepoint服务器
编辑: