Created
May 30, 2013 18:54
-
-
Save nlarkin/5680198 to your computer and use it in GitHub Desktop.
Delete All List Items in a sharepoint list.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $w = Get-SPWeb http://spweburlhere | |
| $l = $w.Lists["List Name Here"] | |
| $c = $l.Items | |
| $c | % {$l.GetItemById($_.ID).Delete()} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment