当我尝试在SharePoint Online命令行管理程序中运行命令Add-PSSnapin Microsoft.SharePoint.Powershell
时
我收到以下错误:
Add-PSSnapin : The Windows PowerShell snap-in 'Microsoft.SharePoint.Powershell` is not installed on this computer
+ CategoryInfo: InvalidArgument: (Microsoft.SharePoint.Powershell:string) [Add-PSSnapin], PSArgumentException
据我了解,无论如何这应该随SharePoint Online命令行管理程序一起安装(这是全新下载),所以为什么不让我安装它
我可以使用$ AdminURL,$ AdminName和$ Password登录到Sharepoint,所以这不是世界末日(并证明这应该可行),但是显然,使脚本在网站上运行变得不那么容易每次修改以更改url和adminname
编辑:我在另一篇文章中读到,添加此模块(而非管理单元)可以解决我的错误Get-SPSite is not recognized as the name of a cmdlet, function, script file, or operable program
和Get-SPWebApplication is not recognized as the name of a cmdlet, function, script file, or operable program
的问题,但是,这并不能解决我的问题...
答案 0 :(得分:0)
如用户@kuzimoto所述,我使用的命令与SharePoint Online不兼容,并且被设计为与SharePoint Server结合使用。
正确的连接方式是使用命令Connect-SPOService
并通过那里传递凭据,或者只是将它们硬编码到脚本中。