Latest Posts

Set List Property Bag Value in SharePoint using PowerShell

  • # Provide credentials over here
  • $creds = (New-Object System.Management.Automation.PSCredential "<>",(ConvertTo-SecureString "<>" -AsPlainText -Force))
  •  
  • # Provide URL of the Site over here
  • # If you do not wish to pass credentials hard coded then you can use: -Credentials (Get-Credential). This will prompt to enter credentials
  • Connect-PnPOnline -Url http://MyServer/sites/MySiteCollection -Credentials $creds
  •  
  • # Get Context
  • $clientContext = Get-PnPContext
  •  
  • $targetWeb = Get-PnPWeb
  •  
  • # Get the list object
  • $targetList = $targetWeb.Lists.GetByTitle("List Name")
  •  
  • $clientContext.Load($targetList)
  •  
  • $clientContext.ExecuteQuery()
  •  
  • # This works as Key-value pair
  • $targetList.RootFolder.Properties["New Property"] = "New Property Value"
  •  
  • $targetList.RootFolder.Update()
  •  
  • $clientContext.ExecuteQuery()
  •  
  • Disconnect-PnPOnline

We value your Feedback:

Page URL:

Name:

Email:


Suggestion:

© 2025 Code SharePoint