Skip to content

Instantly share code, notes, and snippets.

@PrzemyslawKlys
Last active April 6, 2019 08:55
Show Gist options
  • Save PrzemyslawKlys/0278f9cad7d73f4df250689c04fe94cc to your computer and use it in GitHub Desktop.
Save PrzemyslawKlys/0278f9cad7d73f4df250689c04fe94cc to your computer and use it in GitHub Desktop.
Get-PnPList - Try
$lists = Get-PnPList -Includes RootFolder.ServerRelativeUrl, IsCatalog, IsSiteAssetsLibrary
$Rewritten = foreach ($list in $lists) {
[PSCustomObject] @{
Id = $List.Id
Title = $list.Title
Url = $list.RootFolder.ServerRelativeUrl
IsCatalog = $List.IsCatalog
IsSiteAssetsLibrary = $List.IsSiteAssetsLibrary
}
}
$Rewritten | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment