This time, I’m going to share you on the script to remove Site Collection Administrator of ALL site collections at one go.
[Cmdletbinding()]
param (
[string]$UserName = "",
[string]$Tenant = "",
[Parameter(Mandatory=$true)]
[string]$AccountToRemove = "",
[string]$RelativeSiteUrl = ""
)
Connect-SPOService -Url "https://$($Tenant)-admin.sharepoint.com" -Credential $UserName
if ($RelativeSiteUrl)
{
$siteUrl = "https://$($Tenant).sharepoint.com$($RelativeSiteUrl)"
Write-Host "Removing $AccountToRemove from $siteUrl..." -Fore Yellow -NoNewline
Set-SPOUser -Site $site.Url -LoginName $AccountToRemove -IsSiteCollectionAdmin $false
Write-Host "REMOVED" -Fore Green
}
else
{
$SiteColl = Get-SPOSite
Write-Host "Removing $AccountToRemove from:" -Fore Green
foreach ($site in $SiteColl)
{
Write-Host "`t$($site.Url)..." -Fore Yellow -NoNewline
Set-SPOUser -Site $site.Url -LoginName $AccountToRemove -IsSiteCollectionAdmin $false
Write-Host "REMOVED" -Fore Green
}
}
Disconnect-SPOService
Enjoy!
Tidak ada komentar:
Posting Komentar
[give me your ideas, hopes, comments and compliments below...]
[aaand...... +1 if you need to....]