Skip to content

Latest commit

 

History

History
229 lines (177 loc) · 4.82 KB

Get-KshChange.md

File metadata and controls

229 lines (177 loc) · 4.82 KB
external help file Module Name online version schema
SPClientCore.dll-Help.xml
SPClientCore
2.0.0

Get-KshChange

SYNOPSIS

Retrieves changes.

SYNTAX

ParamSet1

Get-KshChange [-SiteCollection] [-BeginToken <ChangeToken>] [-EndToken <ChangeToken>] [-FetchLimit <Int64>]
 [-Objects <ChangeObjects>] [-Operations <ChangeOperations>] [-RecursiveAll <Boolean>] [-NoEnumerate]
 [<CommonParameters>]

ParamSet2

Get-KshChange [-Site] [-BeginToken <ChangeToken>] [-EndToken <ChangeToken>] [-FetchLimit <Int64>]
 [-Objects <ChangeObjects>] [-Operations <ChangeOperations>] [-RecursiveAll <Boolean>] [-NoEnumerate]
 [<CommonParameters>]

ParamSet3

Get-KshChange [-List] <List> [-BeginToken <ChangeToken>] [-EndToken <ChangeToken>] [-FetchLimit <Int64>]
 [-Objects <ChangeObjects>] [-Operations <ChangeOperations>] [-RecursiveAll <Boolean>] [-NoEnumerate]
 [<CommonParameters>]

DESCRIPTION

The Get-KshChange cmdlet retrieves changes of the current site collection, the current site, or the specified list.

EXAMPLES

Example 1

PS C:\> Get-KshChange -SiteCollection -Objects All -Operations All

Retrieves all changes for the current site collection.

Example 2

PS C:\> Get-KshChange -Site -Objects All -Operations All

Retrieves all changes for the current site.

Example 3

PS C:\> Get-KshChange -List (Get-KshList -ListTitle 'Announcements') -Objects All -Operations All

Retrieves all changes for the specified list.

PARAMETERS

-BeginToken

Specifies the change token for the beginning.

Type: ChangeToken
Parameter Sets: (All)
Aliases:

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

-EndToken

Specifies the change token for the ending.

Type: ChangeToken
Parameter Sets: (All)
Aliases:

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

-FetchLimit

Specifies the number of items.

Type: Int64
Parameter Sets: (All)
Aliases:

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

-List

Specifies the list.

Type: List
Parameter Sets: 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: (All)
Aliases:

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

-Objects

Specifies objects to retrieve.

Type: ChangeObjects
Parameter Sets: (All)
Aliases:
Accepted values: None, Item, List, Site, SiteCollection, File, Folder, Alert, User, Group, ContentType, Column, SecurityPolicy, View, All

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

-Operations

Specifies operations to retrieve.

Type: ChangeOperations
Parameter Sets: (All)
Aliases:
Accepted values: None, Add, Update, DeleteObject, Rename, Move, Restore, RoleDefinitionAdd, RoleDefinitionDelete, RoleDefinitionUpdate, RoleAssignmentAdd, RoleAssignmentDelete, GroupMembershipAdd, GroupMembershipDelete, SystemUpdate, Navigation, All

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

-RecursiveAll

Specifies to retrieve recursively.

Type: Boolean
Parameter Sets: (All)
Aliases:

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

-Site

If specified, uses the current site.

Type: SwitchParameter
Parameter Sets: ParamSet2
Aliases:

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

-SiteCollection

If specified, uses the current site colletion.

Type: SwitchParameter
Parameter Sets: ParamSet1
Aliases:

Required: True
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

None

OUTPUTS

Karamem0.SharePoint.PowerShell.Models.V1.Change

NOTES

RELATED LINKS