Skip to content

Commit b3ac437

Browse files
committed
Initial commit
1 parent d7a914c commit b3ac437

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

Get-SitePolicy.ps1

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<#
2+
.SYNOPSIS
3+
Get site policies in SharePoint Online.
4+
.DESCRIPTION
5+
Get all the site policies for each site collections in SharePoint Online.
6+
.EXAMPLE
7+
PS C:\> .\Get-SitePolicy.ps1
8+
This command will retrieve all the site policies for each site collections on the tenant (access to the site collection required)
9+
.INPUTS
10+
Inputs (if any)
11+
.OUTPUTS
12+
Output (if any)
13+
.NOTES
14+
More detail on my blog post: https://veronicageek.com/sharepoint/sharepoint-2013/retrieve-site-policies-in-sharepoint-online-using-powershell-pnp/2018/08/
15+
#>
16+
#Connect to SPO (creds in the Credential Manager)
17+
Connect-PnPOnline -Url "https://<TENANT-NAME>-admin.sharepoint.com"
18+
19+
#Get all the site policies
20+
$Results = @()
21+
$AllSC = Get-PnPTenantSite
22+
23+
foreach ($sc in $AllSC) {
24+
Write-Host "Connecting to" $sc.Url -ForegroundColor Green
25+
Try {
26+
Connect-PnPOnline -Url ($sc).Url -Credentials $creds -ErrorAction Stop
27+
$Policy = Get-PnPSitePolicy
28+
$SCProps = @{
29+
Url = $sc.Url
30+
Name = $Policy.Name
31+
Description = $Policy.Description
32+
}
33+
$Results += New-Object PSObject -Property $SCProps
34+
}
35+
catch {
36+
Write-Host "You don't have access to this Site Collection" -ForegroundColor Red
37+
}
38+
39+
} #end foreach
40+
$Results | Select-Object Url, Name, Description

0 commit comments

Comments
 (0)