SharePoint Online List - How to get basic properties uisng Powershell

 

  1. function RetrieveList(){  
  2.     $list = Get-SPOList "PnPList"  
  3.     Write-Host "Title : " $list.Title  
  4.     Write-Host "Description : " $list.Description  
  5.     Write-Host "BaseTemplate ID : " $list.BaseTemplate  
  6.     Write-Host "Created Date : " $list.Created  
  7.     Write-Host "List ID : " $list.Id  
  8.     Write-Host "ImageUrl : " $list.ImageUrl  
  9.     Write-Host "ItemCount : " $list.ItemCount  
  10.     Write-Host "OnQuickLaunch : " $list.OnQuickLaunch  
  11.       
  12. }  
  13. RetrieveList #Retrieves list using list name 

No comments:

Post a Comment

SPFX - HTTPClient - Curd Operations - SharePoint list.

  Create solution in the name of SpfxCrud. ISpfxCrudProps.ts export interface ISpfxCrudProps {   description : string ;     context : an...