Latest Posts

Remove-PnPListItem: Delete ListItem 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 Item using CAML Query
  • # -PageSize = 1, This is item limit. This will ensure that only 1 row is returned.
  • $ListItem = Get-PnPListItem -List "New list" -Query "New Title" -PageSize 1
  •  
  • # If parameter "-Force" is applied then on the execution of command, it will not ask for confirmation
  • Remove-PnPListItem -List "New list" -Identity $ListItem -Force
  •  
  • Disconnect-PnPOnline

We value your Feedback:

Page URL:

Name:

Email:


Suggestion:

© 2025 Code SharePoint