Skip to content

Instantly share code, notes, and snippets.

@garrytrinder
Created December 15, 2018 17:45
Show Gist options
  • Save garrytrinder/358b8cb06e2b41c980a4d48abce52390 to your computer and use it in GitHub Desktop.
Save garrytrinder/358b8cb06e2b41c980a4d48abce52390 to your computer and use it in GitHub Desktop.
Identify if SPO Sites are Modern or Classic
Get-SPOSite | Select-Object Url,Title,Template, @{Expression={($_.Template -like "STS#3") -or ($_.Tem
plate -like "GROUP#0") -or ($_.Template -like "SITEPAGEPUBLISHING#0")};label="Modern"} | Sort-Object @{Expression={$_.Mo
dern};Descending=$True}, @{Expression={$_.Url};Descending=$False}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment