Skip to content

Instantly share code, notes, and snippets.

@buettiB
Created May 12, 2017 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buettiB/a5ef7aeb1830b17e7ecd89bda64c5a06 to your computer and use it in GitHub Desktop.
Save buettiB/a5ef7aeb1830b17e7ecd89bda64c5a06 to your computer and use it in GitHub Desktop.
Löscht alle Elemente aus einer SharePoint Liste
Add-PSSnapin Microsoft.SharePoint.PowerShell
cls
(get-spweb http://hamburg/).Lists["Meine Liste"].Items | %{$_.ParentList.GetItemById($_.Id).Delete()}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment