Skip to content

Latest commit

 

History

History
124 lines (92 loc) · 2.4 KB

Get-KshComment.md

File metadata and controls

124 lines (92 loc) · 2.4 KB
external help file Module Name online version schema
SPClientCore.dll-Help.xml
SPClientCore
2.0.0

Get-KshComment

SYNOPSIS

Retrieves one or more comments.

SYNTAX

ParamSet1

Get-KshComment [-Identity] <Comment> [<CommonParameters>]

ParamSet2

Get-KshComment [-ListItem] <ListItem> [-CommentId] <Int32> [<CommonParameters>]

ParamSet3

Get-KshComment [-ListItem] <ListItem> [-NoEnumerate] [<CommonParameters>]

DESCRIPTION

The Get-KshComment cmdlet retrieves comments of the specified list item.

EXAMPLES

Example 1

PS C:\> Get-KshComment -ListItem (Get-KshListItem -List (Get-KshList -ListTitle 'Site Pages') -ItemId 1) -CommentId 1

Retrieves a comment by comment ID.

Example 2

PS C:\> Get-KshComment -ListItem (Get-KshListItem -List (Get-KshList -ListTitle 'Site Pages') -ItemId 1)

Retrieves all comments.

PARAMETERS

-CommentId

Specifies the comment ID.

Type: Int32
Parameter Sets: ParamSet2
Aliases:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Identity

Specifies the comment.

Type: Comment
Parameter Sets: ParamSet1
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False

-ListItem

Specifies the list item.

Type: ListItem
Parameter Sets: ParamSet2, ParamSet3
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-NoEnumerate

If specified, suppresses to enumerate objects.

Type: SwitchParameter
Parameter Sets: ParamSet3
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Karamem0.SharePoint.PowerShell.Models.V1.Comment

OUTPUTS

Karamem0.SharePoint.PowerShell.Models.V1.Comment

NOTES

RELATED LINKS