Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 721 Bytes

RemoveSPOListItem.md

File metadata and controls

22 lines (19 loc) · 721 Bytes

#Remove-SPOListItem Deletes an item from a list ##Syntax

Remove-SPOListItem -Identity <ListItemPipeBind> [-Force [<SwitchParameter>]] [-Web <WebPipeBind>] -List <ListPipeBind>

##Parameters

Parameter Type Required Description
Force SwitchParameter False
Identity ListItemPipeBind True The ID of the listitem, or actual ListItem object
List ListPipeBind True The ID, Title or Url of the list.
Web WebPipeBind False The web to apply the command to. Omit this parameter to use the current web.
##Examples

###Example 1

PS:> Remove-SPOListItem -List "Demo List" -Identity "1" -Force

Removes the listitem with id "1" from the "Demo List" list.