Skip to content

Latest commit

 

History

History
29 lines (25 loc) · 962 Bytes

RemovePnPContentType.md

File metadata and controls

29 lines (25 loc) · 962 Bytes

#Remove-PnPContentType Removes a content type from a web ##Syntax

Remove-PnPContentType [-Force [<SwitchParameter>]]
                      [-Web <WebPipeBind>]
                      -Identity <ContentTypePipeBind>

##Parameters

Parameter Type Required Description
Force SwitchParameter False Specifying the Force parameter will skip the confirmation question.
Identity ContentTypePipeBind True The name or ID of the content type to remove
Web WebPipeBind False The web to apply the command to. Omit this parameter to use the current web.
##Examples

###Example 1

PS:> Remove-PnPContentType -Identity "Project Document"

This will remove a content type called "Project Document" from the current web

###Example 2

PS:> Remove-PnPContentType -Identity "Project Document" -Force

This will remove a content type called "Project Document" from the current web with force