Forum Discussion
Dean_Gross
Oct 07, 2016Silver Contributor
PowerShell examples - Get-SPOList and Get-SPOListItems
Does anyone have any suggestions about where i can find some good examples using the pnp Get-SPOList and Get-SPOListItems cmdlets? The examples in github are very basic and I'm struggling with the b...
Oct 07, 2016
Hi Dean_Gross
Have a look at this:
What are you trying to do?
the basic examples are:
$web = Get-SPOWeb
$lists = Get-SPOList -web $web
$list = $lists['ListName']
$listitems = Get-SPOListItem -web $web -list $list