Comment on page
Clear-RunHistory
Clears the run history from the synchronization service
Clear-RunHistory [[-BeforeDate] <Nullable`1[DateTime]>] [<CommonParameters>]
Clear-RunHistory [[-DaysToKeep] <Nullable`1[Int32]>] [<CommonParameters>]
The Clear-RunHistory cmdlet allows you to clear the Synchronization Service's run history. You can clear all runs, all runs older than a specified date, or all runs older than a specified number of days
Specifies the number of days of run history to keep
Required? | false |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
Specifies the date of the latest run that will be deleted from the server. Runs after this specified date and time are preserved
Required? | false |
Position? | 1 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | false |
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters.
PS C:\> Clear-RunHistory
Using the Clear-RunHistory cmdlet with no parameters will clear the entire run history from the server
PS C:\> Clear-RunHistory -DaysToKeep 2
Clears all items in the run history older than 2 days
PS C:\> Clear-RunHistory "2016-01-01"
Clears all runs older than January 1, 2016
Last modified 1yr ago