使用Powershell CSOM(Client Side Object Model)将用户添加到SharePoint Online站点的步骤如下:
Import-Module Microsoft.Online.SharePoint.PowerShell
Connect-SPOService -Url https://yourdomain-admin.sharepoint.com
其中,"yourdomain"是你的SharePoint Online域名。
$User = New-Object Microsoft.SharePoint.Client.UserCreationInformation
$User.LoginName = "user@yourdomain.onmicrosoft.com"
$User.Email = "user@yourdomain.com"
$User.Title = "User Name"
其中,"user@yourdomain.onmicrosoft.com"是用户的登录名,"user@yourdomain.com"是用户的电子邮件地址,"User Name"是用户的显示名称。
$Context = Get-SPOContext
$Web = $Context.Web
$User = $Web.SiteUsers.Add($User)
$Context.Load($User)
$Context.ExecuteQuery()
$User
以上是使用Powershell CSOM将用户添加到SharePoint Online站点的步骤。这种方法适用于批量添加用户或自动化脚本操作。如果需要更多关于Powershell CSOM的信息,可以参考腾讯云的相关产品和文档:
领取专属 10元无门槛券
手把手带您无忧上云