forked from directorcia/Office365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
o365-spo-admins.ps1
42 lines (30 loc) · 1.59 KB
/
o365-spo-admins.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<# CIAOPS
Script provided as is. Use at own risk. No guarantees or warranty provided.
Source - https://github.com/directorcia/Office365/blob/master/o365-spo-admins.ps1
Description - Log into the show the all the SharePoint Online Site Collection Administrators across all site collections
Prerequisites = 1
1. Ensure SharePoint online PowerShell module installed or updated
More scripts available by joining http://www.ciaopspatron.com
#>
## Variables
$systemmessagecolor = "cyan"
$processmessagecolor = "green"
## If you have running scripts that don't have a certificate, run this command once to disable that level of security
## set-executionpolicy -executionpolicy bypass -scope currentuser -force
Clear-Host
write-host -foregroundcolor $systemmessagecolor "Script started`n"
## Ensure that SharePoint Online modeule has been installed and loaded
Write-host -ForegroundColor $processmessagecolor "Getting all Sharepoint sites in tenant"
$SiteCollections = Get-SPOSite -Limit All
foreach ($site in $SiteCollections) ## Loop through all Site Collections in tenant
{
Write-host -ForegroundColor $processmessagecolor "Checking site:",$site.url
$siteusers = get-spouser -site $site.Url ## get all users for that SharePoint site
foreach ($siteuser in $siteusers){ ## loop through all the users in the site
If ($siteuser.issiteadmin -eq $true) { ## if a users is a Site Collection administrator
Write-host "Site Admin =", $siteuser.displayname,"["$siteuser.loginname"]"
}
}
write-host
}
write-host -foregroundcolor $systemmessagecolor "Script completed`n"