- Notifications
You must be signed in to change notification settings - Fork 187
/
Copy path6-Sites.ps1
20 lines (13 loc) · 510 Bytes
/
6-Sites.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Microsoft Graph Sites PowerShell Snippets
# Get root site
Get-MgSite-siteId root |Select-Object id, DisplayName
# Search for sites
Get-MgSite-search "marketing"|Select-Object DisplayName, Description, WebUrl
# Get Id for marketing site
$Sites=Get-MgSite-search "marketing"|Select-Object id
# Get Site Pages
Get-MgSitePage-SiteId $Sites[0].Id
# Get Site Lists
Get-MgSiteList-SiteId $Sites[0].Id |Select-Object id, DisplayName
# Get Document Libraries
Get-MgSiteDrive-SiteId $Sites[0].Id