PowerShell 技能连载 - 添加 SharePoint 的 PowerShell 命令

通过 PowerShell 库,可以轻松访问其他 PowerShell 命令。例如,您可以下载并安装 SharePoint 的命令扩展,并使用 PowerShell 来自动化 SharePoint 网站:

1
2
3
4
Install-Module -Name Microsoft.Online.SharePoint.PowerShell -Scope CurrentUser -Force

# listing all new SharePoint commands
Get-Command -Module Microsoft.Online.SharePoint.PowerShell

在 PowerShell 库中,还有许多用于处理 SharePoint 的 PowerShell 模块。Find-Module 可帮助您确定更多有用的资源:

1
Find-Module -Name *sharepoint*

知道您感兴趣的模块名称后,请使用 Install-Module 下载并安装它,或使用 Save-Module 将其下载到您选择的隔离文件夹中。这样,您可以调查源代码并确定是否信任该代码。

要了解有关 SharePoint 的 PowerShell 命令的更多信息,请访问官方帮助页面:

1
Start-Process -FilePath https://docs.microsoft.com/en-us/powershell/sharepoint/sharepoint-online/connect-sharepoint-online?view=sharepoint-ps

PowerShell 技能连载 - 添加 SharePoint 的 PowerShell 命令

http://blog.vichamp.com/2020/07/31/adding-powershell-commands-for-sharepoint/

作者

吴波

发布于

2020-07-31

更新于

2022-07-06

许可协议

评论